*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: var(--border);
    --green: var(--deep-forest);
    --green-lt: #2E6E55;
    --gold: var(--copper-solid);
    --gold-lt: #D4AE6A;
    --ink: #111111;
    --muted: #666666;
    --border: #e2d9cc;
    --alt: #F5EFE6;
    --card: #FFFFFF;
    --pink: var(--primary-pink);
    --deep-forest: #1F3A2E;
    --bg-secondary: #13241c;
    --copper-solid: #C68B59;
    --copper-border: #A67C52;
    --soft-beige: #F5EFE6;
    --primary-pink: #ea90ad;
    --dark-brown: #3d1a0a;
    /* Typography System */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}
body{background:var(--bg);color:var(--ink);font-family:'Poppins',sans-serif;min-height:100vh;}

/* --- THE DYNAMIC NAVBAR --- */
.header-wrapper {
    position: fixed;
    /* Fixed to allow smooth scroll transitions */
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header-wrapper.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Reduced Top White Utility Bar */
.top-bar {
    background-color: var(--deep-forest);
    color: #ffffff !important;
    height: 80px;
    /* Reduced from 110px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    position: relative;
    border-bottom: 0.4px solid #eaeaea73;
}

@media (max-width: 1440px) {
    .top-bar {
        height: 70px;
    }
}

/* Left & Right Flex Containers */
.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Contact Info moved next to Menu */
.nav-contact-info {
    font-size: 11px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-left: 1px solid #ddd;
    /* Subtle separator from Menu */
    padding-left: 32px;
}

.nav-contact-info span.divider {
    margin: 0 12px;
    color: #ccc;
}

/* Center Column (Hanging Logo) */
.center-logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
    /* Adjusted slightly */
    z-index: 1010;

    /* The White Plate Fix */
    background-color: #ffffff;
    border-radius: 50%;
    padding: 8px;
    /* Adjust this to make the white border thicker/thinner */
    /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08); */
    /* Soft shadow for depth */
}

/* Reduced Logo Size */
.hanging-logo {
    width: 140px;
    display: block;
    /* Remove any dark drop-shadows on the image itself */
    filter: none;
}



@media (max-width: 1440px) {
    .hanging-logo {
        width: 120px;
    }
}

/* Dynamic Scroll State for Logo */
.header-wrapper.scrolled .hanging-logo {
    width: 75px;
    /* Shrinks the logo when scrolling */
    top: 5px;
}

/* Nav Links in Top Bar */
.nav-link-simple {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link-simple:hover {
    color: var(--copper-solid);
}

.nav-link-simple:hover,
.bottom-nav-bar a:hover,
.sec-nav-link:hover,
.nav-learn-item:hover,
.dest-item:hover,
.breadcrumbs a:hover,
.footer-navigation a:hover,
.social-links a:hover {
    color: var(--primary-pink) !important;
}






/* Secondary Stroke Button (Client Spec) */
/* --- 3D SECONDARY COPPER BUTTON (COPPER ROD EFFECT) --- */
.btn-secondary-copper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--deep-forest);
    background: transparent;
    border-radius: 12px;

    /* 1. The 3D Copper Rod Outline */
    border: 2px solid #be7c46;
    /* Base copper tone */
    border-top-color: #e3ad83;
    /* Highlighted top edge (light) */
    border-bottom-color: #733f15;
    /* Shadowed bottom edge (dark) */

    /* Subtle inner glow to round out the "rod" feel */
    box-shadow:
        inset 0 1px 3px rgba(227, 173, 131, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.05);

    overflow: hidden;
    /* Contains the shine animation */
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    z-index: 1;
}




/* 2. The Shine Beam Setup (Hidden off-screen) */
.btn-secondary-copper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
}

.nav-btn {
    padding: 0.45rem 1.2rem;
    border: 1px solid #ea90ad;
    font-size: 0.80rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3d1a0a;
    background: #ea90ad;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 600;
    display: inline-block;
    border-radius: 8px;
}

.nav-btn:hover {
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #3d1a0a;
}

