/* ==========================================================================
   PRIVATE DIVING - UNIQUE OVERRIDES
   Shared styles are now in /assets/css/landing-common.css
   ========================================================================== */

/* Page-specific footer overrides */
.footer-funnel .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Custom styles for Hero Price Layout */
.hero-price-notes-col {
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 4px;
}
.hero-price-note-top {
    text-align: left;
    line-height: 1.2;
}
.hero-price-note-bottom {
    text-align: right;
    line-height: 1.2;
}

/* Dive Sites 2x2 Grid setup (overrides default 3-column layout) */
.dive-sites-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 769px) {
    .dive-sites-grid-2x2 > :nth-child(3):last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    /* Let the CSS query from landing-common.css take precedence by unsetting the 2x2 */
    .dive-sites-grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .hero-price-note-top,
    .hero-price-note-bottom {
        text-align: right;
    }
}

/* Included Section Background & Card Override */
.included-section {
    background: url('../assets/bg/bg-isla-mujeres-beach.webp') no-repeat center center;
    background-size: cover;
}

.included-section .included-card {
    background: rgba(10, 22, 40, 0.75); /* 75% solid, 25% transparent */
    backdrop-filter: blur(8px); /* Maintains premium glass effect */
    border-color: rgba(255, 255, 255, 0.15);
}

.included-section .included-card:hover {
    background: rgba(17, 34, 58, 0.8); /* Slightly less transparent on hover */
}

/* Why Dive Section Redesign Override */
.why-section .why-bg::after {
    display: none; /* Removed the dark overlay */
}

.why-section .why-inner {
    background: rgba(240, 247, 250, 0.75); /* 75% solid light background from Itinerary section */
    backdrop-filter: blur(14px); /* Premium glassmorphism blur */
    padding: 60px 40px;
    border-radius: 30px;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--ll-shadow-lg);
}

.why-section h2 {
    color: var(--ll-color-dark-bg) !important; /* Inverted to dark blue */
}

.why-section .why-body {
    color: rgba(10, 22, 40, 0.85) !important; /* Inverted to dark blue with slight opacity */
}

.why-section .why-pillars {
    border-top: 1px solid rgba(10, 22, 40, 0.1);
}

.why-section .why-pillar span {
    color: var(--ll-color-dark-bg) !important; /* Inverted to dark blue */
}

/* Experience Highlights Redesign Override */
.itinerary-combined-wrap {
    background: #def8f2 !important; /* Light Sea Green */
    color: var(--ll-color-dark-bg) !important; /* Inverted to dark blue */
    border: 1px solid rgba(0, 119, 182, 0.1);
}

.course-structure-title {
    color: var(--ll-color-dark-bg) !important; /* Inverted to dark blue */
    font-size: 2rem !important; /* Larger H2 size */
    text-transform: none !important; /* Removed uppercase for H2 style */
    letter-spacing: 0 !important;
    margin-bottom: 30px !important;
}

.step-label {
    color: var(--ll-color-dark-bg) !important; /* Inverted to dark blue */
}

.step-desc {
    color: rgba(10, 22, 40, 0.7) !important; /* Inverted to dark blue with slight opacity */
}

.polaroid-frame {
    border: 1px solid rgba(10, 22, 40, 0.15) !important; /* Thin dark border to stand out */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important; /* Lighter, refined shadow for light background */
}
