*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: var(--border);
    --bg1: #F8F5EF;
    --green: var(--deep-forest);
    --green-lt: #2rgb(128, 128, 128) --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(--bg1);
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

/* --- 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;
    }
}

.page {
    max-width: 1200px;
    margin: 80px auto 100px;
    /* Large top margin to clear the fixed header */
    padding: 5rem 4.5rem;
    background: var(--alt);
    border-radius: 24px;
    /* Multi-layered luxury shadow */
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 5;

    box-shadow: unset;
    background: unset;

}

/* PAGE HEADER */
.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
    padding-top: 100px;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
}

.page-header h1 span {
    color: var(--green);
    font-family: var(--font-heading);
}

.page-header p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* SECTION */
.tc-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 80px;
}

.tc-section:last-of-type {
    border-bottom: none;
}

.sec-num-title {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.4rem;
    font-family: var(--font-heading);
}

.sec-num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--copper-solid);
}

.sec-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
}

/* SUB */
.sub {
    margin-bottom: 1.4rem;
}

.sub:last-child {
    margin-bottom: 0;
}

.sub-title {
    font-size: 1.0rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--green);
    margin-bottom: 0.5rem;
}

p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.78;
}

.sub-sub {
    color: var(--ink);
    display: block;
    font-family: var(--font-heading);
}

/* REFUND TABLE */
.refund-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.refund-table thead tr {
    background: var(--green);
}

.refund-table thead {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.refund-table thead th {
    padding: 0.8rem 1.1rem;
    text-align: left;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.refund-table tbody tr:nth-child(even) {
    background: var(--alt);
}

.refund-table tbody tr:nth-child(odd) {
    background: #fff;
}

.refund-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.refund-table tbody tr:last-child {
    border-bottom: none;
}

.refund-table td {
    padding: 0.8rem 1.1rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.refund-table td:first-child {
    font-weight: 600;
    color: var(--ink);
}

.pill {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

.pill-p {
    background: rgba(30, 77, 59, 0.1);
    color: var(--green);
}

.pill-h {
    background: rgba(181, 146, 74, 0.12);
    color: var(--gold);
}

.pill-n {
    background: rgba(192, 57, 43, 0.08);
    color: #c0392b;
}

/* HIGHLIGHT */
.hi {
    border-radius: 3px;
    padding: 0.9rem 1.1rem;
    margin-top: 0.9rem;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--muted);
}

.hi.green {
    background: #eef6f2;
    border-left: 3px solid var(--green);
}

.hi.gold {
    background: rgba(181, 146, 74, 0.09);
    border-left: 3px solid var(--gold);
    color: #7a6030;
}

.hi.red {
    background: rgba(192, 57, 43, 0.06);
    border-left: 3px solid #c0392b;
    color: #8B2218;
}

.hi strong {
    color: var(--ink);
}

/* PAY CHIPS */
.pay-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.pay-chip {
    padding: 0.45rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    background: #fff;
}

/* WARNING LIST */
.warn-list{list-style:none;margin-top:0.8rem;display:flex;flex-direction:column;gap:0.45rem;}
.warn-list li{font-size:0.92rem;color:var(--muted);display:flex;align-items:flex-start;gap:0.65rem;line-height:1.65;}
.warn-list li::before{content:'⚠';font-size:0.78rem;margin-top:3px;flex-shrink:0;}
.warn-list li strong{color:var(--ink);}
/* CHECK LIST */
.check-list{list-style:none;margin-top:0.8rem;display:flex;flex-direction:column;gap:0.45rem;margin-top:0.9rem;}
.check-list li{font-size:0.92rem;color:var(--muted);display:flex;align-items:flex-start;gap:0.65rem;line-height:1.65;}
.check-list li::before{content:'✓';color:var(--green);font-weight:700;font-size:0.85rem;margin-top:2px;flex-shrink:0;}
.check-list li strong{color:var(--ink);}

/* INSURANCE LIST */
.ins-list {
    list-style: none;
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ins-list li {
    font-size: 0.92rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ins-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 0.85rem;
}

/* STEPS */
.steps {
    list-style: none;
    margin-top: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}

.sc {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

/* CONTACT STRIP */
.contact-strip {
    background: var(--green);
    border-radius: 4px;
    padding: 1.6rem 2rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cs-l p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.cs-l strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.2rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.cs-r {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: right;
}

.cs-r a {
    font-size: 0.82rem;
    color: var(--gold-lt);
    font-weight: 600;
    text-decoration: none;
}

.cs-r a:hover {
    color: #fff;
}

.cs-r a i {
    margin-right: 8px;
    vertical-align: middle;
}

/* ICON ACCENTS */
.sec-icon-accent {
    color: var(--copper-solid);
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .page {
        margin: 140px 15px 60px;
        padding: 3.5rem 1.5rem;
        border-radius: 16px;
    }

    .page-header {
        padding-top: 0;
    }
}

/* --- 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;
}