/* --- HOVER STATE --- */
.btn-secondary-copper:hover {
    color: #ffffff;

    /* Fill with the primary button's metallic gradient */
    background: linear-gradient(180deg, #e3ad83 0%, #c98954 40%, #ad6831 100%);

    /* Blend the border into the new solid background */
    border-color: #c98954;
    border-top-color: #e3ad83;
    border-bottom-color: #ad6831;

    /* Match the 3D Block Shadow of the primary button */
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        0 4px 0 #733f15,
        0 10px 15px rgba(0, 0, 0, 0.2);

    transform: translateY(-2px);
    /* Lift off the page */
}

/* Trigger the Shine Animation on Hover */
.btn-secondary-copper:hover::before {
    animation: copper-shine 0.7s ease-in-out;
}

/* --- ACTIVE (CLICK) STATE --- */
.btn-secondary-copper:active {
    transform: translateY(2px);
    /* Physically push down */
    /* Flatten the shadow block */
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.4),
        0 0px 0 #733f15,
        0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Note: Only include this if you didn't already copy it from the primary button CSS! */
@keyframes copper-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}




/* Bottom Green Navigation Bar */
.bottom-nav-bar {
    background-color: var(--deep-forest);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Setup for smooth collapse */
    height: 50px;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
    opacity: 1;
}

@media (max-width: 1440px) {
    .bottom-nav-bar {
        height: 60px;
    }
}

/* Scroll State: Hide the Green Bar */
.header-wrapper.scrolled .bottom-nav-bar {
    max-height: 0;
    opacity: 0;
}

.bottom-nav-bar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 70px;
    height: 50px;
    align-items: center;
}

.bottom-nav-bar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.bottom-nav-bar a:hover {
    color: var(--copper-solid);
}

.nav-spacer {
    width: 140px;
    transition: width 0.4s ease;
}

.header-wrapper.scrolled .nav-spacer {
    width: 90px;
}


/* --- EXPANDABLE SEARCH BAR --- */
.expandable-search {
    position: relative;
    display: flex;
    align-items: center;
}

.search-trigger {
    z-index: 10;
    position: relative;
}

/* The wrapper that holds the input and hides it by default */
.search-input-wrapper {
    position: absolute;
    right: 0;
    /* Aligns to the right edge of the trigger */
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 5;
}

/* The actual input field */
.search-input {
    width: 100%;
    padding: 8px 40px 8px 15px;
    /* Space for the search icon to overlay */
    background: #ffffff;
    border: none;
    border-bottom: 2px solid var(--copper-solid);
    /* Elegant underline */
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--deep-forest);
    outline: none;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); */
}

.search-input::placeholder {
    color: #a0a0a0;
    font-style: italic;
}

/* --- THE ACTIVE STATE --- */
.expandable-search.is-active .search-input-wrapper {
    width: 280px;
    /* How wide the search bar expands */
    opacity: 1;
    visibility: visible;
}

/* Hide the word "SEARCH" when open, just keep the icon */
.expandable-search.is-active .search-text {
    display: none;
}

/* --- SUGGESTIONS DROPDOWN --- */
.search-suggestions {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
    /* Slight delay so input opens first */
}

/* Show dropdown when search is active */
.expandable-search.is-active .search-suggestions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.suggestions-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 12px;
}

.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suggestions-list li {
    margin-bottom: 10px;
}

.suggestions-list li:last-child {
    margin-bottom: 0;
}

.suggestions-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--deep-forest);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.suggestions-list a:hover {
    color: var(--copper-solid);
    transform: translateX(5px);
    /* Gentle nudge interaction */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .expandable-search.is-active .search-input-wrapper {
        width: 220px;
    }
}








/* --- FULL-SCREEN LUXURY OFFCANVAS (GRID LAYOUT) --- */
.luxury-offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999 !important;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: hidden;
}

.luxury-offcanvas.is-open {
    transform: translateX(0);
}

.nav-overlay {
    display: grid;
    /* 140px for Logo, 380px for Main Menu, 1fr for Dynamic Content, 100px for Close */
    grid-template-columns: 140px 380px 1fr 100px;
    grid-template-rows: 1fr;
    height: 100vh;
}

