/* ── Boat Rental Page Styles ── */

/* Pricing section wrapper */
.tour-pricing-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tour-pricing-section h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* Pricing cards grid */
.boat-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
}

.boat-price-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
}

.boat-price-card:hover {
    transform: translateY(-4px);
}

.boat-price-card.featured {
    background: #eef4ff;
    border-color: #0d6efd;
}

.boat-price-duration {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
    color: #0d6efd;
}

.boat-price-hours {
    font-size: 1rem;
    color: #555;
}

.boat-price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.boat-price-note {
    font-size: 0.82rem;
    color: #888;
}

/* Fuel cost notice */
.fuel-note {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff8e1;
    border-left: 4px solid #f59e0b;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    max-width: 700px;
}

.fuel-note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Booking / WhatsApp note */
.booking-note {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #eef4ff;
    border-left: 4px solid #0d6efd;
    border-radius: 0 10px 10px 0;
    padding: 18px 24px;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    max-width: 500px;
}

.booking-note-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.booking-note a {
    color: #0d6efd;
    font-weight: 700;
    text-decoration: none;
}

.booking-note a:hover {
    text-decoration: underline;
}

/* Gallery strip */
.boat-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    height: 220px;
}

.boat-gallery-img {
    overflow: hidden;
    position: relative;
    border: none;
    padding: 0;
    background: none;
    cursor: zoom-in;
}

.boat-gallery-zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 20, 35, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}

.boat-gallery-img:hover .boat-gallery-zoom,
.boat-gallery-img:focus-visible .boat-gallery-zoom {
    opacity: 1;
}

.boat-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.boat-gallery-img:hover img {
    transform: scale(1.07);
}

/* Responsive */
@media (max-width: 767px) {
    .boat-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .boat-gallery {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .boat-gallery-img {
        aspect-ratio: 4 / 3;
    }
}
