
        /* ============================================
           CSS VARIABLES & RESET
           ============================================ */
        :root {
            --primary: #C41E3A;
            --secondary: #E63950;
            --primary-gradient: linear-gradient(135deg, #C41E3A 0%, #E63950 100%);
            --text-color: #1A1A1A;
            --white: #4fb9af;
            --light-bg: #FAFAFA;
            --section-bg: #F5F5F5;
            --border-color: #E8E8E8;
            --hover-primary: #D32F2F;
            --hover-secondary: #F25584;
            --font: 'Roboto', sans-serif;
            --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.10);
            --radius: 16px;
            --radius-sm: 12px;
            --transition: 280ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            color: var(--text-color);
            background: var(--white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            display: block;
        }
        ul {
            list-style: none;
        }
        button {
            cursor: pointer;
            font-family: var(--font);
            border: none;
            background: none;
        }
        input,
        select,
        textarea {
            font-family: var(--font);
            outline: none;
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============================================
   HEADER / NAVBAR with integrated language dropdown
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-logo img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}
/* Navigation links */
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}
/* Right section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* Language dropdown */
.lang-dropdown {
    position: relative;
}
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    transition: background 0.3s ease;
}
.lang-toggle:hover {
    background: #f0f0f0;
}
.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: none;
}
.lang-menu.show {
    display: block;
}
.lang-menu button {
    width: 100%;
    padding: 10px 16px;
    text-align: left;
    background: none;
    font-size: 13px;
    color: var(--text-color);
    transition: background 0.3s ease;
}
.lang-menu button:hover,
.lang-menu button.active {
    background: var(--light-bg);
    color: var(--primary);
}

/* Global alerts */
.global-alert {
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin: 20px 0;
}
.global-alert.success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