/* Col 1: Logo */
.col-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.4rem 0;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.offcanvas-logo {
    width: 80px;
    /* Fits comfortably in the 140px column */
    height: auto;
    object-fit: contain;
}

/* Col 2: Navigation Links */
.col-nav {
    padding: 3.5rem 3rem 3rem 2.8rem;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d1d1d1 transparent;
}

/* Custom Scrollbar for Webkit */
.col-nav::-webkit-scrollbar {
    width: 4px;
}

.col-nav::-webkit-scrollbar-track {
    background: transparent;
}

.col-nav::-webkit-scrollbar-thumb {
    background-color: #d1d1d1;
    border-radius: 10px;
}

.col-nav::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
}

.nav-section-label,
.panel-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.nav-discover {
    margin-bottom: 2.5rem;
}

.nav-primary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.35rem 0;
    margin-bottom: 0.2rem;
}

.nav-primary-link {
    font-family: var(--font-heading);
    font-size: 28px;
    /* High-end large serif typography */
    font-weight: 600;
    color: var(--deep-forest);
    text-decoration: none;
    line-height: 1.15;
    transition: color 0.3s ease;
}

.nav-primary-item:hover .nav-primary-link,
.nav-primary-item.active .nav-primary-link {
    color: var(--copper-solid);
}

.nav-chevron {
    color: #ccc;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-primary-item.active .nav-chevron {
    color: var(--copper-solid);
}

.menu-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.06);
    margin: 2.5rem 0;
}

.nav-learn-item {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    padding: 0.4rem 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-learn-item.bold {
    color: var(--deep-forest);
    font-weight: 500;
}

.nav-learn-item:hover {
    color: var(--copper-solid);
    transform: translateX(4px);
}

/* Col 3: Dynamic Right Panel */
.col-right {
    padding: 3.5rem 4rem 3rem;
    overflow-y: auto;
    background: #ffffff;
    /* Off-white background highlights this panel */
    scrollbar-width: thin;
    scrollbar-color: #d1d1d1 transparent;
}

/* Custom Scrollbar for Webkit in Col 3 */
.col-right::-webkit-scrollbar {
    width: 4px;
}

.col-right::-webkit-scrollbar-track {
    background: transparent;
}

.col-right::-webkit-scrollbar-thumb {
    background-color: #d1d1d1;
    border-radius: 10px;
}

.col-right::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
}

.right-panel {
    display: none;
}

.right-panel.active {
    display: block;
    animation: fadeInPanel 0.4s ease;
}


.dest-icon {
    width: 62px;
    height: 62px;
    object-fit: contain;
    flex-shrink: 0;
}





@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-hero-card {
    border-radius: 12px;
    margin-bottom: 2rem;
    background: var(--deep-forest);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 2rem;
}

.panel-hero-title {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #fff;
    line-height: 1.2;
}

.panel-hero-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.panel-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
}

.dest-item {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--deep-forest);
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 12px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 20px;
    transition: 0.3s;
}

.dest-item:hover {
    color: var(--copper-solid);
}

.panel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--copper-solid);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Col 4: Close Button */
.col-close {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2.6rem 0;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.offcanvas-close-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px dashed var(--deep-forest);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--deep-forest);
    transition: all 0.3s ease;
}

.offcanvas-close-btn:hover {
    background: var(--copper-solid);
    border-color: var(--copper-solid);
    color: #ffffff;
    transform: rotate(90deg);
}

/* Hide mobile back row on desktop */
.mobile-back-row {
    display: none;
}

/* Intermediate Desktop Sizing (Prevents overlap with col-close) */
@media (max-width: 1360px) {
    .dest-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px 20px;
    }

    .dest-item {
        font-size: 20px;
        gap: 15px;
    }

    .dest-icon {
        width: 48px;
        height: 48px;
    }
}

