/* --- WOLF SPIRIT BRANDING COLOR MATRIX --- */
:root {
    --lee-gold: #ff9e1b;          /* High-visibility sunset orange/gold accent */
    --lee-dark-matte: #111411;    /* Rich, premium dark charcoal backdrop */
    --lee-card-bg: #1a1e1a;       /* Lighter card tone for dimensional separation */
    --lee-pure-black: #090b09;    /* Deep shadow fields */
    --lee-white: #ffffff;
    --border-subtle: rgba(255, 255, 255, 0.05);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- MONTSERRAT FORCED TYPOGRAPHY ENVIRONMENT --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif !important; /* Uniform Montserrat application */
}

/* CRITICAL FIX: Prevent Montserrat from breaking FontAwesome icon graphics */
.fa, .fas, .fab, .far, .fa-solid, .fa-brands {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands' !important;
    font-weight: 900 !important;
}

html { scroll-behavior: smooth; }
body { 
    background-color: #d5cebc; /* Kept your exact background color */
    color: white;
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- SOLID NAV STYLING WITH DROP-DOWN CONFIGURATIONS --- */
.matte-nav {
    position: fixed; top: 20px; width: 90%; left: 50%; transform: translateX(-50%);
    background: #3a2313; /* Kept your exact nav color */
    border: 1px solid var(--border-subtle); border-radius: 14px;
    z-index: 2000; height: 80px; display: flex; align-items: center; transition: var(--transition);
}
.matte-nav.scrolled {
    top: 0; width: 100%; border-radius: 0; border-inline: none; border-top: none;
    background: #3a2313; box-shadow: 0 10px 40px rgba(0,0,0,0.7);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; }
.nav-side { display: flex; gap: 35px; flex: 1; align-items: center; }
.nav-side.right { justify-content: flex-end; }
.nav-side a { 
    text-decoration: none; color: white; font-size: 0.85rem; font-weight: 600; 
    text-transform: uppercase; letter-spacing: 2px; transition: 0.3s ease; opacity: 0.85;
    display: flex; align-items: center; gap: 6px;
}
.nav-side a:hover, .nav-side a.active { opacity: 1; color: var(--lee-gold); }

/* Centered Logo Frame */
./* --- BRAND CENTRAL LOGO FIX --- */
.brand-central {
    text-align: center;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Auto-scales along navigation bar axis */
}

.brand-central a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 100%;
}

/* Defensive scale limits to keep any logo proportion clean */
.nav-logo-img {
    max-height: 70px;       /* Keeps the logo height balanced inside the 80px nav bar */
    width: auto;            /* Maintains aspect ratio proportions automatically */
    object-fit: contain;    /* Prevents stretching or compression bugs */
    transition: transform 0.3s ease;
}

.brand-central a:hover .nav-logo-img {
    transform: scale(1.03); /* Subtle pop animation on hover */
}
/* ==========================================================================
   DESKTOP DROP-DOWN ENGINE
   ========================================================================== */
.nav-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.nav-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

/* Dropdown Container Element */
.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #3a2313; /* Kept matches navigation solid color profile */
    min-width: 320px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    padding: 15px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    z-index: 2500;
}

/* Divider Top Stripe Accent */
.dropdown-menu-list::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--lee-gold);
    border-radius: 12px 12px 0 0;
}

.dropdown-menu-list a {
    color: #ffffff !important;
    padding: 12px 25px;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    opacity: 0.8;
    transition: all 0.2s ease;
    justify-content: flex-start;
}

.dropdown-menu-list a:hover {
    background: rgba(255, 255, 255, 0.05);
    opacity: 1 !important;
    color: var(--lee-gold) !important;
    padding-left: 30px;
}

/* Desktop Hover Triggers */
.nav-dropdown-wrapper:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.nav-dropdown-wrapper:hover .nav-arrow {
    transform: rotate(180deg);
    color: var(--lee-gold);
}

