/* ==========================================================================
   DISCOVER 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 (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 */
}

/* ================================================================
   MOBILE FIXES
   ================================================================ */
@media (max-width: 992px) {
    .why-floating-container { 
        justify-content: center; /* Center on tablets */
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .why-section-floating { min-height: auto; padding: 60px 0; }
    .why-floating-card { 
        padding: 35px 24px; 
        margin: 0;
        max-width: 100%;
    }
    .why-floating-title { font-size: 1.6rem; }
    .why-pill-grid { justify-content: center; }
}

/* 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 */
}