/* Mobile Responsive */
@media (max-width: 1100px) {
    .nav-overlay {
        display: block !important;
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .col-logo {
        display: none;
    }

    .col-close {
        position: absolute;
        top: 15px;
        right: 15px;
        border-left: none;
        padding: 0;
        z-index: 100;
    }

    .col-nav {
        width: 100%;
        height: 100%;
        border-right: none;
        border-bottom: none;
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    /* Slide left column out of view when right panel is open */
    .luxury-offcanvas.right-panel-open .col-nav {
        transform: translateX(-100%);
    }

    .col-right {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ffffff;
        padding: 5rem 2rem 3rem;
        z-index: 50;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
    }

    /* Slide right column in when open */
    .luxury-offcanvas.right-panel-open .col-right {
        transform: translateX(0);
    }

    /* Mobile back button styling */
    .mobile-back-row {
        display: block;
        margin-bottom: 2rem;
    }

    .mobile-back-btn {
        background: none;
        border: none;
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 600;
        color: var(--copper-solid);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        padding: 0;
        transition: color 0.3s ease;
    }

    .mobile-back-btn:hover {
        color: var(--deep-forest);
    }

    .dest-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px 15px;
    }

    .dest-item {
        font-size: 18px;
        gap: 12px;
        padding: 8px 0px;
    }

    .dest-icon {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .dest-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .dest-item {
        font-size: 17px;
        gap: 12px;
        padding: 8px 0px;
    }

    .dest-icon {
        width: 40px;
        height: 40px;
    }

    .nav-primary-link {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .dest-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .dest-item {
        font-size: 15px;
        gap: 10px;
        padding: 6px 0px;
    }

    .dest-icon {
        width: 32px;
        height: 32px;
    }
}
body{background:var(--bg);color:var(--ink);font-family:'Poppins',sans-serif;min-height:100vh;}

/* BANNER */
.banner {
    background: var(--deep-forest);
    padding: 180px 2rem 5rem;
    text-align: center;
    position: relative;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255, 255, 255, 0.013) 60px, rgba(255, 255, 255, 0.013) 120px);
}
.banner-eye {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--copper-solid);
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 400;
}
.banner-title em { font-style: italic; color: var(--copper-solid); font-weight: 400; }
.banner-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