/* User dropdown */
.user-dropdown { position: relative; }
.user-toggle {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-toggle:hover { color: var(--primary); }
.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    min-width: 180px;
    overflow: hidden;
    display: none;
    z-index: 999;
}
.user-menu.show { display: block; }
.user-menu a,
.user-menu button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}
.user-menu a:hover,
.user-menu button:hover {
    background: var(--light-bg);
    color: var(--primary);
}
.user-menu form { margin: 0; }
.user-menu .logout-form button { width: 100%; }
.user-menu i {
    width: 20px;
    margin-right: 8px;
    text-align: center;
}
/* Icons */
.nav-icons {
    display: flex;
    gap: 16px;
}
.nav-icons a {
    position: relative;
    font-size: 18px;
    color: var(--text-color);
    transition: color 0.3s ease;
}
.nav-icons a:hover {
    color: var(--primary);
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}
/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}
.mobile-menu.open {
    display: block;
}
.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}
.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 40px 0 20px 0;
}
.mobile-nav-links li {
    margin-bottom: 0;
}
.mobile-nav-links a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid #eee;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary);
}
.mobile-lang-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.mobile-lang-selector button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: var(--white);
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
}
.mobile-lang-selector button:hover,
.mobile-lang-selector button.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.mobile-quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-quick-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
}
.mobile-quick-links a:hover {
    background: var(--light-bg);
}

        /* ============================================
           HEADER RESPONSIVE
           ============================================ */
        @media (max-width:768px){
            .nav-links{ display:none; }
            .lang-dropdown{ display:none; }
            .nav-icons{ display:none; }
            .hamburger{ display:flex; }
        }

        /* ============================================
           PAGE SYSTEM
           ============================================ */
        .page {
            display: none;
            animation: fadeUp 0.4s ease;
        }
        .page.active {
            display: block;
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(18px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============================================
           HERO
           ============================================ */
        /* Drop-in note: these tokens are namespaced to
           .hero so they won't clash with your site's
           existing --primary-gradient / --light-bg vars. */
        .hero{
            --hero-marble:#EDE6D6;
            --hero-marble-deep:#E3D9C4;
            --hero-card:#F8F4E9;
            --hero-ink:#221F1A;
            --hero-ink-soft:#5B564C;
            --hero-fresco:#A2321F;
            --hero-fresco-deep:#7E2418;
            --hero-verdigris:#5C6B57;
            --hero-gold:#B4924C;
            --hero-line: rgba(34,31,26,0.14);
        }

        .hero{
            position:relative;
            padding:32px 0 40px;
            background:var(--hero-marble);
            overflow:hidden;
        }
        /* faint architectural line motif in the backdrop */
        .hero::before{
            content:"";
            position:absolute;
            top:-120px; right:-160px;
            width:520px; height:520px;
            border:1px solid var(--hero-line);
            border-radius:50%;
            pointer-events:none;
        }
        .hero::after{
            content:"";
            position:absolute;
            top:60px; right:-40px;
            width:340px; height:340px;
            border:1px solid var(--hero-line);
            border-radius:50%;
            pointer-events:none;
        }

        .hero-grid{
            position:relative;
            display:grid;
            grid-template-columns:1fr 1.02fr;
            gap:56px;
            align-items:center;
        }

        /* ---------- content column ---------- */
        .hero-eyebrow{
            display:inline-flex;
            align-items:center;
            gap:10px;
            text-transform:uppercase;
            letter-spacing:.2em;
            font-size:12px;
            font-weight:600;
            color:var(--hero-fresco);
            margin-bottom:22px;
            opacity:0;
            animation:hero-rise .7s ease forwards;
        }
        .hero-eyebrow .dot{
            width:6px; height:6px; border-radius:50%;
            background:var(--hero-fresco);
        }

        .hero-content h1{
            font-family:'Fraunces', serif;
            font-weight:500;
            font-size:clamp(38px, 4.6vw, 62px);
            line-height:1.06;
            letter-spacing:-.01em;
            margin:0 0 22px;
            opacity:0;
            animation:hero-rise .8s ease .08s forwards;
        }
        .hero-content h1 em{
            font-style:italic;
            font-weight:400;
            color:var(--hero-fresco);
        }

        .hero-content p{
            font-size:17.5px;
            line-height:1.65;
            color:var(--hero-ink-soft);
            max-width:460px;
            margin:0 0 34px;
            opacity:0;
            animation:hero-rise .8s ease .16s forwards;
        }

        .hero-actions{
            display:flex;
            align-items:center;
            gap:26px;
            flex-wrap:wrap;
            margin-bottom:38px;
            opacity:0;
            animation:hero-rise .8s ease .24s forwards;
        }

        .hero-actions .btn-primary{
            display:inline-flex;
            align-items:center;
            gap:12px;
            background:var(--hero-fresco);
            color:#F8F4E9;
            text-decoration:none;
            padding:16px 30px;
            font-size:13.5px;
            font-weight:600;
            text-transform:uppercase;
            letter-spacing:.12em;
            border-radius:3px;
            border:1px solid var(--hero-fresco);
            transition:background .22s ease, transform .22s ease, box-shadow .22s ease;
            box-shadow:0 10px 24px -12px rgba(126,36,24,.55);
        }
        .hero-actions .btn-primary i{ font-size:12px; transition:transform .22s ease; }
        .hero-actions .btn-primary:hover{
            background:var(--hero-fresco-deep);
            transform:translateY(-2px);
        }
        .hero-actions .btn-primary:hover i{ transform:translateX(3px); }
        .hero-actions .btn-primary:focus-visible{ outline:2px solid var(--hero-gold); outline-offset:3px; }

        .link-secondary{
            display:inline-flex;
            align-items:center;
            gap:10px;
            color:var(--hero-ink);
            text-decoration:none;
            font-size:14px;
            font-weight:600;
        }
        .link-secondary .play{
            width:34px; height:34px;
            border-radius:50%;
            border:1px solid var(--hero-ink);
            display:flex; align-items:center; justify-content:center;
            font-size:11px;
            transition:background .2s ease, color .2s ease;
        }
        .link-secondary:hover .play{ background:var(--hero-ink); color:var(--hero-marble); }

        /* trust row */
        .hero-trust{
            display:flex;
            align-items:center;
            gap:16px;
            margin-bottom:26px;
            opacity:0;
            animation:hero-rise .8s ease .3s forwards;
        }
        .avatar-stack{ display:flex; }
        .avatar-stack img{
            width:38px; height:38px;
            border-radius:50%;
            object-fit:cover;
            border:2px solid var(--hero-marble);
            margin-left:-10px;
        }
        .avatar-stack img:first-child{ margin-left:0; }
        .hero-trust-text{ font-size:13.5px; color:var(--hero-ink-soft); line-height:1.4; }
        .hero-trust-text strong{ color:var(--hero-ink); font-weight:700; }
        .hero-trust-text .stars{ color:var(--hero-gold); letter-spacing:1px; margin-right:4px; }

        /* destination chips */
        .hero-chips{
            display:flex;
            flex-wrap:wrap;
            gap:10px;
            opacity:0;
            animation:hero-rise .8s ease .36s forwards;
        }
        .hero-chips span{
            font-size:13px;
            font-weight:600;
            color:var(--hero-ink);
            padding:9px 18px;
            border-radius:999px;
            border:1px solid var(--hero-line);
            background:var(--hero-card);
        }

        @keyframes hero-rise{
            from{ opacity:0; transform:translateY(14px); }
            to{ opacity:1; transform:translateY(0); }
        }

        /* ---------- image column ---------- */
        .hero-image-wrap{
            position:relative;
            opacity:0;
            animation:hero-rise .9s ease .16s forwards;
        }
        .hero-image{
            position:relative;
            border-radius:4px;
            overflow:hidden;
            aspect-ratio:4/3.2;
        }
        .hero-image img{
            width:100%; height:100%; object-fit:cover;
        }
        .hero-image::after{
            content:"";
            position:absolute; inset:0;
            border:1px solid rgba(248,244,233,.4);
            outline:16px solid var(--hero-marble);
            outline-offset:-16px;
            pointer-events:none;
        }
        .hero-image::before{
            content:"";
            position:absolute; inset:0;
            background:linear-gradient(190deg, rgba(20,17,13,0) 55%, rgba(20,17,13,.38) 100%);
            z-index:1;
        }

        /* floating live-availability pill */
        .hero-pill{
            position:absolute;
            top:34px; left:-18px;
            display:flex;
            align-items:center;
            gap:9px;
            background:var(--hero-card);
            border:1px solid var(--hero-line);
            border-radius:999px;
            padding:10px 18px 10px 14px;
            box-shadow:0 16px 32px -16px rgba(34,31,26,.35);
            font-size:12.5px;
            font-weight:600;
            color:var(--hero-ink);
            animation:hero-float 4.5s ease-in-out infinite;
        }
        .hero-pill .pulse{
            width:8px; height:8px;
            border-radius:50%;
            background:var(--hero-verdigris);
            position:relative;
        }
        .hero-pill .pulse::after{
            content:"";
            position:absolute; inset:-4px;
            border-radius:50%;
            border:1.5px solid var(--hero-verdigris);
            animation:pulse-ring 2s ease-out infinite;
        }
        @keyframes pulse-ring{
            0%{ transform:scale(.6); opacity:.9; }
            100%{ transform:scale(1.9); opacity:0; }
        }

        /* floating rating medallion */
        .hero-medallion{
            position:absolute;
            bottom:-26px; right:-14px;
            width:132px; height:132px;
            border-radius:50%;
            background:var(--hero-ink);
            color:var(--hero-marble);
            display:flex;
            flex-direction:column;
            align-items:center;
            justify-content:center;
            text-align:center;
            box-shadow:0 20px 40px -16px rgba(20,17,13,.5);
            animation:hero-float 4.5s ease-in-out .3s infinite;
            z-index:3;
        }
        .hero-medallion::before{
            content:"";
            position:absolute; inset:8px;
            border-radius:50%;
            border:1px dashed var(--hero-gold);
            opacity:.6;
        }
        .hero-medallion .num{
            font-family:'Fraunces', serif;
            font-size:28px;
            font-weight:500;
            color:#E7C98E;
            line-height:1;
        }
        .hero-medallion .stars{ color:var(--hero-gold); font-size:10px; margin:5px 0 3px; letter-spacing:1px; }
        .hero-medallion .label{
            font-size:9.5px;
            text-transform:uppercase;
            letter-spacing:.08em;
            color:#C9C1AE;
        }

        /* secondary floating snapshot */
        .hero-snapshot{
            position:absolute;
            bottom:-46px; left:-38px;
            width:150px;
            height:190px;
            padding:8px 8px 26px;
            background:var(--hero-card);
            box-shadow:0 22px 40px -18px rgba(20,17,13,.45);
            transform:rotate(-6deg);
            z-index:2;
            animation:hero-float 5s ease-in-out .5s infinite;
        }
        .hero-snapshot img{
            width:100%; height:100%;
            object-fit:cover;
        }
        .hero-snapshot .cap{
            position:absolute;
            bottom:6px; left:0; right:0;
            text-align:center;
            font-family:'Fraunces', serif;
            font-style:italic;
            font-size:11.5px;
            color:var(--hero-ink-soft);
        }

        @keyframes hero-float{
            0%, 100%{ transform:translateY(0); }
            50%{ transform:translateY(-8px); }
        }

        /* =============================================
           HERO RESPONSIVE
           ============================================= */
        @media (max-width:980px){
            .hero{ padding:24px 0 50px; }
            .hero-grid{ grid-template-columns:1fr; gap:52px; }
            .hero-content p{ max-width:560px; }
            .hero-image{ aspect-ratio:16/9; max-width:560px; margin:0 auto; }
            .hero-image-wrap{ max-width:560px; margin:0 auto; }
            .hero-medallion{ width:112px; height:112px; bottom:-22px; right:6px; }
            .hero-pill{ top:20px; left:6px; }
            .hero-snapshot{ width:120px; height:154px; bottom:-36px; left:6px; }
            .hero::before, .hero::after{ opacity:.5; }
        }

        @media (max-width:600px){
            .hero{ padding:20px 0 60px; }
            .hero-content h1{ font-size:clamp(32px,9vw,42px); }
            .hero-content p{ font-size:16px; }
            .hero-actions{ gap:18px; }
            .hero-trust{ flex-wrap:wrap; }
            .hero-medallion{ width:92px; height:92px; right:0; bottom:-20px; }
            .hero-medallion .num{ font-size:20px; }
            .hero-pill{ font-size:11.5px; padding:8px 14px 8px 12px; left:0; }
            .hero-chips span{ font-size:12.5px; padding:8px 14px; }
            .hero-snapshot{ width:96px; height:126px; bottom:-30px; left:0; padding:5px 5px 18px; }
            .hero-snapshot .cap{ font-size:10px; }
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: var(--primary-gradient);
            color: var(--white);
            font-weight: 600;
            font-size: 16px;
            border-radius: var(--radius-sm);
            box-shadow: 0 6px 24px rgba(191, 31, 64, 0.30);
            transition: var(--transition);
            border: none;
        }
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 10px 32px rgba(191, 31, 64, 0.35);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            background: var(--white);
            color: var(--primary);
            font-weight: 600;
            font-size: 16px;
            border-radius: var(--radius-sm);
            border: 2px solid var(--primary);
            transition: var(--transition);
        }
        .btn-secondary:hover {
            background: var(--primary-gradient);
            color: var(--white);
            border-color: transparent;
            transform: translateY(-2px) scale(1.02);
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--primary-gradient);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-bottom: 30px;
            margin-top: 20px;
        }
        .back-button:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 20px rgba(191, 31, 64, 0.30);
        }

        .btn-sm {
            padding: 10px 24px;
            font-size: 14px;
        }

        /* ============================================
           SECTION TITLES
           ============================================ */
        .section-title {
            font-size: 34px;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 8px;
        }
        .section-sub {
            font-size: 16px;
            color: #777;
            margin-bottom: 40px;
        }

        /* ============================================
           TOUR CARDS (improved)
           ============================================ */
        .tour-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 32px;
            padding: 20px 0 40px;
            align-items: stretch;
        }

        .tour-card {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.03);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .tour-card:hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: var(--shadow-lg);
        }
        .tour-card .img-wrap {
            height: 220px;
            background: var(--section-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: var(--primary);
            position: relative;
        }
        .tour-card .img-wrap .badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--secondary);
            color: var(--white);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }
        .tour-card .img-wrap .rating {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: rgba(0, 0, 0, 0.7);
            color: var(--white);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .tour-card .img-wrap .rating i {
            color: #ffc107;
        }
        .tour-card .info {
            padding: 20px 22px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .tour-card .info h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .tour-card .info .category {
            font-size: 13px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .tour-card .info .meta {
            display: flex;
            gap: 16px;
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }
        .tour-card .info .meta i {
            color: var(--primary);
            margin-right: 4px;
        }
        .tour-card .info .price {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }
        .tour-card .info .price .old {
            font-size: 15px;
            color: #aaa;
            text-decoration: line-through;
            margin-left: 10px;
            font-weight: 400;
        }
        .tour-card .info .actions {
            margin-top: auto;
            display: flex;
            gap: 12px;
        }
        .tour-card .info .actions button {
            flex: 1;
            padding: 10px 0;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
            min-width: 0;
            white-space: nowrap;
        }
        .tour-card .info .actions .book-now {
            background: var(--primary-gradient);
            color: var(--white);
        }
        .tour-card .info .actions .book-now:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(191, 31, 64, 0.30);
        }
        .tour-card .info .actions .wishlist {
            background: var(--light-bg);
            color: var(--text-color);
            flex: 0 0 48px;
            font-size: 18px;
        }
        .tour-card .info .actions .wishlist:hover {
            color: var(--primary);
            background: #fce4e8;
        }

        /* ============================================
           CATEGORY CARDS
           ============================================ */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 24px;
            padding: 20px 0 40px;
        }
        .category-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: var(--transition);
            cursor: pointer;
        }
        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
        }
        .category-card .icon {
            font-size: 40px;
            margin-bottom: 12px;
            color: var(--primary);
        }
        .category-card .icon img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 50%;
        }
        .category-card h4 {
            font-weight: 600;
            font-size: 16px;
        }
        .category-card p {
            font-size: 13px;
            color: #888;
        }

        /* ============================================
           SHOP HEADER
           ============================================ */
        .shop-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            padding: 32px 0 8px;
        }
        .shop-header .filters {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .shop-header .filters select {
            padding: 10px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--white);
            font-weight: 500;
            font-size: 14px;
            color: var(--text-color);
        }

        /* ============================================
           TOUR DETAIL
           ============================================ */
        .tour-detail-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding: 40px 0;
        }
        .tour-detail-wrap .gallery {
            border-radius: var(--radius);
            background: var(--section-bg);
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            color: var(--primary);
        }
        .tour-detail-wrap .detail-info h2 {
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .tour-detail-wrap .detail-info .detail-meta {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            color: #666;
            margin-bottom: 16px;
            font-size: 15px;
        }
        .tour-detail-wrap .detail-info .detail-meta i {
            color: var(--primary);
            margin-right: 6px;
        }
        .tour-detail-wrap .detail-info .detail-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }
        .tour-detail-wrap .detail-info .detail-rating .stars {
            color: #ffc107;
        }
        .tour-detail-wrap .detail-info .detail-rating .reviews {
            color: #888;
            font-size: 14px;
        }
        .tour-detail-wrap .detail-info .detail-price {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            margin: 16px 0 20px;
        }
        .tour-detail-wrap .detail-info .detail-desc {
            color: #555;
            margin-bottom: 28px;
            line-height: 1.8;
        }
        .tour-detail-wrap .detail-info .booking-fields {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }
        .tour-detail-wrap .detail-info .booking-fields label {
            font-weight: 600;
            font-size: 14px;
            display: block;
            margin-bottom: 4px;
        }
        .tour-detail-wrap .detail-info .booking-fields input,
        .tour-detail-wrap .detail-info .booking-fields select {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            font-size: 15px;
            transition: var(--transition);
            background: var(--white);
        }
        .tour-detail-wrap .detail-info .booking-fields input:focus,
        .tour-detail-wrap .detail-info .booking-fields select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(191, 31, 64, 0.10);
        }
        .tour-detail-wrap .detail-info .booking-fields .full-width {
            grid-column: 1 / -1;
        }

        /* ============================================
           CART (modern, like getromantours)
           ============================================ */
        .cart-container {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            overflow: hidden;
            margin: 24px 0 32px;
        }

        .cart-header {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1.5fr 1.5fr 1fr 0.5fr;
            padding: 16px 24px;
            background: var(--light-bg);
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #888;
            border-bottom: 1px solid var(--border-color);
        }

        .cart-item-row {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1.5fr 1.5fr 1fr 0.5fr;
            padding: 20px 24px;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .cart-item-row:last-child {
            border-bottom: none;
        }
        .cart-item-row:hover {
            background: var(--light-bg);
        }

        .cart-item-row .item-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .cart-item-row .item-info .thumb {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-sm);
            background: var(--section-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            flex-shrink: 0;
            overflow: hidden;
        }
        .cart-item-row .item-info .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .cart-item-row .item-info .item-name {
            font-weight: 600;
            font-size: 15px;
        }
        .cart-item-row .item-info .item-details {
            font-size: 13px;
            color: #888;
            margin-top: 2px;
        }

        .cart-item-row .item-qty {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .cart-item-row .item-qty .qty-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-size: 13px;
            min-height: 32px;
        }
        .cart-item-row .item-qty .qty-controls {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .cart-item-row .item-qty button {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            background: var(--white);
            color: var(--text-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cart-item-row .item-qty button:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .cart-item-row .item-qty span {
            font-weight: 600;
            min-width: 30px;
            text-align: center;
        }
        .cart-item-row .item-qty .qty-row span:first-child {
            color: #888;
            min-width: auto;
        }

        .cart-item-row .item-price {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 14px;
            color: #555;
            text-align: left;
        }
        .cart-item-row .item-price > div {
            display: flex;
            align-items: center;
            min-height: 32px;
        }
        .cart-item-row .item-total {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            text-align: left;
        }

        .cart-item-row .item-remove {
            color: #ccc;
            font-size: 18px;
            transition: var(--transition);
            text-align: center;
        }
        .cart-item-row .item-remove:hover {
            color: var(--primary);
        }

        .cart-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            background: var(--light-bg);
            border-top: 1px solid var(--border-color);
            flex-wrap: wrap;
            gap: 16px;
        }
        .cart-footer .total-label {
            font-weight: 600;
            font-size: 18px;
        }
        .cart-footer .total-amount {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
        }
        .cart-footer .cart-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cart-empty {
            text-align: center;
            padding: 60px 24px;
        }
        .cart-empty i {
            font-size: 56px;
            color: #ddd;
            margin-bottom: 16px;
        }
        .cart-empty p {
            color: #888;
            margin-bottom: 20px;
        }

        /* ============================================
           CHECKOUT
           ============================================ */
        .checkout-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            padding: 32px 0;
        }
        .checkout-grid .form-group {
            margin-bottom: 20px;
        }
        .checkout-grid .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            font-size: 14px;
        }
        .checkout-grid .form-group input,
        .checkout-grid .form-group select,
        .checkout-grid .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            font-size: 15px;
            transition: var(--transition);
            background: var(--white);
            font-family: var(--font);
        }
        .checkout-grid .form-group input:focus,
        .checkout-grid .form-group select:focus,
        .checkout-grid .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(191, 31, 64, 0.10);
        }
        .checkout-grid .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }
        .checkout-grid .order-summary {
            background: var(--light-bg);
            padding: 32px;
            border-radius: var(--radius);
        }
        .checkout-grid .order-summary h3 {
            font-size: 22px;
            margin-bottom: 20px;
        }
        .checkout-grid .order-summary .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 15px;
        }
        .checkout-grid .order-summary .summary-item .sub {
            font-size: 13px;
            color: #888;
        }
        .checkout-grid .order-summary .summary-total {
            display: flex;
            justify-content: space-between;
            font-size: 20px;
            font-weight: 700;
            padding: 16px 0 0;
            border-top: 2px solid var(--border-color);
            margin-top: 8px;
        }

        /* ============================================
           SUCCESS
           ============================================ */
        .success-center {
            text-align: center;
            padding: 80px 0;
        }
        .success-center .icon-big {
            font-size: 80px;
            color: var(--primary);
            margin-bottom: 24px;
        }
        .success-center h2 {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .success-center p {
            color: #666;
            max-width: 480px;
            margin: 0 auto 32px;
        }

        /* ============================================
           AUTH
           ============================================ */
        .auth-wrap {
            max-width: 460px;
            margin: 60px auto;
            padding: 48px 40px;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }
        .auth-wrap h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .auth-wrap .sub {
            color: #777;
            margin-bottom: 28px;
        }
        .auth-wrap .form-group {
            margin-bottom: 18px;
        }
        .auth-wrap .form-group label {
            font-weight: 600;
            font-size: 14px;
            display: block;
            margin-bottom: 4px;
        }
        .auth-wrap .form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            font-size: 15px;
            transition: var(--transition);
        }
        .auth-wrap .form-group input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(191, 31, 64, 0.10);
        }
        .auth-wrap .auth-link {
            color: var(--primary);
            font-weight: 600;
            transition: var(--transition);
        }
        .auth-wrap .auth-link:hover {
            color: var(--hover-primary);
        }

        /* ============================================
           NEW TOURS SECTION
           ============================================ */
        .new-tours-section {
            padding: 60px 0;
            background: var(--white);
        }
        .new-tours-title {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 40px;
            color: var(--text-color);
        }
        .new-tours-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .new-tour-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 3 / 5;
            background-size: cover;
            background-position: center;
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            box-shadow: var(--shadow-md);
            cursor: pointer;
            transition: var(--transition);
        }
        .new-tour-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .new-tour-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                rgba(0,0,0,0.85) 0%,
                rgba(0,0,0,0.65) 22%,
                rgba(0,0,0,0.15) 45%,
                rgba(0,0,0,0) 62%);
            pointer-events: none;
        }
        .new-tour-card-top {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 16px;
        }
        .new-tour-badges {
            display: flex;
            gap: 8px;
            align-self: flex-start;
        }
        .new-tour-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
        }
        .new-tour-badge.new-badge {
            background: rgba(60,60,60,0.55);
            backdrop-filter: blur(4px);
            color: var(--white);
        }
        .new-tour-badge.discount-badge {
            background: var(--primary);
            color: var(--white);
        }
        .new-tour-fav-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.18);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            flex-shrink: 0;
            transition: var(--transition);
        }
        .new-tour-fav-btn:hover {
            background: var(--primary);
        }
        .new-tour-fav-btn svg {
            width: 18px;
            height: 18px;
        }
        .new-tour-card-bottom {
            position: relative;
            z-index: 2;
            padding: 0 18px 18px;
            text-align: left;
        }
        .new-tour-category-tag {
            display: inline-block;
            background: rgba(60,60,60,0.6);
            backdrop-filter: blur(4px);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            padding: 5px 10px;
            border-radius: 6px;
            margin-bottom: 10px;
        }
        .new-tour-title {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0 0 10px;
            text-align: left;
        }
        .new-tour-rating-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            font-size: 13px;
        }
        .new-tour-tp-icon {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #219653;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            color: var(--white);
            font-weight: 700;
        }
        .new-tour-dots {
            display: inline-flex;
            gap: 2px;
        }
        .new-tour-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #219653;
        }
        .new-tour-dot.half {
            background: linear-gradient(90deg, #219653 50%, rgba(255,255,255,0.35) 50%);
        }
        .new-tour-review-count {
            color: #e5e5e5;
            font-weight: 500;
        }
        .new-tour-location-row {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            color: #e8e8e8;
            margin-bottom: 14px;
            text-align: left;
        }
        .new-tour-location-row svg {
            width: 13px;
            height: 13px;
            flex-shrink: 0;
        }
        .new-tour-divider {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.25);
            margin: 0 0 12px;
        }
        .new-tour-price-label {
            font-size: 12px;
            color: #d8d8d8;
            margin-bottom: 2px;
            text-align: left;
        }
        .new-tour-price-row {
            display: flex;
            align-items: baseline;
            gap: 8px;
            text-align: left;
        }
        .new-tour-price-old {
            font-size: 14px;
            color: #c9c9c9;
            text-decoration: line-through;
        }
        .new-tour-price-new {
            font-size: 22px;
            font-weight: 800;
        }
        .new-tour-card--1 {
            background-image: linear-gradient(180deg, rgba(20,30,40,0.05), rgba(0,0,0,0.1)), var(--home-new-tour-1-bg);
        }
        .new-tour-card--2 {
            background-image: linear-gradient(180deg, rgba(20,30,40,0.05), rgba(0,0,0,0.1)), var(--home-new-tour-2-bg);
        }
        .new-tour-card--3 {
            background-image: linear-gradient(180deg, rgba(20,30,40,0.05), rgba(0,0,0,0.1)), var(--home-new-tour-3-bg);
        }
        .new-tour-card--4 {
            background-image: linear-gradient(180deg, rgba(20,30,40,0.05), rgba(0,0,0,0.1)), var(--home-new-tour-4-bg);
        }

        @media (max-width: 1100px) {
            .new-tours-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .new-tours-title {
                font-size: 30px;
            }
        }
        @media (max-width: 620px) {
            .new-tours-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .new-tours-title {
                font-size: 24px;
                margin-bottom: 20px;
            }
            .new-tour-card {
                aspect-ratio: 4/5;
            }
            .new-tour-title {
                font-size: 16px;
            }
        }

        /* ============================================
           WE LOVE YOUR STYLE SECTION
           ============================================ */
        .style-section {
            background: var(--primary);
            padding: 30px 0;
        }
        .style-headline {
            text-align: center;
            color: var(--white);
            font-weight: 700;
            font-size: 42px;
            letter-spacing: -0.5px;
            margin: 0 0 48px;
        }
        .style-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 48px;
            align-items: center;
            max-width: 1440px;
            margin: 0 auto;
        }
        .style-photo-wrap {
            width: 100%;
            height: auto;
            overflow: visible;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }
        .style-photo-wrap img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
            transition: var(--transition);
        }
        .style-photo-wrap:hover img {
            transform: scale(1.05);
        }
        .style-text-col {
            color: var(--white);
        }
        .style-text-col p {
            font-size: 16px;
            line-height: 1.85;
            margin: 0 0 32px;
            font-weight: 300;
        }
        .style-cta-btn {
            display: inline-block;
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 16px 36px;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            border-radius: var(--radius-sm);
        }
        .style-cta-btn:hover {
            background: var(--white);
            color: var(--primary);
        }

        @media (max-width: 1100px) {
            .style-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .style-photo-wrap {
                height: 360px;
            }
            .style-headline {
                font-size: 32px;
                margin-bottom: 32px;
            }
        }
        @media (max-width: 620px) {
            .style-section {
                padding: 48px 0;
            }
            .style-headline {
                font-size: 26px;
                margin-bottom: 24px;
            }
            .style-photo-wrap {
                height: 280px;
            }
            .style-text-col p {
                font-size: 15px;
                line-height: 1.75;
            }
            .style-cta-btn {
                width: 100%;
                text-align: center;
                padding: 14px 24px;
            }
        }

        /* ============================================
           TRAVEL STYLES PAGE
           ============================================ */
        .travel-styles-hero {
            position: relative;
            height: 400px;
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                var(--travel-styles-hero-bg);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .travel-styles-hero h1 {
            color: var(--white);
            font-size: 48px;
            font-weight: 700;
            text-align: center;
            letter-spacing: -0.5px;
            margin: 0;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .travel-styles-pills {
            position: absolute;
            bottom: -26px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0;
            background: var(--primary);
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .travel-styles-pills a {
            color: var(--white);
            text-decoration: none;
            font-size: 13px;
            padding: 14px 22px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-right: 1px solid rgba(255,255,255,0.25);
            white-space: nowrap;
        }
        .travel-styles-pills a:last-child {
            border-right: none;
        }
        .travel-styles-intro {
            max-width: 1440px;
            margin: 0 auto;
            padding: 90px 40px 40px;
            text-align: center;
        }
        .travel-styles-intro h2 {
            font-size: 32px;
            font-weight: 700;
            margin: 0 0 18px;
            color: var(--text-color);
        }
        .travel-styles-intro p {
            font-size: 15px;
            line-height: 1.85;
            color: #6b6b6b;
            max-width: 820px;
            margin: 0 auto;
        }
        .travel-styles-survey-link {
            display: block;
            text-align: center;
            color: var(--primary);
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            margin: 34px 0 60px;
        }
        .travel-styles-survey-link:hover {
            text-decoration: underline;
        }
        .travel-styles-wrap {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px 60px;
        }
        .travel-styles-row {
            display: grid;
            gap: 32px;
            margin-bottom: 60px;
        }
        .travel-styles-row.cols-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        .travel-styles-row.cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }
        .travel-style-card {
            text-align: center;
        }
        .travel-style-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
            margin-bottom: 24px;
            border-radius: var(--radius);
        }
        .travel-style-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin: 0 0 12px;
            color: var(--text-color);
        }
        .travel-style-card p {
            font-size: 14px;
            line-height: 1.75;
            color: #6b6b6b;
            max-width: 440px;
            margin: 0 auto 22px;
        }
        .travel-styles-final-cta {
            text-align: center;
            padding: 40px 20px 70px;
        }
        .travel-styles-final-cta .rule {
            width: 60px;
            height: 1px;
            background: var(--secondary);
            margin: 0 auto 24px;
        }
        .travel-styles-final-cta h2 {
            font-size: 30px;
            font-weight: 700;
            margin: 0 0 14px;
            color: var(--text-color);
        }
        .travel-styles-final-cta p {
            font-size: 14px;
            color: #6b6b6b;
            margin: 0 0 28px;
        }
        .travel-styles-final-cta .btn-row {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        @media (max-width: 1100px) {
            .travel-styles-hero {
                height: 300px;
            }
            .travel-styles-hero h1 {
                font-size: 34px;
                padding: 0 20px;
            }
            .travel-styles-pills {
                flex-wrap: wrap;
                width: 90%;
            }
            .travel-styles-pills a {
                flex: 1 1 50%;
                justify-content: center;
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.25);
            }
            .travel-styles-intro {
                padding: 70px 24px 30px;
            }
            .travel-styles-intro h2 {
                font-size: 26px;
            }
            .travel-styles-row.cols-2,
            .travel-styles-row.cols-3 {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .travel-styles-wrap {
                padding: 0 24px 40px;
            }
            .travel-style-card img {
                height: 220px;
            }
        }
        @media (max-width: 620px) {
            .travel-styles-hero h1 {
                font-size: 26px;
            }
            .travel-styles-intro h2 {
                font-size: 22px;
            }
            .travel-styles-survey-link {
                font-size: 15px;
            }
            .travel-styles-final-cta .btn-row {
                flex-direction: column;
                align-items: center;
            }
            .travel-styles-final-cta .btn-row .btn-primary {
                width: 80%;
            }
        }

        /* ============================================
           DASHBOARD
           ============================================ */
        .dashboard-grid {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 32px;
            padding: 32px 0 64px;
            align-items: start;
        }
        .dashboard-sidebar {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 28px 22px;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 92px;
            align-self: start;
        }
        .user-profile {
            text-align: center;
            margin-bottom: 28px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border-color);
        }
        .user-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 700;
            margin: 0 auto 14px;
            box-shadow: 0 6px 20px rgba(196,30,58,0.25);
        }
        .user-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 4px;
        }
        .user-email {
            font-size: 13px;
            color: #888;
            margin-bottom: 8px;
            word-break: break-word;
        }
        .user-since {
            display: inline-block;
            font-size: 12px;
            color: #aaa;
            background: var(--light-bg);
            padding: 4px 12px;
            border-radius: 30px;
        }
        .dashboard-nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .dashboard-nav a,
        .dashboard-nav button {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-color);
            transition: var(--transition);
            width: 100%;
            text-align: left;
            background: none;
            border: none;
        }
        .dashboard-nav a i,
        .dashboard-nav button i {
            width: 20px;
            text-align: center;
            color: var(--primary);
            transition: var(--transition);
        }
        .dashboard-nav a:hover,
        .dashboard-nav a.active,
        .dashboard-nav button:hover {
            background: var(--primary-gradient);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(196,30,58,0.18);
        }
        .dashboard-nav a:hover i,
        .dashboard-nav a.active i,
        .dashboard-nav button:hover i {
            color: var(--white);
        }

        .dashboard-content {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .dashboard-hero {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            background: var(--primary-gradient);
            color: var(--white);
            border-radius: var(--radius);
            padding: 28px 32px;
            box-shadow: var(--shadow-md);
        }
        .dashboard-hero h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .dashboard-hero p {
            opacity: 0.9;
            font-size: 15px;
        }
        .dashboard-date {
            font-size: 14px;
            font-weight: 600;
            background: rgba(255,255,255,0.15);
            padding: 10px 18px;
            border-radius: var(--radius-sm);
            white-space: nowrap;
        }

        .dashboard-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .stat-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 18px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .stat-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--white);
        }
        .stat-icon.bookings { background: linear-gradient(135deg, #C41E3A, #E63950); }
        .stat-icon.spent { background: linear-gradient(135deg, #2a7a2a, #4caf50); }
        .stat-icon.pending { background: linear-gradient(135deg, #b76e0a, #ff9800); }
        .stat-value {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-color);
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat-label {
            font-size: 13px;
            color: #888;
            font-weight: 500;
        }

        .dashboard-section {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow-sm);
        }
        .dashboard-section h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .profile-card {
            display: grid;
            gap: 10px;
        }
        .profile-card p {
            margin: 0;
            color: #555;
            font-size: 15px;
        }
        .dashboard-section .tour-grid {
            margin-bottom: 20px;
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .section-header h4 {
            margin-bottom: 0;
        }
        .view-all {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            transition: color 0.2s ease;
        }
        .view-all:hover {
            color: var(--hover-primary);
        }

        .booking-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .booking-card {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            background: var(--light-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 20px 24px;
            color: inherit;
            transition: var(--transition);
        }
        .booking-card:hover {
            background: var(--white);
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }
        .booking-main {
            flex: 1;
            min-width: 0;
        }
        .booking-title {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }
        .booking-number {
            font-weight: 800;
            color: var(--text-color);
            font-size: 15px;
        }
        .booking-tour {
            color: #666;
            font-size: 14px;
        }
        .booking-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            font-size: 13px;
            color: #888;
        }
        .booking-meta i {
            margin-right: 5px;
            color: var(--primary);
        }
        .booking-side {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-shrink: 0;
        }
        .booking-total {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-color);
        }
        .order-status {
            padding: 5px 14px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .order-status.pending {
            background: #fff3e0;
            color: #b76e0a;
        }
        .order-status.paid, .order-status.confirmed {
            background: #e6f7e6;
            color: #2a7a2a;
        }
        .order-status.cancelled {
            background: #fde8e8;
            color: #c53030;
        }
        .order-status.completed {
            background: #e8f4f8;
            color: #1a6f8a;
        }
        .booking-arrow {
            color: #bbb;
            transition: var(--transition);
        }
        .booking-card:hover .booking-arrow {
            color: var(--primary);
            transform: translateX(3px);
        }

        .empty-state {
            text-align: center;
            padding: 48px 20px;
        }
        .empty-icon {
            font-size: 48px;
            color: #ddd;
            margin-bottom: 16px;
        }
        .empty-state p {
            color: #888;
            margin-bottom: 20px;
        }
        .empty-state .btn-primary {
            display: inline-block;
        }

        .quick-actions {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }
        .quick-action {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px;
            background: var(--light-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-color);
            transition: var(--transition);
        }
        .quick-action i {
            color: var(--primary);
            transition: var(--transition);
        }
        .quick-action:hover {
            background: var(--primary-gradient);
            color: var(--white);
            border-color: transparent;
            box-shadow: 0 4px 14px rgba(196,30,58,0.18);
        }
        .quick-action:hover i {
            color: var(--white);
        }

        /* ============================================
           STATIC PAGES
           ============================================ */
        .static-page {
            padding: 48px 0 64px;
            max-width: 820px;
            margin: 0 auto;
        }
        .static-page h1 {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .static-page h2 {
            font-size: 26px;
            font-weight: 600;
            margin: 32px 0 12px;
        }
        .static-page p {
            color: #444;
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .static-page .faq-item {
            border-bottom: 1px solid var(--border-color);
            padding: 18px 0;
        }
        .static-page .faq-item h3 {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 4px;
            cursor: pointer;
        }
        .static-page .faq-item p {
            color: #666;
            margin-top: 4px;
        }

        /* ============================================
           ABOUT PAGE STYLES
           ============================================ */
        .about-hero {
            position: relative;
            height: 500px;
            background-image: var(--about-hero-alt-bg);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .about-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(191, 31, 64, 0.9), rgba(0, 0, 0, 0.8));
        }

        .about-hero-content {
            position: relative;
            z-index: 1;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }

        .about-hero-content h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .about-hero-content p {
            font-size: 22px;
            font-weight: 400;
            opacity: 0.95;
            line-height: 1.5;
        }

        .about-section {
            padding: 100px 0;
        }

        .about-section.team-section {
            padding-bottom: 60px;
        }

        .about-section.about-values {
            background: var(--light-bg);
        }

        .about-section.about-mission {
            background: white;
        }

        .about-section.about-stats {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 48px;
            margin-top: 64px;
        }

        .mission-card {
            text-align: center;
            padding: 48px;
            background: var(--light-bg);
            border-radius: var(--radius);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .mission-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .mission-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 32px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 40px;
            box-shadow: var(--shadow-lg);
            border: 3px solid rgba(191, 31, 64, 0.1);
        }

        .mission-card h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-color);
            letter-spacing: -0.3px;
        }

        .mission-card p {
            color: #555;
            line-height: 1.8;
            font-size: 17px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 64px;
        }

        .stat-card {
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: var(--transition);
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
        }

        .stat-number {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 12px;
            background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.85));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .stat-label {
            font-size: 18px;
            font-weight: 600;
            opacity: 0.95;
            letter-spacing: 0.5px;
        }

        .about-section.about-testimonials {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
        }

        .about-section.about-testimonials .section-title,
        .about-section.about-testimonials .section-sub {
            color: white;
        }

        .about-story {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-story-content h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 32px;
            color: var(--text-color);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .about-story-content p {
            color: #555;
            line-height: 1.9;
            margin-bottom: 24px;
            font-size: 17px;
        }

        .about-story-image {
            position: relative;
        }

        .about-story-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 64px;
        }

        .value-card {
            text-align: center;
            padding: 40px 28px;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .value-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 32px;
            background: white;
            border-radius: 50%;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: var(--primary) !important;
            font-size: 56px !important;
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--primary);
            z-index: 999 !important;
            position: relative !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        .mission-icon {
            width: 110px;
            height: 110px;
            margin: 0 auto 36px;
            background: white;
            border-radius: 50%;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: var(--primary) !important;
            font-size: 60px !important;
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--primary);
            z-index: 999 !important;
            position: relative !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        .value-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-color);
            letter-spacing: -0.3px;
        }

        .value-card p {
            color: #555;
            line-height: 1.7;
            font-size: 15px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 64px;
            margin-bottom: 0;
        }

        .team-card {
            text-align: center;
            transition: var(--transition);
        }

        .team-card:hover {
            transform: translateY(-4px);
        }

        .team-image {
            width: 100%;
            height: 320px;
            margin-bottom: 24px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .team-card:hover .team-image img {
            transform: scale(1.08);
        }

        .team-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-color);
            letter-spacing: -0.3px;
        }

        .team-role {
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 16px;
        }

        .team-card p {
            color: #555;
            font-size: 15px;
            line-height: 1.7;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 64px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-4px);
        }

        .testimonial-stars {
            font-size: 24px;
            margin-bottom: 20px;
            color: #FFD700;
        }

        .testimonial-card p {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 24px;
            font-style: italic;
            opacity: 0.95;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .testimonial-author strong {
            font-size: 17px;
            font-weight: 600;
        }

        .testimonial-author span {
            font-size: 15px;
            opacity: 0.85;
        }

        .about-cta {
            background: var(--primary-gradient);
            padding: 100px 0;
            text-align: center;
            color: white;
        }

        .about-cta h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .about-cta p {
            font-size: 19px;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.6;
        }

        .about-cta .btn-primary {
            background: white;
            color: var(--primary);
            padding: 18px 48px;
            font-size: 17px;
            font-weight: 700;
            border-radius: 50px;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }

        .about-cta .btn-primary:hover {
            background: var(--light-bg);
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* Responsive Design for About Page */
        @media (max-width: 1024px) {
            .about-hero {
                height: 400px;
            }

            .about-hero-content h1 {
                font-size: 42px;
            }

            .about-hero-content p {
                font-size: 18px;
            }

            .about-section {
                padding: 80px 0;
            }

            .about-story {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .about-story-content h2 {
                font-size: 36px;
            }

            .about-story-image img {
                height: 400px;
            }

            .mission-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .mission-card {
                padding: 40px;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-cta h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .about-hero {
                height: 350px;
            }

            .about-hero-content h1 {
                font-size: 36px;
            }

            .about-hero-content p {
                font-size: 17px;
            }

            .about-section {
                padding: 60px 0;
            }

            .about-story {
                gap: 40px;
            }

            .about-story-content h2 {
                font-size: 32px;
            }

            .about-story-image img {
                height: 350px;
            }

            .mission-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .mission-card {
                padding: 36px 28px;
            }

            .mission-icon {
                width: 72px;
                height: 72px;
                font-size: 32px;
            }

            .mission-card h3 {
                font-size: 24px;
            }

            .mission-card p {
                font-size: 16px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }

            .stat-card {
                padding: 32px;
            }

            .stat-number {
                font-size: 42px;
            }

            .stat-label {
                font-size: 16px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .contact-info .item {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            .contact-info .item .icon {
                width: 56px;
                height: 56px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .value-card {
                padding: 36px 24px;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .team-image {
                height: 350px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                padding: 36px;
            }

            .about-cta {
                padding: 80px 0;
            }

            .about-cta h2 {
                font-size: 32px;
            }

            .about-cta p {
                font-size: 17px;
            }

            .about-cta .btn-primary {
                padding: 16px 40px;
                font-size: 16px;
            }
        }

        /* ============================================
           NEW ABOUT PAGE STYLES
           ============================================ */
        .about-hero {
            position: relative;
            min-height: 78vh;
            display: flex;
            align-items: flex-end;
            background: linear-gradient(180deg, rgba(20,17,13,.25) 0%, rgba(20,17,13,.55) 65%, rgba(20,17,13,.82) 100%), var(--about-hero-bg) center/cover no-repeat;
        }

        .about-hero-content {
            padding-bottom: 76px;
            max-width: 760px;
            color: #F6F1E6;
        }

        .about-hero-content .kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: .24em;
            font-size: 12px;
            font-weight: 600;
            color: #E7C98E;
            margin-bottom: 22px;
        }

        .about-hero-content .kicker .rule {
            width: 34px;
            height: 1px;
            background: #E7C98E;
        }

        .about-hero h1 {
            color: #F6F1E6;
            font-size: clamp(40px, 7vw, 74px);
            font-weight: 500;
            line-height: 1.03;
            letter-spacing: -.01em;
            font-family: 'Fraunces', serif;
        }

        .about-hero p {
            margin-top: 20px;
            font-size: clamp(16px, 2vw, 19px);
            color: #DFD6C2;
            max-width: 480px;
            font-family: 'Fraunces', serif;
            font-style: italic;
            font-weight: 300;
        }

        .about-story {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .about-story-content h2 {
            font-family: 'Fraunces', serif;
            font-size: clamp(28px, 3.6vw, 38px);
            margin-bottom: 22px;
            letter-spacing: -.01em;
        }

        .about-story-content p {
            color: #5B564C;
            margin-bottom: 16px;
            font-size: 15.5px;
        }

        .about-story-image {
            position: relative;
            aspect-ratio: 4/5;
            overflow: hidden;
            border-radius: 2px;
        }

        .about-story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            background: rgba(34,31,26,0.14);
            border: 1px solid rgba(34,31,26,0.14);
            padding: 32px;
        }

        .mission-card {
            background: #F8F4E9;
        }

        .mission-image {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .mission-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mission-body {
            padding: 40px 44px 48px;
        }

        .mission-card .laurel {
            width: 34px;
            height: 34px;
            color: #B4924C;
            margin-top: -40px;
            margin-bottom: 18px;
            background: #F8F4E9;
            border-radius: 50%;
            padding: 8px;
            position: relative;
            box-shadow: 0 0 0 1px rgba(34,31,26,0.14);
        }

        .mission-card h3 {
            font-family: 'Fraunces', serif;
            font-size: 22px;
            margin-bottom: 14px;
        }

        .mission-card p {
            color: #5B564C;
            font-size: 15px;
        }

        .stats-plaque {
            max-width: 1180px;
            margin: 0 auto;
            background: #221F1A;
            color: #EDE6D6;
            padding: 64px 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .stat-card {
            text-align: center;
            padding: 0 20px;
            border-right: 1px solid rgba(246,241,230,.16);
        }

        .stat-card:last-child {
            border-right: none;
        }

        .stat-number {
            font-family: 'Fraunces', serif;
            font-size: clamp(30px, 3.4vw, 44px);
            font-weight: 500;
            color: #E7C98E;
        }

        .stat-label {
            margin-top: 8px;
            text-transform: uppercase;
            letter-spacing: .14em;
            font-size: 11.5px;
            color: #C9C1AE;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            margin-top: 52px;
        }

        .value-card {
            text-align: center;
            padding: 0 0 30px;
            background: #F8F4E9;
            border: 1px solid rgba(34,31,26,0.14);
            border-radius: 2px;
            overflow: hidden;
        }

        .value-image {
            aspect-ratio: 4/3;
            overflow: hidden;
        }

        .value-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .value-card .value-body {
            padding: 22px 22px 0;
        }

        .value-icon {
            width: 44px;
            height: 44px;
            margin: -42px auto 16px;
            position: relative;
            border-radius: 50%;
            border: 1px solid #B4924C;
            background: #F8F4E9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #A2321F;
            box-shadow: 0 0 0 4px #F8F4E9;
        }

        .value-icon .laurel {
            width: 20px;
            height: 20px;
        }

        .value-card h3 {
            font-family: 'Fraunces', serif;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .value-card p {
            color: #5B564C;
            font-size: 14px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 36px;
            margin-top: 52px;
        }

        .team-card {
            text-align: center;
        }

        .team-image {
            width: 132px;
            height: 132px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #F8F4E9;
            outline: 1px solid #B4924C;
            outline-offset: 5px;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-card h3 {
            font-family: 'Fraunces', serif;
            font-size: 17px;
        }

        .team-role {
            color: #A2321F;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .1em;
            font-weight: 600;
            margin: 6px 0 10px;
        }

        .team-card p:last-child {
            color: #5B564C;
            font-size: 13.5px;
            max-width: 220px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 52px;
        }

        .testimonial-card {
            background: #F8F4E9;
            border: 1px solid rgba(34,31,26,0.14);
            border-radius: 2px;
            padding: 34px 30px;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-family: 'Fraunces', serif;
            font-size: 64px;
            color: #B4924C;
            line-height: 1;
            display: block;
            margin-bottom: 6px;
            opacity: .8;
        }

        .testimonial-card p {
            font-family: 'Fraunces', serif;
            font-style: italic;
            font-size: 15.5px;
            color: #221F1A;
            margin-bottom: 22px;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            border-top: 1px solid rgba(34,31,26,0.14);
            padding-top: 14px;
        }

        .testimonial-author strong {
            font-size: 14px;
            font-weight: 600;
        }

        .testimonial-author span {
            font-size: 12.5px;
            color: #5B564C;
            margin-top: 2px;
        }

        .about-cta-new {
            background: linear-gradient(180deg, rgba(20,17,13,.6), rgba(20,17,13,.82)), var(--about-cta-bg) center/cover no-repeat;
            padding: 96px 0;
            text-align: center;
            color: #F6F1E6;
        }

        .about-cta-new h2 {
            color: #F6F1E6;
            font-family: 'Fraunces', serif;
            font-size: clamp(28px, 4.4vw, 42px);
            max-width: 640px;
            margin: 0 auto 16px;
        }

        .about-cta-new p {
            color: #DFD6C2;
            max-width: 480px;
            margin: 0 auto 32px;
            font-size: 15.5px;
        }

        .about-section-new {
            padding: 88px 0;
        }

        .eyebrow {
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: center;
            text-transform: uppercase;
            letter-spacing: .22em;
            font-size: 12px;
            font-weight: 600;
            color: #A2321F;
            margin-bottom: 14px;
        }

        .eyebrow::before, .eyebrow::after {
            content: "";
            width: 26px;
            height: 1px;
            background: #B4924C;
        }

        .section-title-new {
            font-family: 'Fraunces', serif;
            font-size: clamp(28px, 4vw, 42px);
            text-align: center;
            letter-spacing: -.01em;
        }

        .section-sub-new {
            text-align: center;
            color: #5B564C;
            max-width: 520px;
            margin: 14px auto 0;
            font-size: 15.5px;
        }

        .hairline {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(34,31,26,0.14) 20%, rgba(34,31,26,0.14) 80%, transparent);
            max-width: 1180px;
            margin: 0 auto;
        }

        @media (max-width: 980px) {
            .about-story {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-story-image {
                order: -1;
                aspect-ratio: 16/10;
            }

            .mission-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px 28px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .stats-plaque {
                grid-template-columns: 1fr 1fr;
                gap: 32px 0;
            }

            .stat-card {
                border-right: none;
                border-bottom: 1px solid rgba(246,241,230,.16);
                padding-bottom: 24px;
            }

            .stat-card:nth-child(2n) {
                border-right: none;
            }

            .stat-card:nth-last-child(-n+2) {
                border-bottom: none;
                padding-bottom: 0;
            }
        }

        @media (max-width: 600px) {
            .about-section-new {
                padding: 64px 0;
            }

            .about-hero {
                min-height: 70vh;
            }

            .about-hero-content {
                padding-bottom: 48px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stats-plaque {
                grid-template-columns: 1fr 1fr;
                padding: 40px 20px;
                gap: 20px;
            }

            .stat-card {
                border-bottom: 1px solid rgba(246,241,230,.16);
                padding: 20px 15px;
                text-align: center;
            }

            .stat-card:nth-child(3),
            .stat-card:nth-child(4) {
                border-bottom: none;
            }

            .stat-number {
                font-size: 28px;
                line-height: 1.2;
                margin-bottom: 8px;
            }

            .stat-label {
                font-size: 12px;
                line-height: 1.4;
            }
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            padding: 32px 0;
        }
        .contact-grid .form-group {
            margin-bottom: 18px;
        }
        .contact-grid .form-group label {
            font-weight: 600;
            font-size: 14px;
            display: block;
            margin-bottom: 4px;
        }
        .contact-grid .form-group input,
        .contact-grid .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            font-size: 15px;
            transition: var(--transition);
        }
        .contact-grid .form-group input:focus,
        .contact-grid .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(191, 31, 64, 0.10);
        }
        .contact-grid .form-group textarea {
            resize: vertical;
            min-height: 130px;
        }
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
            justify-content: center;
        }
        .contact-info .item {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .contact-info .item .icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary);
        }
        .contact-info .item .text {
            font-weight: 500;
        }
        .contact-info .item .text small {
            display: block;
            font-weight: 400;
            color: #888;
        }

        .notfound {
            text-align: center;
            padding: 100px 0;
        }
        .notfound .big {
            font-size: 120px;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }
        .notfound h2 {
            font-size: 32px;
            margin: 20px 0 12px;
        }
        .notfound p {
            color: #777;
            max-width: 400px;
            margin: 0 auto 32px;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: var(--text-color);
            color: var(--white);
            padding: 80px 0 32px;
            margin-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        .footer-brand {
            padding-right: 24px;
        }
        .footer-brand img {
            height: 70px;
            width: auto;
            margin-bottom: 20px;
            object-fit: contain;
        }
        .footer-brand p {
            color: #ccc;
            line-height: 1.7;
            max-width: 320px;
            margin-bottom: 20px;
            font-size: 14px;
        }
        .footer-social {
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 16px;
        }
        .footer-social a {
            color: var(--white);
            transition: var(--transition);
            text-decoration: none;
            font-size: 20px;
            opacity: 0.8;
        }
        .footer-social a:hover {
            opacity: 1;
            color: var(--secondary);
        }
        .footer-grid h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--white);
        }
        .footer-grid a {
            color: #bbb;
            display: block;
            margin-bottom: 12px;
            transition: var(--transition);
            font-size: 14px;
            text-decoration: none;
        }
        .footer-grid a:hover {
            color: var(--secondary);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-bottom-left {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: #999;
        }
        .footer-bottom-right {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: #999;
        }
        .footer-bottom-right span {
            font-weight: 600;
            color: #ccc;
        }
        .footer-bottom-right i {
            font-size: 24px;
            color: #ccc;
            transition: var(--transition);
        }
        .footer-bottom-right i:hover {
            color: var(--white);
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-content h1 {
                font-size: 42px;
            }
            .tour-detail-wrap {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .checkout-grid {
                grid-template-columns: 1fr;
            }
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .cart-header,
            .cart-item-row {
                grid-template-columns: 2fr 1fr 1fr 1fr 1fr 0.5fr;
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 28px;
                line-height: 1.3;
                margin-bottom: 16px;
            }

            .hero-content p {
                font-size: 16px;
                line-height: 1.5;
                margin-bottom: 24px;
            }

            .hero {
                padding: 60px 0 40px;
                min-height: 50vh;
            }

            .tour-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 16px;
                align-items: stretch;
            }

            .category-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
                gap: 12px;
            }

            .section-title {
                font-size: 24px;
                margin-bottom: 16px;
            }

            .section-sub {
                font-size: 14px;
                margin-bottom: 24px;
            }

            .btn-primary {
                padding: 12px 24px;
                font-size: 14px;
            }

            .travel-styles-row {
                flex-direction: column;
                gap: 20px;
            }

            .travel-styles-row.cols-2,
            .travel-styles-row.cols-3 {
                grid-template-columns: 1fr;
            }

            .travel-style-card {
                min-height: auto;
            }

            .travel-style-card img {
                height: 200px;
            }

            .travel-style-card h3 {
                font-size: 18px;
                margin-bottom: 12px;
            }

            .travel-style-card p {
                font-size: 14px;
                line-height: 1.5;
                margin-bottom: 16px;
            }
            .cart-header {
                display: none;
            }
            .cart-item-row {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 16px 20px;
            }
            .cart-item-row .item-info {
                grid-column: 1;
            }
            .cart-item-row .item-price,
            .cart-item-row .item-total {
                text-align: left;
            }
            .cart-item-row .item-remove {
                text-align: right;
            }
            .cart-footer {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            .cart-footer .cart-actions {
                justify-content: center;
            }
            .auth-wrap {
                padding: 32px 24px;
                margin: 32px 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer {
                padding: 60px 0 24px;
                margin-top: 60px;
            }

            .footer-grid h4 {
                font-size: 15px;
            }

            .footer-grid a {
                font-size: 13px;
                margin-bottom: 10px;
            }

            .footer-brand p {
                font-size: 13px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            .footer-bottom-left,
            .footer-bottom-right {
                justify-content: center;
                font-size: 12px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .contact-info .item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .contact-info .item .icon {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }

            .contact-info .item .text {
                font-size: 14px;
            }

            .contact-info .item .text small {
                font-size: 12px;
            }

            .tour-detail-wrap .gallery {
                height: 320px;
                font-size: 60px;
            }
            .tour-detail-wrap .detail-info .booking-fields {
                grid-template-columns: 1fr;
            }
            .tour-detail-wrap .detail-info .booking-fields .full-width {
                grid-column: 1;
            }
            .dashboard-content .order-item {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }
            .static-page h1 {
                font-size: 30px;
            }
            .notfound .big {
                font-size: 72px;
            }
            .nav-right .lang-dropdown .lang-toggle span {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .hero-content h1 {
                font-size: 28px;
            }
            .tour-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
                align-items: stretch;
            }
            .tour-card .info {
                padding: 14px 16px 18px;
            }
            .tour-card .info h3 {
                font-size: 15px;
            }
            .tour-card .img-wrap {
                height: 160px;
                font-size: 40px;
            }
            .tour-card .info .actions {
                gap: 8px;
            }
            .tour-card .info .actions .book-now {
                font-size: 12px;
                padding: 8px 0;
                text-align: center;
            }
            .tour-card .info .actions .wishlist {
                flex: 0 0 40px;
            }
            .btn-primary {
                padding: 14px 28px;
                font-size: 14px;
            }
            .btn-secondary {
                padding: 12px 28px;
                font-size: 14px;
            }
            .nav-logo img {
                height: 60px;
            }
        }

        /* ============================================
           UTILITY
           ============================================ */
        .mt-8 {
            margin-top: 8px;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mt-24 {
            margin-top: 24px;
        }
        .mt-32 {
            margin-top: 32px;
        }
        .mt-48 {
            margin-top: 48px;
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .mb-32 {
            margin-bottom: 32px;
        }
        .text-center {
            text-align: center;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gap-16 {
            gap: 16px;
        }
        .gap-24 {
            gap: 24px;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .w-full {
            width: 100%;
        }

        /* ============================================
           TOAST NOTIFICATIONS
           ============================================ */
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 360px;
            width: calc(100% - 40px);
        }
        .toast {
            background: #1f2937;
            color: #fff;
            padding: 16px 18px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            line-height: 1.4;
            transform: translateX(120%);
            opacity: 0;
            transition: transform 0.35s ease, opacity 0.35s ease;
            border-left: 4px solid;
        }
        .toast.toast-in {
            transform: translateX(0);
            opacity: 1;
        }
        .toast.toast-out {
            transform: translateX(120%);
            opacity: 0;
        }
        .toast-success { border-left-color: #10b981; background: #064e3b; }
        .toast-error { border-left-color: #ef4444; background: #7f1d1d; }
        .toast-warning { border-left-color: #f59e0b; background: #78350f; }
        .toast-info { border-left-color: #3b82f6; background: #1e3a8a; }
        .toast i:first-child {
            font-size: 18px;
            flex-shrink: 0;
        }
        .toast-success i:first-child { color: #34d399; }
        .toast-error i:first-child { color: #f87171; }
        .toast-warning i:first-child { color: #fbbf24; }
        .toast-info i:first-child { color: #60a5fa; }
        .toast span {
            flex: 1;
            color: #f3f4f6;
        }
        .toast-close {
            background: transparent;
            border: none;
            color: #9ca3af;
            cursor: pointer;
            padding: 4px;
            font-size: 14px;
            line-height: 1;
            transition: color 0.2s;
        }
        .toast-close:hover {
            color: #fff;
        }

        @media (max-width: 480px) {
            .toast-container {
                top: 12px;
                right: 12px;
                left: 12px;
                max-width: none;
                width: auto;
            }
            .toast {
                font-size: 13px;
                padding: 14px 16px;
            }
        }

        /* ============================================
           FOOTER REDESIGN — Responsive & Organized
           ============================================ */
        .footer {
            background: var(--text-color);
            color: var(--white);
            padding: 64px 0 28px;
            margin-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1.4fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
            align-items: start;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            margin: 0 0 18px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--white);
            display: inline-block;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--primary);
        }
        .footer-brand img {
            height: 60px;
            width: auto;
            margin-bottom: 18px;
            object-fit: contain;
            display: block;
        }
        .footer-brand p {
            color: #d1d5db;
            line-height: 1.7;
            max-width: 300px;
            margin: 0 0 22px;
            font-size: 14px;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a,
        .footer-grid a {
            color: #d1d5db;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            font-size: 14px;
            text-decoration: none;
        }
        .footer-links a:hover,
        .footer-grid a:hover {
            color: var(--secondary);
            padding-left: 4px;
        }
        .footer-tours .footer-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            column-gap: 24px;
            row-gap: 6px;
        }
        .footer-social {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
            transition: var(--transition);
        }
        .footer-social a:hover {
            background: var(--primary);
            color: var(--white);
            padding-left: 0;
        }
        .payment-icons {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-bottom-left,
        .footer-bottom-right {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: #9ca3af;
        }
        .footer-bottom-right span {
            font-weight: 600;
            color: #d1d5db;
        }
        .footer-divider {
            color: #4b5563;
        }
        .payment-icons i {
            font-size: 24px;
            color: #d1d5db;
            transition: var(--transition);
        }
        .payment-icons i:hover {
            color: var(--white);
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr;
                gap: 32px;
            }
            .footer-legal {
                grid-column: 2 / 4;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 48px 0 24px;
                margin-top: 60px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .footer-brand p {
                max-width: 100%;
            }
            .footer-legal {
                grid-column: auto;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 14px;
            }
            .footer-bottom-left,
            .footer-bottom-right,
            .payment-icons {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 26px;
            }
            .footer-tours .footer-links {
                grid-template-columns: 1fr;
            }
            .footer-col h4 {
                margin-bottom: 14px;
            }
            .footer-links a,
            .footer-grid a {
                font-size: 13px;
            }
            .footer-brand img {
                height: 52px;
            }
        }

        /* ============================================
           PRODUCT DATE CALENDAR
           ============================================ */
        .date-picker {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .date-picker input {
            flex: 1;
            padding: 14px 18px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            font-size: 15px;
            background: var(--white);
            font-family: var(--font);
            cursor: pointer;
        }
        .date-toggle {
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        .date-calendar {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            max-width: 320px;
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            box-shadow: 0 8px 24px rgba(0,0,0,0.10);
            padding: 16px;
            z-index: 100;
        }
        .cal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .cal-header button {
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 16px;
            color: var(--text);
            padding: 4px 8px;
        }
        .cal-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            font-size: 12px;
            color: #888;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .cal-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
        }
        .cal-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            background: #f5f5f5;
            color: #bbb;
            pointer-events: none;
            opacity: 0.5;
        }
        .cal-day.available {
            background: var(--white);
            color: var(--text);
            pointer-events: auto;
            opacity: 1;
        }
        .cal-day.available:hover {
            background: var(--primary);
            color: var(--white);
        }
        .cal-day.selected {
            background: var(--primary);
            color: var(--white);
        }
        .cal-day.empty {
            background: transparent;
            pointer-events: none;
        }
    