/* --- ASYNCHRONOUS MOBILE CONTROLLER LAYOUTS --- */
.mobile-toggle { 
    display: none; 
    color: #3a2313;              
    background-color: whitesmoke; 
    font-size: 1.4rem; 
    cursor: pointer; 
    transition: var(--transition); 
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.mobile-toggle:hover { color: var(--lee-gold); background-color: #ffffff; }

.mobile-overlay {
    position: fixed; inset: 0; background: whitesmoke;       
    z-index: 3000; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 25px; transform: translateX(100%); transition: var(--transition);
    overflow-y: auto; padding: 60px 20px;
}
.mobile-overlay.active { transform: translateX(0); }
.mobile-close { position: absolute; top: 30px; right: 30px; font-size: 2.2rem; color: #3a2313; cursor: pointer; }

.mobile-overlay a { 
    color: #3a2313;               
    text-decoration: none; 
    font-size: 1.5rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    transition: color 0.3s ease;
}
.mobile-overlay a:hover { color: var(--lee-gold); }

/* ==========================================================================
   MOBILE ACCORDION ENGINE
   ========================================================================== */
.mobile-accordion-wrapper {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.mobile-accordion-header {
    color: #3a2313;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.mobile-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.mobile-accordion-header.active {
    color: var(--lee-gold);
}

.mobile-accordion-header.active .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(58, 35, 19, 0.05);
    border-radius: 10px;
    margin-top: 0;
}

.mobile-accordion-content.open {
    max-height: 500px; /* Secure height field to layout all listed links */
    margin-top: 15px;
    padding: 15px 10px;
    border: 1px solid rgba(58, 35, 19, 0.1);
}

.mobile-accordion-content a {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #3a2313 !important;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* --- CINEMATIC HERO ENGINE --- */
.hero {
    height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.15), var(--lee-dark-matte)); z-index: -2; }

.hero-content { position: relative; z-index: 10; max-width: 950px; padding: 0 20px; margin-top: 50px; }
.reveal-tag { color: var(--lee-gold); letter-spacing: 6px; font-weight: 800; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 25px; display: block; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4.4rem); font-weight: 900; line-height: 1.15; margin-bottom: 25px; letter-spacing: -1px; text-shadow: 0 4px 25px rgba(0,0,0,0.7); }
.hero-sub { font-size: 1.25rem; opacity: 0.95; margin-bottom: 45px; font-weight: 500; line-height: 1.8; max-width: 850px; margin-inline: auto; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

/* BUTTON ARCHITECTURE */
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-primary { 
    padding: 16px 40px; background: var(--lee-gold); color: #000; text-decoration: none;
    font-weight: 800; border-radius: 50px; display: inline-block; transition: 0.3s ease; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; border: none; cursor: pointer;
}
.btn-secondary { 
    padding: 14px 38px; border: 2px solid #fff; color: #fff; text-decoration: none;
    font-weight: 800; border-radius: 50px; display: inline-block; transition: 0.3s ease; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; cursor: pointer;
}
.btn-primary:hover { background: var(--lee-white); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(255, 158, 27, 0.35); }
.btn-secondary:hover { border-color: var(--lee-gold); color: var(--lee-gold); background: rgba(255,255,255,0.03); }

/* --- ABOUT SECTION --- */
.about-summary { padding: 130px 0 90px; text-align: center; }
.section-tag { color: #012f35; font-weight: 800; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 20px; font-size: 0.9rem; }
.about-summary h2 { font-size: 2.8rem; font-weight: 900; color: #3a2313; margin-bottom: 35px; letter-spacing: -0.5px; line-height: 1.2; }
.about-p { max-width: 850px; color: #3a2313; margin: 0 auto 15px; line-height: 1.85; font-size: 1.1rem; font-weight: 600; }

/* --- LEGEND CHOOSE GRID ENGINE --- */
.legend-section { padding: 80px 0 130px; background-color: #d5cebc; }
.legend-title { text-align: center; font-size: 3rem; color: #3a2313; font-weight: 900; margin-bottom: 60px;  letter-spacing: -0.5px; }

.legend-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    align-items: stretch;
}

.legend-card {
    height: 560px; 
    border-radius: 24px; background-size: cover; background-position: center;
    position: relative; overflow: hidden; display: flex; align-items: flex-end;
    transition: var(--transition); border: 1px solid var(--border-subtle);
}

.card-matte-overlay {
    background: #3a2313; width: 100%;
    padding: 30px 24px; transition: 0.4s ease;
    text-align: center; display: flex; flex-direction: column;
    justify-content: space-between; gap: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.legend-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0px; color: whitesmoke; letter-spacing: 0.5px; }
.legend-card p { font-size: 0.95rem; opacity: 0.9; margin-bottom: 5px; line-height: 1.6; font-weight: 500; color: #f0edf5; }

.btn-card-gold {
    display: inline-block; text-decoration: none; color: #000; background: whitesmoke;
    padding: 10px 28px; border-radius: 50px; font-weight: 800; font-size: 0.8rem; text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); transition: 0.3s; margin: 0 auto; width: fit-content;
}
.btn-card-gold:hover { background: #fff; transform: scale(1.04); }
.legend-card:hover { transform: translateY(-8px); border-color: var(--lee-gold); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }

/* Cultural Strip Segment */
.cultural-strip {
    margin-top: 45px; background: var(--lee-card-bg); padding: 40px; border-radius: 20px;
    border: 1px solid var(--border-subtle); border-left: 5px solid var(--lee-gold);
}
.cultural-content h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; color: var(--lee-gold); }
.cultural-content p { opacity: 0.95; line-height: 1.7; font-weight: 500; }

/* --- DESTINATIONS LIST DISPLAY --- */
.destinations-section { padding: 110px 0; background: var(--lee-pure-black); }
.destinations-list { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
.dest-item { 
    padding: 22px 30px; background: var(--lee-card-bg); border-radius: 14px;
    border: 1px solid var(--border-subtle); font-size: 1.1rem; line-height: 1.6; font-weight: 400;
}
.dest-item strong { color: var(--lee-gold); font-weight: 700; letter-spacing: 0.5px; }

/* --- WHY CHOOSE US segment --- */
.why-section { padding: 130px 0; background: #fff; color: var(--lee-pure-black); border-radius: 40px 40px 0 0; }
.why-title { text-align: center; font-size: 2.6rem; font-weight: 900; margin-bottom: 65px; letter-spacing: -0.5px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-item i { font-size: 1.9rem; color: var(--lee-gold); margin-top: 2px; }
.why-item p { font-size: 1.1rem; line-height: 1.7; font-weight: 600; color: #1e221e; }

/* --- BOTTOM HIGH-END CALL TO ACTION --- */
.cta-section { 
    padding: 130px 0; text-align: center; 
    background: linear-gradient(rgba(9,11,9,0.85), rgba(9,11,9,0.85)), url('https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1600') center/cover fixed;
}
.cta-section h2 { font-size: 3.2rem; font-weight: 900; margin-bottom: 25px; letter-spacing: -0.5px; color: white; }
.cta-section p { font-size: 1.3rem; max-width: 750px; margin: 0 auto 45px; opacity: 0.9; line-height: 1.8; font-weight: 400; }
.cta-section-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* --- WHATSAPP COMMUNICATION COMPONENT --- */
.wa-float { position: fixed; bottom: 30px; left: 30px; z-index: 2500; }
.wa-btn { width: 60px; height: 60px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; text-decoration: none; box-shadow: 0 10px 25px rgba(0,0,0,0.5); transition: transform 0.3s ease; }
.wa-btn:hover { transform: scale(1.1); }

/* --- FULL RESPONSIVE SCALING ALGORITHMS --- */
@media (max-width: 1024px) {
    .nav-side { display: none; }
    .mobile-toggle { display: inline-block; } 
    .matte-nav { height: 75px; width: 92%; }
    .brand-central { margin: 0; padding: 10px 20px; }
    
    .legend-grid { grid-template-columns: 1fr; gap: 35px; }
    .legend-card { height: auto; min-height: 500px; }
    .card-matte-overlay { padding: 30px 20px; }
    
    .hero { 
        height: auto; min-height: 100vh; padding: 120px 0 60px 0; 
        display: flex; align-items: center;
    }
    .hero-content { margin-top: 0; padding: 0 24px; width: 100%; }
    .hero h1 { font-size: 2.3rem; line-height: 1.2; margin-bottom: 20px; }
    .hero-sub { font-size: 1.05rem; line-height: 1.6; margin-bottom: 35px; }
    .hero-btns { flex-direction: column; align-items: stretch; max-width: 300px; margin: 0 auto; gap: 12px; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 14px 20px; }
    .btn-secondary { margin-left: 0; }
}


/* --- UPDATED DESTINATIONS INTERACTIVE ENGINE --- */
.destinations-list a.dest-item {
    text-decoration: none;
    color: #f0edf5; /* Clear text visibility layout */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

/* Subtle, polished background activation on link hover */
.destinations-list a.dest-item:hover {
    transform: translateX(8px);
    border-color: var(--lee-gold);
    background-color: #1f241f; /* Adjusted to blend cleanly with your dark deck tone */
}

.dest-arrow {
    color: var(--lee-gold);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.destinations-list a.dest-item:hover .dest-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* More Destinations Button Container */
.destinations-action-container {
    margin-top: 45px;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.destinations-action-container .btn-primary {
    display: inline-block;
    width: auto;
}

@media (max-width: 1024px) {
    .destinations-list a.dest-item:hover {
        transform: none; /* Disables side transformation slide mechanics on touchscreen viewports */
    }
    .dest-arrow {
        opacity: 0.7;
        transform: none;
    }
}


/* ==========================================================================
   5b. TRUSTED SOCIAL PROOF PLATFORM STYLES
   ========================================================================== */
.reviews-badge-section {
    padding: 100px 0;
    background-color: #d5cebc; /* Smooth continuation of your light safari backdrop */
    text-align: center;
}

.reviews-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #3a2313; /* Branded timber brown color parameter */
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Review Badge Cards styled to match your luxury aesthetic */
.review-badge-card {
    background: #3a2313; /* Solid brand brown background container */
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-badge-card:hover {
    transform: translateY(-5px);
    border-color: var(--lee-gold);
    box-shadow: 0 15px 40px rgba(58, 35, 19, 0.3);
}

/* Branded Image Logo Wrapper Engine */
.badge-platform-icon {
    height: 55px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.review-icon-img {
    max-height: 100%;
    max-width: 150px;       /* Keeps corporate logos uniformly sized and balanced */
    object-fit: contain;    /* Prevents stretching or crunching layout bugs */
    transition: transform 0.3s ease;
}

.review-badge-card:hover .review-icon-img {
    transform: scale(1.05);  /* Clean pop effect when hovering the parent card */
}

.review-badge-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.badge-stars i {
    color: var(--lee-gold); /* Branded gold tracking stars */
    font-size: 0.95rem;
}

.badge-score {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f0edf5;
    opacity: 0.9;
    margin-bottom: 20px;
}

.badge-action-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lee-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.review-badge-card:hover .badge-action-text {
    color: #ffffff;
}

/* Symmetrical Mobile Re-alignment Matrix */
@media (max-width: 1024px) {
    .reviews-badge-section {
        padding: 70px 0;
    }
    .reviews-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    .reviews-grid {
        grid-template-columns: 1fr; /* Responsive stack fallback */
        gap: 25px;
    }
    .review-badge-card {
        padding: 35px 25px;
    }
    .badge-platform-icon {
        height: 48px;
    }
}




/* ==========================================================================
   7. PARTNERS ACCREDITATION MARQUEE STYLES
   ========================================================================== */
.partners-section {
    padding: 60px 0;
    background-color: #ffffff; /* Brighter backdrop to isolate corporate logo assets clean */
    border-bottom: 1px solid rgba(58, 35, 19, 0.08);
    text-align: center;
}

.partners-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    color: #3a2313;
    opacity: 0.6;
    margin-bottom: 35px;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo-item {
    flex: 1;
    min-width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%); /* Makes external partner logos uniform with layout aesthetics */
    opacity: 0.5;
    transition: var(--transition);
}

.partner-logo-item:hover .partner-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

/* ==========================================================================
   8. PREMIUM COMPLETED FOOTER ENGINE
   ========================================================================== */
.main-footer {
    background-color: var(--lee-dark-matte); /* Rich dark premium tone matching hero core matrix */
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr) 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    width: fit-content;
}

/* Subtle gold horizontal line under footer titles */
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 30px; height: 2px;
    background-color: var(--lee-gold);
}

.brand-col .footer-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.brand-col p {
    line-height: 1.7;
    font-weight: 400;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--lee-gold);
    transform: translateX(4px);
}

.contact-col p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.contact-col p i {
    color: var(--lee-gold);
    width: 16px;
    text-align: center;
}

.contact-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-col a:hover {
    color: var(--lee-gold);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-socials a:hover {
    background-color: var(--lee-gold);
    color: #000000;
    transform: translateY(-3px);
}

/* Bottom Row Copyright Container Line */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Responsive Footer and Partner Grid Adjustments */
@media (max-width: 1024px) {
    .partners-grid {
        justify-content: center;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-col h4 {
        margin-bottom: 20px;
    }
}



/* --- ABOUT PAGE ARCHITECTURE MODULAR ADDITIONS --- */
.static-about-card {
    height: auto !important;
}

.card-matte-overlay.solid-box {
    height: 100%;
    border-radius: 24px;
    justify-content: flex-start;
    gap: 15px;
}

/* DESKTOP HERO ENHANCEMENT: Prevents inner heroes from feeling compressed on widescreen monitors */
@media (min-width: 1025px) {
    .hero.inner-hero {
        height: 70vh !important; /* Expanded vertical size for premium space */
        padding-top: 80px;
    }
}

/* Symmetrical Mobile Re-alignment & Desktop Overrides */
@media (max-width: 1024px) {
    .hero.inner-hero {
        height: 55vh !important;
        padding-top: 120px;
    }
    
    .about-summary .legend-grid,
    .legend-section .legend-grid,
    .why-section .legend-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .charity-image-frame {
        min-height: 280px !important;
        height: 280px !important;
    }

    /* --- MOBILE FOOTER CENTER ALIGNMENT ENGINE --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center; /* Centers text globally in columns */
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers inner elements blocks */
    }

    .footer-col h4 {
        margin-inline: auto; /* Centers the underline title accent line */
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%); /* Keeps lines directly underneath headings */
    }

    .footer-links {
        width: 100%;
        padding: 0;
    }

    .footer-links a:hover {
        transform: scale(1.05); /* Switches side padding transform to clean scaling expansion */
    }

    .contact-col p {
        justify-content: center; /* Symmetrically balances location & cell lines */
    }

    .footer-socials {
        justify-content: center; /* Aligns social handles perfectly */
        margin-inline: auto;
    }
}





/* ==========================================================================
   KILIMANJARO SPECIFIC PREMIUM ENGINE LAYOUTS (MOBILE HEIGHT FIXES)
   ========================================================================== */

/* FIXED: Dedicated 5-Column Grid layout that handles text wrapping tightly */
.climate-zones-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}

/* FIXED: Replaced explicit fixed heights with clean padding and flex auto-containment */
.climate-badge-card {
    background: #3a2313;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.climate-badge-card:hover {
    transform: translateY(-5px);
    border-color: var(--lee-gold);
}

.zone-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--lee-gold);
    display: block;
    margin-bottom: 12px;
    opacity: 0.9;
}

.climate-badge-card h4 {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.climate-badge-card p {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    color: #f0edf5 !important;
    opacity: 0.85;
    font-weight: 500;
}

/* Route Layout Rows Engine */
.kili-routes-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.kili-route-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--lee-card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 30px;
    align-items: center;
}

.route-visual-img {
    height: 100%;
    min-height: 280px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.route-details-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--lee-gold);
    margin-bottom: 15px;
}

.route-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255,255,255,0.04);
    padding: 6px 14px;
    border-radius: 50px;
    margin-right: 10px;
    margin-bottom: 15px;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.02);
}

.route-meta-tag i {
    color: var(--lee-gold);
}

.route-details-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    color: #ffffff;
    margin-bottom: 20px;
}

.route-badges-row {
    display: flex;
    gap: 10px;
}

.badge-info {
    font-size: 0.75rem;
    font-weight: 800;
    background: #3a2313;
    color: var(--lee-gold);
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 158, 27, 0.15);
}

/* Strategic Match Boxes */
.kili-strategy-box {
    background: #3a2313;
    padding: 40px 30px;
    border-radius: 20px;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.03);
}

.kili-strategy-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lee-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kili-strategy-box p {
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.strategy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.strategy-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.strategy-list li::before {
    content: '■';
    position: absolute;
    left: 0; top: 0;
    color: var(--lee-gold);
    font-size: 0.8rem;
}

/* Packing Checklist Column Layouts */
.packing-matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.packing-col-box {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(58, 35, 19, 0.05);
}

.packing-header-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #3a2313;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(58, 35, 19, 0.08);
    padding-bottom: 12px;
}

.packing-header-title i {
    color: var(--lee-gold);
}

.packing-col-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.packing-col-box ul li {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.packing-col-box ul li i {
    color: #25d366;
    font-size: 0.9rem;
    margin-top: 3px;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES FOR MOUNT DETAILS
   ========================================================================== */
@media (max-width: 1200px) {
    .climate-zones-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    /* FIXED: Climate zones now drop down smoothly to a beautiful vertical mobile block list */
    .climate-zones-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .climate-badge-card {
        padding: 25px 20px;
        height: auto !important; /* Defensively forces total elimination of text overflow heights */
    }

    .packing-matrix-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .kili-route-row {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
    }

    .route-visual-img {
        min-height: 220px;
        height: 220px;
    }

    .route-meta-tag {
        margin-right: 6px;
        margin-bottom: 10px;
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .climate-zones-grid {
        grid-template-columns: 1fr;
    }
}




/* ==========================================================================
   DESTINATIONS MASTER HUB ENGINE (UNMASKED IMAGES & DIRECT CENTERED TEXT)
   ========================================================================== */

/* Fast-Nav Links Bar */
.circuit-fast-nav {
    background-color: #3a2313;
    padding: 18px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    border-bottom: 2px solid var(--lee-gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.fast-nav-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.fast-nav-flex a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    padding: 6px 12px;
    border-radius: 4px;
}

.fast-nav-flex a:hover {
    color: var(--lee-gold);
    background: rgba(255,255,255,0.04);
}

/* Base Layout CompartMENTS */
.circuit-section {
    padding: 100px 0 80px 0;
    border-bottom: 1px solid rgba(58, 35, 19, 0.08);
}

/* Symmetrical Centering Box Block Config */
.circuit-header-block {
    max-width: 850px;
    margin-inline: auto;
    text-align: center; 
    margin-bottom: 55px;
}

.circuit-tag-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--lee-gold);
    color: #000000;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.circuit-header-block h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #3a2313;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.circuit-header-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    color: #555555;
}

/* Localized Title Underline Accent Elements */
.category-divider-title {
    font-size: 1.15rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #3a2313;
    margin-top: 20px;
    margin-bottom: 45px;
    padding-bottom: 14px;
    position: relative;
    text-align: center;
    width: 100%;
}

.category-divider-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 3px;
    background-color: #3a2313;
}

/* Grid Framework Base */
.dest-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Visual Split System with zero image filtering */
a.dest-hub-card.premium-split-card {
    background-color: #ffffff;
    border: 1px solid rgba(58, 35, 19, 0.12);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    height: 165px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.split-card-img {
    height: 100%;
    width: 42%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

/* Center Aligned Text Card Bodies */
.split-card-body {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}

.dest-card-txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 10px;
}

a.dest-hub-card.premium-split-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #3a2313;
    margin-bottom: 6px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

a.dest-hub-card.premium-split-card p {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #666666;
    font-weight: 500;
    margin: 0;
}

.dest-hub-arrow {
    font-size: 1rem;
    color: #3a2313;
    opacity: 0.3;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

/* Interaction Hovers */
a.dest-hub-card.premium-split-card:hover {
    transform: translateY(-4px);
    border-color: var(--lee-gold);
    box-shadow: 0 12px 25px rgba(58, 35, 19, 0.12);
}

a.dest-hub-card.premium-split-card:hover .split-card-img {
    transform: scale(1.03);
}

a.dest-hub-card.premium-split-card:hover h4 {
    color: var(--lee-gold);
}

a.dest-hub-card.premium-split-card:hover .dest-hub-arrow {
    opacity: 1;
    color: var(--lee-gold);
    transform: translateX(0);
}

.large-split-card .split-card-img {
    width: 25%;
}

/* ==========================================================================
   HIDDEN GEMS ARCHITECTURE STYLES (OVERLAY REMOVAL FIX)
   ========================================================================== */
.hidden-gems-wrapper {
    margin-top: 70px;
    background: #3a2313;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.gems-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lee-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gems-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

a.gem-poster-card {
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.large-poster {
    height: 280px !important;
}

/* FIXED VISUAL OVERLAY: Replaced total overlay filter masking with crisp lower gradient panel bar */
.gem-poster-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    /* Clean linear step gradient ensures 100% crystal-clear unmasked asset display on top 70% of card */
    background: linear-gradient(to top, rgba(9, 11, 9, 0.98) 0%, rgba(9, 11, 9, 0.85) 35%, rgba(9, 11, 9, 0) 75%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

a.gem-poster-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

a.gem-poster-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-weight: 500;
}

a.gem-poster-card:hover {
    transform: translateY(-6px);
    border-color: var(--lee-gold);
}

a.gem-poster-card:hover h4 {
    color: var(--lee-gold);
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS (MOBILE ASPECT COUPLING)
   ========================================================================== */
@media (max-width: 1024px) {
    .circuit-fast-nav {
        position: static;
    }
    .fast-nav-flex { gap: 10px; }
    .fast-nav-flex a { font-size: 0.75rem; padding: 4px 6px; }

    .circuit-header-block h2 {
        font-size: 2rem;
    }

    .dest-hub-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .gems-panel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    a.dest-hub-card.premium-split-card {
        height: auto;
    }
}

@media (max-width: 600px) {
    a.dest-hub-card.premium-split-card {
        flex-direction: column;
        height: auto;
    }

    .split-card-img {
        width: 100% !important;
        aspect-ratio: 16 / 9;
        height: auto;
        max-height: 175px;
    }

    .split-card-body {
        width: 100%;
        padding: 20px;
    }

    .gems-panel-grid {
        grid-template-columns: 1fr;
    }

    a.gem-poster-card {
        height: 320px;
    }
    
    .large-poster {
        height: 240px !important;
    }
}



/* ==========================================================================
   CONTACT US & SAFARI PLANNER SPLIT MODULE STYLES
   ========================================================================== */
.contact-split-section {
    padding: 100px 0;
    background-color: #fcfbfa;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr; /* Asymmetric grid favoring form workspace */
    gap: 50px;
    align-items: start;
}

/* Form Container Style Rules */
.contact-form-container {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(58, 35, 19, 0.08);
    box-shadow: 0 10px 30px rgba(58, 35, 19, 0.03);
}

.form-intro-block {
    margin-bottom: 35px;
}

.form-intro-block h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #3a2313;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.form-intro-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
    font-weight: 500;
}

/* Layout Row Adjustments */
.form-row-double {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-row-triple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width-group {
    margin-bottom: 25px;
}

.form-input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #3a2313;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Inputs, Selects, and Textareas */
.form-input-group input[type="text"],
.form-input-group input[type="email"],
.form-input-group input[type="tel"],
.form-input-group input[type="date"],
.form-input-group select,
.form-input-group textarea {
    font-family: 'Montserrat', sans-serif;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #3a2313;
    background-color: #faf9f7;
    border: 1px solid rgba(58, 35, 19, 0.15);
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-input-group textarea {
    resize: vertical;
}

/* Input Focus Glow Elements */
.form-input-group input:focus,
.form-input-group select:focus,
.form-input-group textarea:focus {
    background-color: #ffffff;
    border-color: #3a2313;
    box-shadow: 0 0 0 4px rgba(58, 35, 19, 0.05);
}

/* Custom Checkbox Action Matrix */
.form-checkbox-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 5px;
}

.checkbox-box-container {
    position: relative;
    cursor: pointer;
}

.checkbox-box-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-align: center;
    background-color: #faf9f7;
    border: 1px solid rgba(58, 35, 19, 0.15);
    border-radius: 10px;
    color: #3a2313;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.checkbox-custom-tile i {
    font-size: 1.1rem;
    opacity: 0.6;
    transition: color 0.2s ease;
}

/* Checkbox States triggers */
.checkbox-box-container input:checked ~ .checkbox-custom-tile {
    background-color: #3a2313;
    border-color: #3a2313;
    color: #ffffff;
}

.checkbox-box-container input:checked ~ .checkbox-custom-tile i {
    color: var(--lee-gold);
    opacity: 1;
}

.checkbox-box-container:hover .checkbox-custom-tile {
    border-color: #3a2313;
}

/* Form Action Submission Key */
.form-submit-btn {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #3a2313;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.form-submit-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #000000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.form-submit-btn:hover i {
    transform: translate(3px, -3px);
}

/* ==========================================================================
   RIGHT SIDEBAR INFORMATION CARD PANEL
   ========================================================================== */
.contact-details-sidebar {
    background-color: #3a2313;
    color: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(58, 35, 19, 0.15);
}

.contact-details-sidebar h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--lee-gold);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-details-sidebar > p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    font-weight: 500;
}

.sidebar-contact-flex-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-contact-row-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon-bubble {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--lee-gold);
    flex-shrink: 0;
}

.contact-row-content span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-row-content a,
.contact-row-content p {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    margin: 0;
    transition: color 0.2s ease;
}

.contact-row-content a:hover {
    color: var(--lee-gold);
}

/* Sidebar Branding Accreditations Reminder Card Block */
.sidebar-licensing-badge {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-licensing-badge h4 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--lee-gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-licensing-badge p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONSTRAINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .contact-split-grid {
        grid-template-columns: 1fr; /* Full structural vertical stack container collapse */
        gap: 40px;
    }
    
    .contact-form-container,
    .contact-details-sidebar {
        padding: 35px 25px;
    }
}

@media (max-width: 600px) {
    .contact-split-section {
        padding: 60px 0;
    }

    .form-row-double,
    .form-row-triple {
        grid-template-columns: 1fr; /* Drop secondary column divisions on screens smaller than 600px */
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-checkbox-matrix {
        grid-template-columns: repeat(2, 1fr); /* 2 flat rows of grid tiles on small displays */
    }
}



/* ==========================================================================
   CONTACT US SPLIT GRID ARCHITECTURE & RESPONSIVE REPAIR
   ========================================================================== */

/* Universal structural container wrapper injection */
.contact-split-section {
    padding: 80px 0 100px;
    background-color: #fdfdfd;
    width: 100%;
    box-sizing: border-box;
}

/* Two-column desktop configuration layout */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr; /* Symmetrical split scale ratio balance */
    gap: 45px;
    align-items: start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Left Form Box Container */
.contact-form-container {
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    border: 1px solid rgba(58, 35, 19, 0.1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.form-intro-block {
    margin-bottom: 35px;
}

.form-intro-block h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3a2313;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form-intro-block p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #666666;
    font-weight: 500;
}

/* Form Entry Controls Geometry */
.form-row-double {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-row-triple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
}

.full-width-group {
    margin-bottom: 25px;
    width: 100%;
}

.form-input-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #3a2313;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input-group input,
.form-input-group select,
.form-input-group textarea {
    font-family: 'Montserrat', sans-serif;
    padding: 14px;
    font-size: 0.92rem;
    background-color: #faf9f6;
    border: 1px solid rgba(58, 35, 19, 0.15);
    border-radius: 8px;
    color: #3a2313;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-input-group input:focus,
.form-input-group select:focus,
.form-input-group textarea:focus {
    background-color: #ffffff;
    border-color: #3a2313;
    outline: none;
}

/* Interactive Checkbox Grid Layout */
.form-checkbox-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    width: 100%;
}

.checkbox-box-container {
    position: relative;
    cursor: pointer;
    display: block;
}

.checkbox-box-container input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 6px;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: #faf9f6;
    border: 1px solid rgba(58, 35, 19, 0.15);
    border-radius: 8px;
    color: #3a2313;
    transition: all 0.2s ease;
}

.checkbox-box-container input:checked ~ .checkbox-custom-tile {
    background-color: #3a2313;
    border-color: #3a2313;
    color: #ffffff;
}

/* Submission CTA Module */
.form-submit-btn {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    padding: 16px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #3a2313;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease;
}

.form-submit-btn:hover {
    background-color: #000000;
}

/* ==========================================================================
   RIGHT CONTENT PANEL SIDEBAR CAPTURE FIX
   ========================================================================== */
.contact-details-sidebar {
    background-color: #3a2313;
    color: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(58, 35, 19, 0.1);
    box-sizing: border-box; /* Enforces strict layout geometry containment */
    width: 100%;
}

.contact-details-sidebar h3 {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--lee-gold);
    margin-bottom: 15px;
}

.contact-details-sidebar > p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

.sidebar-contact-flex-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-contact-row-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon-bubble {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--lee-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-row-content span {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}

.contact-row-content a,
.contact-row-content p {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    margin: 0;
}

.contact-row-content a:hover {
    color: var(--lee-gold);
}

.sidebar-licensing-badge {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-licensing-badge h4 {
    color: var(--lee-gold);
    font-size: 0.95rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 800;
}

.sidebar-licensing-badge p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE GRID COLLAPSE SYSTEM
   ========================================================================== */
@media (max-width: 1024px) {
    .contact-split-grid {
        grid-template-columns: 1fr !important; /* Stack elements cleanly on smaller viewports */
        gap: 35px;
        padding-inline: 20px;
    }
}

@media (max-width: 600px) {
    .form-row-double,
    .form-row-triple {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .form-checkbox-matrix {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .contact-form-container,
    .contact-details-sidebar {
        padding: 30px 20px;
    }
}


//* ==========================================================================
   PREMIUM ROUTE METRICS DASHBOARD STRIP
   ========================================================================== */
.route-metrics-bar {
    background-color: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid rgba(58, 35, 19, 0.08);
    box-shadow: 0 4px 20px rgba(58, 35, 19, 0.02);
    position: relative;
    z-index: 10;
}

.metrics-flex-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Clean desktop split matrix grid */
    gap: 20px;
    align-items: center;
    width: 100%;
}

.metric-item-box {
    text-align: center;
    padding: 10px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Elegant geometric vertical separators for desktop grids */
.metric-item-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(58, 35, 19, 0.12);
}

.metric-item-box h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #8a7a71; /* Sophisticated muted primary tone */
    letter-spacing: 1.5px;
    margin: 0 0 8px 0;
    line-height: 1;
}

.metric-item-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #3a2313; /* Strong brand primary focus */
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

/* ==========================================================================
   METRICS RESPONSIVE DESIGN VIEWPORT COLLAPSE SYSTEM
   ========================================================================== */
@media (max-width: 1024px) {
    .metrics-flex-container {
        grid-template-columns: repeat(2, 1fr); /* 2x2 matrix grid box pattern on tablets */
        gap: 30px 20px;
    }

    /* Remove standard desktop right vertical borders */
    .metric-item-box::after {
        display: none !important;
    }

    /* Dynamic left-right border dividers for a balanced 2x2 presentation grid */
    .metrics-flex-container .metric-item-box:nth-child(odd) {
        border-right: 1px solid rgba(58, 35, 19, 0.1);
    }
}

@media (max-width: 600px) {
    .route-metrics-bar {
        padding: 20px 0;
        background-color: #faf9f6; /* Contrasting background container on mobile app viewports */
    }

    .metrics-flex-container {
        grid-template-columns: 1fr; /* 1 Column full structural vertical layout on phone touch screens */
        gap: 15px;
        padding: 0 15px;
    }

    .metric-item-box {
        background-color: #ffffff; /* Turns into separate card modules on mobile screens */
        padding: 20px;
        border-radius: 12px;
        border: 1px solid rgba(58, 35, 19, 0.08);
        box-shadow: 0 4px 12px rgba(58, 35, 19, 0.02);
        border-right: none !important; /* Forces total horizontal border clear */
    }

    .metric-item-box h5 {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    .metric-item-box p {
        font-size: 1.05rem;
    }
}


/* ==========================================================================
   PREMIUM STAGGERED SHOWCASE ITINERARY ENGINE
   ========================================================================== */
.premium-itinerary-showcase {
    padding: 120px 0;
    background-color: #faf9f6;
    position: relative;
    overflow: hidden;
}

.timeline-track-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Central spine line navigation guide track for desktop views */
.timeline-spine-line {
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: 500px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, #3a2313, #3a2313 10px, transparent 10px, transparent 20px);
    transform: translateX(-50%);
    opacity: 0.15;
    display: block;
}

/* Staggered Row Wrappers */
.showcase-card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Unmasked Content Viewport Configurations */
.showcase-image-viewport {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(58, 35, 19, 0.06);
    border: 1px solid rgba(58, 35, 19, 0.08);
}

.showcase-image-viewport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card-wrapper:hover .showcase-image-viewport img {
    transform: scale(1.03);
}

.showcase-content-viewport {
    padding: 20px 0;
}

/* Micro Elements Typography */
.day-numeric-flag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #3a2313;
    padding: 4px 14px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.showcase-content-viewport h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #3a2313;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.trek-metric-pillbox {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.trek-metric-pillbox span {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #555555;
    background-color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(58, 35, 19, 0.1);
}

.trek-metric-pillbox span i {
    color: var(--lee-gold);
    margin-right: 4px;
}

.showcase-content-viewport p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #444444;
    font-weight: 500;
    margin: 0;
    text-align: justify;
}

/* ==========================================================================
    BOOKING ENGAGEMENT BLOCK INTEGRATION (ARE YOU INTERESTED MATRIX)
   ========================================================================== */
.itinerary-closing-engagement-block {
    background-color: #3a2313;
    color: #ffffff;
    border-radius: 24px;
    padding: 60px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 45px rgba(58, 35, 19, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.interest-accent-tag {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--lee-gold);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.itinerary-closing-engagement-block h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 18px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.itinerary-closing-engagement-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 685px;
    margin: 0 auto 35px;
    font-weight: 500;
}

/* Interactive Action Buttons Rows */
.engagement-action-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action-btn-book {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--lee-gold);
    color: #000000;
    text-decoration: none;
    padding: 16px 35px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.action-btn-book i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.action-btn-book:hover {
    background-color: #ffffff;
    color: #3a2313;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.action-btn-book:hover i {
    transform: translateX(4px);
}

.action-btn-whatsapp {
    font-family: 'Montserrat', sans-serif;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 35px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.action-btn-whatsapp:hover {
    background-color: #1ebd54;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

/* ==========================================================================
   RESPONSIVE DESIGN VIEWPORT COLLAPSE SYSTEM
   ========================================================================== */
@media (max-width: 1024px) {
    .timeline-spine-line {
        display: none !important; /* Remove track divider spine lines on tablet profiles */
    }
    
    .showcase-card-wrapper {
        grid-template-columns: 1fr !important; /* Force card fields to unified single column stack */
        gap: 20px;
        margin-bottom: 50px;
    }

    .right-aligned-block {
        display: flex;
        flex-direction: column-reverse; /* Reorder document flow so photos always top text on mobile layers */
    }

    .showcase-image-viewport {
        height: auto;
        aspect-ratio: 16 / 9; /* Cinema layout windowing logic for images on phone profiles */
        max-height: 280px;
    }

    .showcase-content-viewport h3 {
        font-size: 1.6rem;
    }

    .itinerary-closing-engagement-block {
        padding: 40px 20px;
    }

    .itinerary-closing-engagement-block h2 {
        font-size: 1.6rem;
    }
    
    .action-btn-book,
    .action-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   TREK LOGISTICS SPECIFICATIONS (INCLUSIONS & EXCLUSIONS)
   ========================================================================== */
.trek-rules-spec-section {
    width: 100%;
    margin-top: 40px;
    box-sizing: border-box;
}

.rules-split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Balanced structural dual column layout */
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
}

.rules-column-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-sizing: border-box;
    box-shadow: 0 8px 30px rgba(58, 35, 19, 0.02);
    transition: transform 0.3s ease;
}

/* Color codes the cards subtle border markers based on type */
.inclusion-card {
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-top: 4px solid #25d366; /* Clean success green accent */
}

.exclusion-card {
    border: 1px solid rgba(164, 44, 44, 0.15);
    border-top: 4px solid #a42c2c; /* Clear red alert warning accent */
}

.rules-column-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusion-card h4 { color: #3a2313; }
.inclusion-card h4 i { color: #25d366; }

.exclusion-card h4 { color: #3a2313; }
.exclusion-card h4 i { color: #a42c2c; }

/* Custom Bullet points styling */
.rules-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rules-bullet-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.94rem;
    line-height: 1.5;
    color: #444444;
    font-weight: 500;
    position: relative;
    padding-left: 22px;
}

/* Custom bullet icon placement indicators */
.rules-bullet-list li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.85rem;
}

.inclusion-card .rules-bullet-list li::before {
    content: "\f00c"; /* FontAwesome check-mark symbol */
    color: #25d366;
}

.exclusion-card .rules-bullet-list li::before {
    content: "\f00d"; /* FontAwesome times-cross symbol */
    color: #a42c2c;
}

/* ==========================================================================
   LOGISTICS MOBILE VIEWPORT COLLAPSE
   ========================================================================== */
@media (max-width: 900px) {
    .rules-split-grid {
        grid-template-columns: 1fr !important; /* Forces layout vertical collapse */
        gap: 25px;
    }
    
    .rules-column-card {
        padding: 30px 20px;
    }
}


/* ==========================================================================
   WILDLIFE SAFARIS PACKAGES DIRECTORY ENGINE
   ========================================================================== */

/* Interactive Sticky Filtering Bar */
.safari-filter-matrix-bar {
    background-color: #3a2313;
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-bottom: 2px solid var(--lee-gold);
}

.filter-panel-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    width: 100%;
}

.filter-select-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-select-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--lee-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-select-group select {
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select-group select option {
    background-color: #3a2313;
    color: #ffffff;
}

.filter-select-group select:focus,
.filter-select-group select:hover {
    background-color: #ffffff;
    color: #3a2313;
    border-color: #ffffff;
}

/* Catalog Workspace Layout */
.safari-catalog-workspace {
    padding: 100px 0;
    background-color: #fdfcfb;
}

.catalog-circuit-section {
    margin-bottom: 90px;
}

.catalog-circuit-section:last-child {
    margin-bottom: 0;
}

.circuit-header-title {
    margin-bottom: 45px;
    border-left: 4px solid var(--lee-gold);
    padding-left: 20px;
}

.circuit-header-title h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #3a2313;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.circuit-header-title p {
    font-size: 1.02rem;
    color: #666666;
    margin: 0;
    font-weight: 500;
    max-width: 800px;
}

.safari-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 35px;
}

/* Redesigned Luxury Product Cards */
.safari-product-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(58, 35, 19, 0.06);
    box-shadow: 0 10px 30px rgba(58, 35, 19, 0.02);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.safari-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(58, 35, 19, 0.08);
}

.card-image-viewport {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-core-metadata {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-core-metadata h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #3a2313;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.4px;
}

.card-location-line {
    font-size: 0.82rem;
    font-weight: 700;
    color: #8a7a71;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-metric-strip {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.card-metric-strip span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #3a2313;
    background-color: #fcfbfa;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(58, 35, 19, 0.06);
}

/* Styled Highlights List replacing raw text blocks */
.card-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto; /* Keeps list grouped perfectly toward container floor */
}

.card-highlights-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555555;
    position: relative;
    padding-left: 20px;
}

.card-highlights-list li::before {
    content: "•";
    color: var(--lee-gold);
    font-weight: 900;
    font-size: 1.2rem;
    position: absolute;
    left: 4px;
    top: -2px;
}

/* Footer Section Rules */
.card-footer-pricing-row {
    border-top: 1px solid rgba(58, 35, 19, 0.08);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-from {
    font-size: 0.85rem;
    color: #777777;
    font-weight: 600;
}

.price-from strong {
    font-size: 1.45rem;
    color: #3a2313;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.card-action-btns {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 10px;
}

.btn-view-itinerary {
    font-family: 'Montserrat', sans-serif;
    background-color: transparent;
    color: #3a2313;
    border: 1px solid #3a2313;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-view-itinerary:hover {
    background-color: #3a2313;
    color: #ffffff;
}

.btn-req-quote {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--lee-gold);
    color: #000000;
    border: 1px solid var(--lee-gold);
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-req-quote:hover {
    background-color: #3a2313;
    border-color: #3a2313;
    color: #ffffff;
}

/* Call to Action Bar Configuration */
.safari-closing-cta-section {
    background-color: #3a2313;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    border-top: 5px solid var(--lee-gold);
}

.cta-mini-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--lee-gold);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.safari-closing-cta-section h2 {
    font-size: 2.6rem;
    font-weight: 900;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.safari-closing-cta-section p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    max-width: 750px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.cta-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn-prime, .cta-btn-wa }
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    text-decoration: none;
    padding: 16px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

.cta-btn-prime { background-color: var(--lee-gold); }
.cta-btn-prime:hover { background-color: #ffffff; color: #3a2313; }

.cta-btn-wa { background-color: #25d366; color: #ffffff; }
.cta-btn-wa:hover { background-color: #1ebd54; }

.cta-btn-sub {
    font-family: 'Montserrat', sans-serif;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cta-btn-sub:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE DESIGN GRID DISPLACEMENT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .filter-panel-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .safari-filter-matrix-bar { top: 60px; }
}

@media (max-width: 768px) {
    .filter-panel-wrapper { grid-template-columns: 1fr; gap: 10px; }
    .safari-filter-matrix-bar { position: relative; top: 0; }
    .circuit-header-title h2 { font-size: 1.75rem; }
    .safari-packages-grid { grid-template-columns: 1fr; }
    .safari-closing-cta-section h2 { font-size: 1.95rem; }
}



/* ==========================================================================
   WILDLIFE SAFARIS PACKAGES DIRECTORY ENGINE (PREMIUM GLASS SYSTEM)
   ========================================================================== */

/* Interactive Filter Engine Sticky Bar */
.safari-filter-matrix-bar {
    background-color: #3a2313;
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-bottom: 2px solid var(--lee-gold);
}

.filter-panel-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    width: 100%;
}

.filter-select-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-select-group label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--lee-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-select-group select {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select-group select option {
    background-color: #3a2313;
    color: #ffffff;
}

.filter-select-group select:focus,
.filter-select-group select:hover {
    background-color: #ffffff;
    color: #3a2313;
    border-color: #ffffff;
}

/* Catalog Workspace Layout Base */
.safari-catalog-workspace {
    padding: 110px 0;
    background-color: #d5cebc; /* Perfect continuity with your primary backdrop */
}

.catalog-circuit-section {
    margin-bottom: 100px;
}

.catalog-circuit-section:last-child {
    margin-bottom: 0;
}

/* REDESIGNED CENTRIC CIRCUIT HEADER SYSTEM */
.circuit-header-title {
    margin-bottom: 50px;
    text-align: center; /* Forces total center balance alignments */
    padding: 0 20px;
}

.circuit-header-title h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #3a2313; /* Bold contrast timber primary tone */
    margin: 0 0 14px 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.circuit-header-title p {
    font-size: 1.05rem;
    color: #4e3629;
    margin: 0 auto;
    font-weight: 600;
    max-width: 750px; /* Kept narrow baseline bounds for elegant wrapped tracking */
    line-height: 1.6;
}

.safari-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 35px;
}

/* ==========================================================================
   EDITORIAL LOOK SAFARI CARDS
   ========================================================================== */
.safari-product-card {
    background-color: #ffffff; /* Crisp white canvas backing for premium contrast */
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(58, 35, 19, 0.08);
    box-shadow: 0 10px 30px rgba(58, 35, 19, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.safari-product-card:hover {
    transform: translateY(-8px);
    border-color: var(--lee-gold);
    box-shadow: 0 25px 50px rgba(58, 35, 19, 0.12);
}

.card-image-viewport {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid rgba(58, 35, 19, 0.04);
}

.card-core-metadata {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.card-meta-header {
    margin-bottom: 25px;
}

.card-duration-text {
    font-size: 0.78rem;
    font-weight: 800;
    color: #8a7a71; /* Sophisticated sandstone hue */
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.card-core-metadata h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #3a2313; /* Bold timber focus */
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.4px;
}

.card-location-line {
    font-size: 0.85rem;
    font-weight: 700;
    color: #8a7a71;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.card-location-line i {
    color: var(--lee-gold);
}

/* Premium Highlights List Layout Array */
.card-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto; /* Fastens elements neatly to the base of the layout card */
}

.card-highlights-list li {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555555;
    position: relative;
    padding-left: 24px;
    display: flex;
    align-items: center;
}

.card-highlights-list li::before {
    content: "■"; /* Clean minimalist square marker symbol block */
    color: var(--lee-gold);
    font-size: 0.65rem;
    position: absolute;
    left: 4px;
    top: 0px;
}

/* Balanced Action Control Footers (front price parameter clear) */
.card-footer-action-row {
    border-top: 1px solid rgba(58, 35, 19, 0.08);
    padding-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.btn-view-itinerary {
    background-color: transparent;
    color: #3a2313;
    border: 1px solid #3a2313;
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.btn-view-itinerary:hover {
    background-color: #3a2313;
    color: #ffffff;
    border-color: #3a2313;
}

.btn-req-quote {
    background-color: var(--lee-gold);
    color: #000000;
    border: 1px solid var(--lee-gold);
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-req-quote:hover {
    background-color: #3a2313;
    border-color: #3a2313;
    color: #ffffff;
}

/* Symmetrical Closing Call to Action Layout Settings */
.safari-closing-cta-section {
    background-color: #3a2313;
    color: #ffffff;
    padding: 110px 0;
    text-align: center;
    border-top: 5px solid var(--lee-gold);
}

.cta-mini-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--lee-gold);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.safari-closing-cta-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.safari-closing-cta-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 780px;
    margin: 0 auto 45px;
    font-weight: 500;
}

.cta-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn-prime, .cta-btn-wa, .cta-btn-sub {
    padding: 16px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-prime { background-color: var(--lee-gold); color: #000000; }
.cta-btn-prime:hover { background-color: #ffffff; color: #3a2313; }

.cta-btn-wa { background-color: #25d366; color: #ffffff; }
.cta-btn-wa:hover { background-color: #1ebd54; }

.cta-btn-sub {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-sub:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE DESIGN GRID DISPLACEMENT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .filter-panel-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .safari-filter-matrix-bar { top: 75px; }
}

@media (max-width: 768px) {
    .filter-panel-wrapper { grid-template-columns: 1fr; gap: 10px; }
    .safari-filter-matrix-bar { position: relative; top: 0; }
    .circuit-header-title h2 { font-size: 1.85rem; }
    .safari-packages-grid { grid-template-columns: 1fr; }
    .safari-closing-cta-section h2 { font-size: 2rem; }
}


/* ==========================================================================
   PREMIUM EDITORIAL SHOWCASE STYLES (DESTINATION ARCHITECTURE)
   ========================================================================== */

/* Cinematic Hero Extensions */
.destin-showcase-hero {
    height: 75vh !important;
    position: relative;
    overflow: hidden;
}

.destin-showcase-hero .hero-bg-overlay {
    background: linear-gradient(to bottom, rgba(9, 11, 9, 0.3) 0%, rgba(9, 11, 9, 0.85) 100%);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.brand-display-title {
    font-size: clamp(3rem, 7vw, 5.5rem) !important;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Premium Dashboard Metrics Strip */
.premium-dashboard-strip {
    background-color: #3a2313;
    border-bottom: 2px solid var(--lee-gold);
    padding: 35px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.dashboard-grid-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.matrix-stat-cell {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.matrix-stat-cell:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.matrix-stat-cell .cell-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--lee-gold);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.matrix-stat-cell .cell-data {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
}

/* Editorial Overview Panel */
.editorial-brief-panel {
    background-color: #ffffff;
    padding: 110px 0 80px;
    text-align: center;
}

.layout-narrow-clamp {
    max-width: 800px;
    margin: 0 auto;
}

.editorial-tag-line {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--lee-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

.editorial-main-heading {
    font-size: 2.5rem;
    font-weight: 900;
    color: #3a2313;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.editorial-paragraph {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #555555;
    font-weight: 500;
}

/* Asymmetric Split-Media Showcase Infrastructure */
.split-media-showcase-system {
    background-color: #f5f2eb; /* Smooth continuation tone */
    padding: 60px 0 120px;
}

.showcase-staggered-stack {
    display: flex;
    flex-direction: column;
    gap: 90px;
    margin-bottom: 100px;
}

.split-showcase-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.split-showcase-row.layout-row-reversed {
    grid-template-columns: 1fr 1.1fr;
}

.split-media-viewport {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 45px rgba(58, 35, 19, 0.08);
    border: 1px solid rgba(58, 35, 19, 0.05);
}

.split-media-viewport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-showcase-row:hover .split-media-viewport img {
    transform: scale(1.04);
}

.media-badge-glow {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: rgba(9, 11, 9, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 6px;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.1);
}

.split-text-viewport {
    padding: 10px 0;
}

.editorial-category-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: #8a7a71;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.split-text-viewport h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #3a2313;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.split-body-prose {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: justify;
}

/* Elegant Custom Bullet Array Grid */
.luxury-bullet-array {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.luxury-bullet-array span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3a2313;
    position: relative;
    padding-left: 28px;
    display: flex;
    align-items: center;
}

.luxury-bullet-array span::before {
    content: "■";
    position: absolute;
    left: 4px;
    color: var(--lee-gold);
    font-size: 0.75rem;
}

/* High-Converting Luxury Booking Box Engine */
.premium-booking-activation-module {
    background-color: #3a2313;
    border-radius: 30px;
    padding: 70px 60px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    position: relative;
    text-align: center;
}

.premium-booking-activation-module::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 120px; height: 4px;
    background-color: var(--lee-gold);
    border-radius: 4px 4px 0 0;
}

.activation-inner-shield {
    max-width: 800px;
    margin: 0 auto;
}

.activation-accent-tag {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--lee-gold);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.premium-booking-activation-module h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.premium-booking-activation-module p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    font-weight: 500;
}

.activation-button-matrix {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action-btn-luxury-prime,
.action-btn-luxury-whatsapp {
    padding: 18px 40px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-btn-luxury-prime {
    background-color: var(--lee-gold);
    color: #000000;
}

.action-btn-luxury-prime i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.action-btn-luxury-prime:hover {
    background-color: #ffffff;
    color: #3a2313;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.action-btn-luxury-prime:hover i {
    transform: translateX(5px);
}

.action-btn-luxury-whatsapp {
    background-color: #25d366;
    color: #ffffff;
}

.action-btn-luxury-whatsapp:hover {
    background-color: #1ebd54;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONSTRAINTS FOR DESTINATIONS
   ========================================================================== */
@media (max-width: 1024px) {
    .dashboard-grid-matrix {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .matrix-stat-cell::after { display: none !important; }
    .metrics-flex-container .matrix-stat-cell:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    .split-showcase-row,
    .split-showcase-row.layout-row-reversed {
        grid-template-columns: 1fr !important;
        gap: 35px;
    }
    .split-media-viewport {
        height: 340px;
    }
    .split-text-viewport h3 { font-size: 1.8rem; }
    .premium-booking-activation-module { padding: 45px 25px; }
    .premium-booking-activation-module h2 { font-size: 2rem; }
}

@media (max-width: 600px) {
    .dashboard-grid-matrix { grid-template-columns: 1fr; gap: 20px; }
    .matrix-stat-cell { border-right: none !important; }
    .editorial-main-heading { font-size: 1.85rem; }
    .split-media-viewport { height: 240px; aspect-ratio: 16 / 9; }
    .action-btn-luxury-prime, .action-btn-luxury-whatsapp { width: 100%; justify-content: center; }
}