/* PROGRESS */
.prog { background: #eaeaea; height: 3px; width: 100%; }
.prog-fill { height: 100%; background: var(--copper-solid); transition: width 0.4s ease; }

/* STEP DOTS */
.step-dots{background:var(--green);padding:1rem 3rem 1.4rem;display:flex;justify-content:center;align-items:center;gap:0;}
.dot-item{display:flex;align-items:center;gap:0;}
.dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s;
}
.dot.active { border-color: var(--copper-solid); color: #fff; background: var(--copper-solid); }
.dot.done { border-color: var(--copper-solid); background: var(--copper-solid); color: #fff; }
.dot-line { width: 40px; height: 1px; background: rgba(255,255,255,0.1); margin: 0 5px; }
.dot-line.done { background: var(--copper-solid); }

/* CARD */
.shell { max-width: 900px; margin: -50px auto 100px; padding: 0 1.5rem; position: relative; z-index: 10;padding-top: 100px; }
.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 3.5rem 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    display: none;
    animation: up 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}
.card.active{display:block;}
@keyframes up{from{opacity:0;transform:translateY(12px);}to{opacity:1;transform:translateY(0);}}

.q-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: #a0a0a0; font-weight: 500; margin-bottom: 0.8rem; }
.q-title { font-family: var(--font-heading); font-size: 2.1rem; color: var(--deep-forest); margin-bottom: 0.8rem; line-height: 1.2; font-weight: 400; }
.q-title em { font-style: italic; color: var(--copper-solid); }
.q-sub { font-size: 1rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.65; }

/* TRIP TYPE */
.trip-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.trip-opt {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}
.trip-opt:hover { border-color: var(--copper-solid); }
.trip-opt.selected {
    border-color: var(--copper-solid);
    background: rgba(198, 139, 89, 0.05);
    box-shadow: inset 0 0 0 1px var(--copper-solid);
}
.trip-opt .t-icon{font-size:1.5rem;width:38px;text-align:center;flex-shrink:0;}
/* .trip-opt .t-body{} */
.trip-opt .t-name { font-size: 1.05rem; font-weight: 600; color: var(--deep-forest); }
.trip-opt .t-desc { font-size: 0.82rem; color: var(--muted); margin-top: 3px; }
.trip-opt .t-check { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid #eaeaea; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.trip-opt.selected .t-check { background: var(--copper-solid); border-color: var(--copper-solid); }
.trip-opt.selected .t-check::after { content: '✓'; font-size: 0.8rem; color: #fff; font-weight: 700; }

/* DESTINATION */
.dest-wrap{position:relative;}
.dest-input {
    width: 100%;
    padding: 1.1rem 1.5rem 1.1rem 3.2rem;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--deep-forest);
    outline: none;
    transition: border 0.3s ease;
    background: #fff;
}
.dest-input:focus { border-color: var(--copper-solid); }
.dest-icon{position:absolute;left:0.9rem;top:50%;transform:translateY(-50%);font-size:1rem;pointer-events:none;}
.dest-drop{position:absolute;top:calc(100% + 4px);left:0;right:0;background:#fff;border:2px solid var(--green);border-radius:5px;max-height:240px;overflow-y:auto;z-index:50;box-shadow:0 8px 32px rgba(0,0,0,0.12);display:none;}
.dest-drop.open{display:block;}
.dest-drop::-webkit-scrollbar{width:5px;}
.dest-drop::-webkit-scrollbar-thumb{background:var(--border);border-radius:3px;}
.dest-opt{padding:0.7rem 1.1rem;font-size:0.86rem;color:var(--ink);cursor:pointer;display:flex;align-items:center;gap:0.6rem;border-bottom:1px solid #f5f0e8;transition:background 0.12s;}
.dest-opt:last-child{border-bottom:none;}
.dest-opt:hover,.dest-opt.focused{background:#f3f9f6;}
.dest-opt .d-flag{font-size:1.1rem;width:24px;text-align:center;flex-shrink:0;}
.dest-opt .d-name{flex:1;}
.dest-opt .d-cat{font-size:0.68rem;color:var(--muted);letter-spacing:0.05em;}
.dest-selected{margin-top:0.8rem;display:none;align-items:center;gap:0.6rem;background:#f3f9f6;border:1.5px solid rgba(30,77,59,0.2);border-radius:4px;padding:0.65rem 1rem;font-size:0.85rem;color:var(--green);font-weight:600;}
.dest-selected.show{display:flex;}
.dest-selected .ds-flag{font-size:1.2rem;}
.dest-clear{margin-left:auto;background:none;border:none;cursor:pointer;color:var(--muted);font-size:1.1rem;line-height:1;padding:0;}
.dest-note{margin-top:0.9rem;font-size:0.76rem;color:var(--muted);background:rgba(181,146,74,0.08);border-left:2.5px solid var(--gold);padding:0.65rem 0.9rem;border-radius:2px;line-height:1.6;}
.no-results{padding:1.1rem;font-size:0.84rem;color:var(--muted);text-align:center;}

/* DATES */
.dates-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.fl{display:flex;flex-direction:column;gap:0.4rem;}
.fl label { font-size: 0.85rem; letter-spacing: 0.05em; font-weight: 600; color: var(--deep-forest); }
.fl input, .fl select {
    padding: 1rem 1.2rem;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--deep-forest);
    background: #fff;
    outline: none;
    transition: border 0.3s ease;
    width: 100%;
}
.fl input:focus, .fl select:focus { border-color: var(--copper-solid); }
.dur-badge{margin-top:1rem;display:none;align-items:center;gap:7px;background:#f3f9f6;border:1.5px solid rgba(30,77,59,0.2);padding:0.55rem 1rem;border-radius:4px;font-size:0.8rem;color:var(--green);font-weight:600;}
.dur-badge.show{display:flex;}

/* TRAVELLERS */
.trv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid #eaeaea;
    background: transparent;
    margin-bottom: 0;
}
.trv-info .trv-type { font-size: 1.05rem; font-weight: 600; color: var(--deep-forest); }
.trv-info .trv-age { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.trv-ctrl { display: flex; align-items: center; gap: 15px; }
.tc-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--deep-forest);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tc-btn:hover { border-color: var(--copper-solid); color: var(--copper-solid); }
.tc-num { min-width: 30px; text-align: center; font-size: 1.2rem; font-weight: 600; color: var(--deep-forest); }

/* Age rows */
.age-section{margin-top:0.4rem;margin-bottom:0.7rem;padding:0.9rem 1.2rem;background:var(--alt);border-radius:5px;display:none;}
.age-section.show{display:block;}
.age-section-label{font-size:0.7rem;letter-spacing:0.1em;text-transform:uppercase;font-weight:600;color:var(--muted);margin-bottom:0.7rem;}
.age-pills{display:flex;flex-wrap:wrap;gap:0.5rem;}
.age-pill{display:flex;flex-direction:column;align-items:center;gap:3px;}
.age-pill span{font-size:0.65rem;font-weight:700;color:var(--green);letter-spacing:0.05em;text-transform:uppercase;}
.age-pill select{padding:0.45rem 0.7rem;border:2px solid var(--border);border-radius:4px;font-family:'Poppins',sans-serif;font-size:0.82rem;color:var(--ink);background:#fff;outline:none;cursor:pointer;}
.age-pill select:focus{border-color:var(--green);}

/* RESIDENCY */
.yn-row{display:flex;gap:0.7rem;}
.yn-btn {
    flex: 1;
    padding: 1.1rem 1rem;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--deep-forest);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.yn-btn:hover { border-color: var(--copper-solid); }
.yn-btn.selected { border-color: var(--copper-solid); background: rgba(198, 139, 89, 0.05); color: var(--deep-forest); box-shadow: inset 0 0 0 1px var(--copper-solid); }
.info-box{margin-top:1rem;padding:0.75rem 1rem;border-radius:4px;font-size:0.78rem;line-height:1.6;display:none;}
.info-box.show{display:block;}
.info-box.warn{background:rgba(192,57,43,0.06);border-left:2.5px solid #c0392b;color:#8B2218;}
.info-box.ok{background:#f3f9f6;border-left:2.5px solid var(--green);color:var(--green);}

/* MEDICAL */
.med-intro { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 2rem; }
.med-list{display:flex;flex-direction:column;gap:0.45rem;}
.med-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    user-select: none;
}
.med-item:hover { border-color: var(--copper-solid); }
.med-item.checked { border-color: var(--copper-solid); background: rgba(198, 139, 89, 0.05); }
.med-item.none-item.checked { border-color: var(--copper-solid); background: rgba(198, 139, 89, 0.05); }
.med-box {
    width: 22px;
    height: 22px;
    border: 1.5px solid #eaeaea;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.med-item.checked .med-box { background: var(--copper-solid); border-color: var(--copper-solid); }
.med-item.none-item.checked .med-box { background: var(--copper-solid); border-color: var(--copper-solid); }
.med-tick{opacity:0;font-size:0.7rem;color:#fff;font-weight:700;}
.med-item.checked .med-tick{opacity:1;}
.med-lbl{font-size:0.85rem;font-weight:500;color:var(--ink);}
.med-warn{margin-top:0.9rem;padding:0.75rem 1rem;background:rgba(181,146,74,0.09);border-left:2.5px solid var(--gold);border-radius:3px;font-size:0.78rem;color:#7a6030;line-height:1.6;display:none;}
.med-warn.show{display:block;}

/* DETAILS */
.det-grid{display:flex;flex-direction:column;gap:0.85rem;}
.det-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.priv { font-size: 0.8rem; color: #888; margin-top: 1.5rem; line-height: 1.6; }
.priv a { color: var(--copper-solid); font-weight: 600; text-decoration: none; }

/* BUTTONS */
.btn-row { display: flex; align-items: center; justify-content: space-between; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid #eaeaea; }
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border: 1px solid var(--copper-solid);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-forest);
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-back:hover { background: rgba(198, 139, 89, 0.05); }
.btn-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(180deg, #d89f72 0%, #be7c46 40%, #a35d26 100%);
    border: 1px solid #824719;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 4px 0 #733f15, 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}
.btn-next:hover { transform: translateY(-2px); box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 6px 0 #733f15, 0 12px 20px rgba(0, 0, 0, 0.25); background: linear-gradient(180deg, #e3ad83 0%, #c98954 40%, #ad6831 100%); }
.btn-next:active { transform: translateY(4px); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4), 0 0px 0 #733f15, 0 2px 5px rgba(0, 0, 0, 0.2); }
.btn-submit {
    background: linear-gradient(135deg, #e491a9 0%, #c4768d 100%) !important;
    border: 1px solid #ffccd9 !important;
    box-shadow: 0 10px 25px rgba(196, 118, 141, 0.35), inset 0 1.5px 0 rgba(255, 255, 255, 0.5) !important;
    color: #3d1a0a !important;
}
.btn-submit:hover { background: linear-gradient(135deg, #eca2b9 0%, #cc8198 100%) !important; color: #fff !important; }

/* SUCCESS */
#success-wrap{display:none;}
.success-card{background:var(--card);border-radius:6px;padding:2.8rem 2.6rem;box-shadow:0 4px 32px rgba(0,0,0,0.09);text-align:center;}
.s-icon{font-size:2.8rem;margin-bottom:1rem;}
.s-title{font-family:'Playfair Display',serif;font-size:1.9rem;color:var(--ink);margin-bottom:0.5rem;}
.s-title em{font-style:italic;color:var(--green);}
.s-sub{font-size:0.85rem;color:var(--muted);line-height:1.7;margin-bottom:1.8rem;}
.sum-box{background:var(--alt);border:1px solid var(--border);border-radius:5px;padding:1.3rem 1.5rem;text-align:left;margin-bottom:1.8rem;}
.sum-box h4{font-size:0.67rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);margin-bottom:0.9rem;font-weight:600;}
.sum-row{display:flex;justify-content:space-between;padding:0.45rem 0;border-bottom:1px solid rgba(0,0,0,0.06);font-size:0.83rem;}
.sum-row:last-child{border-bottom:none;}
.sum-k{color:var(--muted);}
.sum-v{color:var(--ink);font-weight:600;}
.s-btns{display:flex;gap:0.7rem;justify-content:center;flex-wrap:wrap;}
.btn-g{display:inline-flex;align-items:center;gap:7px;padding:0.82rem 1.8rem;background:var(--green);border:none;border-radius:4px;font-family:'Poppins',sans-serif;font-size:0.8rem;font-weight:600;color:#fff;cursor:pointer;text-transform:uppercase;letter-spacing:0.06em;text-decoration:none;}
.btn-g:hover{background:var(--green-lt);}
.btn-wa{display:inline-flex;align-items:center;gap:7px;padding:0.82rem 1.8rem;background:#25D366;border:none;border-radius:4px;font-family:'Poppins',sans-serif;font-size:0.8rem;font-weight:600;color:#fff;cursor:pointer;text-transform:uppercase;letter-spacing:0.06em;text-decoration:none;}
.btn-wa:hover{opacity:0.88;}

/* FOOTER */
footer{background:var(--green);padding:2rem 3rem;text-align:center;margin-top:4rem;}
footer .fl-logo{font-family:'Playfair Display',serif;font-size:1.1rem;color:#fff;text-decoration:none;display:block;margin-bottom:0.5rem;}
footer .fl-logo span{color:var(--gold-lt);}
footer p{font-size:0.74rem;color:rgba(255,255,255,0.45);line-height:1.75;}
footer p a{color:var(--gold-lt);text-decoration:none;}

@media(max-width:600px){
  nav{padding:0 1.2rem;}
  .banner{padding:2rem 1.5rem 2.8rem;}
  .step-dots{padding:0.8rem 1rem 1rem;gap:0;overflow-x:auto;}
  .dot-line{width:18px;}
  .shell{padding:1.5rem 0.9rem 4rem;}
  .card{padding:1.7rem 1.4rem;}
  .dates-row,.det-row{grid-template-columns:1fr;}
  .yn-row{flex-direction:column;}
  .btn-row{flex-direction:column-reverse;gap:0.6rem;}
  .btn-back,.btn-next{width:100%;justify-content:center;}
}


/* --- GLOBAL LUXURY FOOTER --- */
.luxury-footer {
    background-color: #0a110d;
    /* An ultra-dark, almost black variant of Deep Forest */
    color: #ffffff;
    padding-top: 60px;
    font-family: var(--font-body);
}

/* Base Tier Styling (Creates the horizontal lines) */
.footer-tier {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Elegant, thin dividers */
}

/* Remove bottom border from the very last tier */
.footer-tier:last-child {
    border-bottom: none;
    padding-bottom: 60px;
}

/* --- TIER 1: BRAND --- */
.footer-brand {
    padding-top: 0;
}

/* --- TIER 2: NAVIGATION --- */
.nav-cluster {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    /* Vertical / Horizontal gap */
}

.primary-links {
    margin-bottom: 40px;
}

.primary-links a,
.secondary-links a {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.primary-links a:hover,
.secondary-links a:hover {
    color: var(--copper-solid);
}

.nav-cluster-label {
    width: 100%;
    font-size: 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.secondary-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

/* --- TIER 3: CONTACT (3-COLUMN LAYOUT) --- */
.contact-block {
    text-align: center;
    padding: 20px 15px;
}

/* Vertical separator lines for desktop */
@media (min-width: 992px) {

    .left-block,
    .center-block {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.contact-label {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* Reduced size from 28px to 22px to elegantly fit 3 columns */
.contact-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--copper-solid);
}

/* Specific requirement: Numbers must use font-body for pure readability */
.contact-value.use-body-font {
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Styling for the new Address Block */
.address-text {
    font-size: 24px;
    /* Slightly larger to act as a visual anchor */
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .contact-block {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 0;
    }

    .right-block {
        border-bottom: none;
        /* Last item doesn't need a border */
    }

    .address-text {
        font-size: 18px;
    }
}

/* --- TIER 4: LEGAL & SOCIAL --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--copper-solid);
    border-color: var(--copper-solid);
}

.legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.legal-links a,
.legal-links .copyright {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-cluster {
        gap: 15px;
        flex-direction: column;
    }

    .left-block {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-value {
        font-size: 22px;
    }

    .legal-links {
        flex-direction: column;
        gap: 15px;
    }
}





/* --- FOOTER AMBIENT BACKGROUND --- */
.luxury-footer {
    position: relative;
    overflow: hidden;
    /* Ensure your footer has a dark background so the copper lines pop */
    background-color: #0a110d;
}

.footer-bg-svgs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through to the links */
    z-index: 1;
}

.footer-bg-svgs .ambient-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Stretches the SVG to fill the entire footer height */
    color: var(--copper-solid);
}

/* The River Animation Styling */
.river-line {
    /* Prevents the SVG from looking pixelated when stretched */
    vector-effect: non-scaling-stroke;
}

/* Parallax Layering: Opacities and Speeds */
.back-wave {
    opacity: 0.05;
    animation: river-drift 20s linear infinite;
}

.mid-wave {
    opacity: 0.1;
    animation: river-drift 15s linear infinite reverse;
    /* Drifts opposite direction */
}

.front-wave {
    opacity: 0.12;
    animation: river-drift 8s linear infinite;
}

/* --- KEYFRAMES --- */
@keyframes river-drift {
    0% {
        transform: translateX(-10%);
    }

    50% {
        transform: translateX(5%);
    }

    /* Drifts right */
    100% {
        transform: translateX(-10%);
    }

    /* Drifts back left */
}

/* Optional: Keep it clean on mobile */
@media (max-width: 768px) {
    .footer-bg-svgs {
        opacity: 0.5;
        /* Dim them further on small screens so text remains legible */
    }
}

/* ── FOOTER ── */
footer {
    background: rgba(12, 30, 22, 1);
    padding: 1.8rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer .f-logo {
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: block;
    margin-bottom: 0.4rem;
}

footer .f-logo span {
    color: var(--gold-lt);
}

footer p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.7;
}