/*
 * Anya Tours Theme - Modern Travel Design
 * Redesigned for a premium, immersive travel experience
 */

/* ===========================
   CSS Variables
   =========================== */
:root {
    /* Brand Colors */
    --primary:          #0077B6;
    --primary-dark:     #005F8E;
    --primary-light:    #00B4D8;
    --secondary:        #F4845F;
    --secondary-dark:   #E06440;
    --accent:           #E9C46A;
    --teal:             #06D6A0;
    --emerald:          #2D6A4F;

    /* Neutral Palette */
    --dark:             #0D1B2A;
    --gray-900:         #1F2937;
    --gray-800:         #374151;
    --gray-600:         #6B7280;
    --gray-400:         #9CA3AF;
    --gray-200:         #E5E7EB;
    --gray-100:         #F3F4F6;
    --white:            #FFFFFF;
    --light-bg:         #EEF6FF;

    /* Semantic */
    --success:          #10B981;
    --warning:          #FBBF24;
    --danger:           #EF4444;

    /* Legacy aliases */
    --primary-color:    var(--primary);
    --secondary-color:  var(--secondary);
    --accent-color:     var(--accent);
    --accent-coral:     var(--secondary);
    --accent-burgundy:  var(--primary-dark);
    --dark-color:       var(--dark);
    --light-color:      var(--light-bg);
    --text-dark:        var(--gray-900);
    --text-light:       var(--gray-600);
    --border-color:     var(--gray-200);
    --shadow:           0 4px 24px rgba(0, 119, 182, 0.10);
    --shadow-hover:     0 12px 40px rgba(0, 119, 182, 0.22);

    /* Typography */
    --font-heading:     'Playfair Display', Georgia, serif;
    --font-body:        'Inter', system-ui, sans-serif;

    /* Layout */
    --section-py:       100px;

    /* Border Radius */
    --radius-sm:        8px;
    --radius-md:        14px;
    --radius-lg:        22px;
    --radius-xl:        32px;
    --radius-full:      9999px;

    /* Transitions */
    --ease:             cubic-bezier(0.4, 0, 0.2, 1);
    --transition:       all 0.35s var(--ease);
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 1rem;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }
p { margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ===========================
   Container
   =========================== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(0, 119, 182, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0, 119, 182, 0.50); color: var(--white); }
.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #f89a80);
    border-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(244, 132, 95, 0.35);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,132,95,0.50); color: var(--white); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-light { background: rgba(255,255,255,0.18); backdrop-filter: blur(8px); border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-light:hover { background: var(--white); color: var(--primary); }
.btn-lg { padding: 17px 44px; font-size: 17px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }

/* ===========================
   Header
   =========================== */

/* Default: sticky — stays in document flow, no padding-top needed */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.site-header .top-bar { display: none; }
.site-header .main-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 13px 0;
    box-shadow: 0 4px 28px rgba(0,119,182,0.10);
    transition: var(--transition);
}

/* Home page only: fixed + transparent so hero slides behind it */
body.home .site-header {
    position: fixed;
    left: 0;
    right: 0;
}
body.home .site-header .main-header {
    background: transparent;
    padding: 22px 0;
    box-shadow: none;
}
body.home .site-header.scrolled .main-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 13px 0;
    box-shadow: 0 4px 28px rgba(0,119,182,0.10);
}
/* Admin bar offset — only needed for home (fixed header) */
body.home.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
    body.home.admin-bar .site-header { top: 46px; }
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 1 auto;
}
.site-branding { flex-shrink: 0; }
.site-branding img,
.site-branding .custom-logo-link img { max-height: 52px; width: auto; height: auto; transition: var(--transition); }
.site-branding .custom-logo-link { display: inline-block; line-height: 0; }
.site-title { font-size: 1.7rem; margin: 0; font-weight: 700; font-family: var(--font-heading); }
.site-title a { color: var(--white); }
.scrolled .site-title a { color: var(--primary); }

/* Top bar */
.top-bar { background: var(--dark); color: rgba(255,255,255,0.85); padding: 9px 0; font-size: 13px; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar .contact-info { display: flex; gap: 20px; align-items: center; }
.top-bar .contact-info span { display: flex; align-items: center; gap: 6px; }
.top-bar .contact-info i { color: var(--accent); }
.social-links { display: flex; gap: 10px; }
.social-links a {
    color: rgba(255,255,255,0.7); font-size: 14px;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.08); transition: var(--transition);
}
.social-links a:hover { background: var(--primary); color: var(--white); }

/* Navigation */
.main-navigation { display: flex; align-items: center; gap: 8px; flex: 1 1 auto; min-width: 0; justify-content: flex-end; }
.primary-menu,
.main-navigation .menu,
.main-navigation .menu ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.primary-menu li,
.main-navigation .menu li { display: inline-flex; }
.primary-menu li a,
.main-navigation .menu a {
    font-weight: 500; font-size: 15px; padding: 8px 16px;
    border-radius: var(--radius-full); color: rgba(255,255,255,0.92); transition: var(--transition); line-height: 1.4;
}
.primary-menu li a:hover,
.main-navigation .menu a:hover,
.primary-menu li.current-menu-item a,
.primary-menu li.current_page_item a,
.main-navigation .menu .current_page_item > a { background: rgba(255,255,255,0.15); color: var(--white); }
.scrolled .primary-menu li a,
.scrolled .main-navigation .menu a { color: var(--gray-800); }
.scrolled .primary-menu li a:hover,
.scrolled .main-navigation .menu a:hover,
.scrolled .primary-menu li.current-menu-item a,
.scrolled .primary-menu li.current_page_item a { background: var(--light-bg); color: var(--primary); }
.header-cta {
    margin-left: 8px; padding: 10px 24px !important; font-size: 14px;
    background: linear-gradient(135deg, var(--secondary), #f89a80) !important;
    color: var(--white) !important; border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(244,132,95,0.40); font-weight: 600;
    white-space: nowrap;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,132,95,0.55); }
.mobile-menu-toggle {
    display: none; flex-direction: column; background: none; border: none;
    cursor: pointer; padding: 8px; gap: 5.5px; border-radius: var(--radius-sm);
}
.mobile-menu-toggle span { width: 26px; height: 2.5px; background: var(--white); border-radius: 3px; transition: var(--transition); }
.scrolled .mobile-menu-toggle span { background: var(--dark); }
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Non-home pages: nav links use dark colour (header is always solid) */
body:not(.home) .primary-menu li a,
body:not(.home) .main-navigation .menu a { color: var(--gray-800); }
body:not(.home) .primary-menu li a:hover,
body:not(.home) .main-navigation .menu a:hover { background: var(--light-bg); color: var(--primary); }
body:not(.home) .site-title a { color: var(--primary); }
body:not(.home) .mobile-menu-toggle span { background: var(--dark); }
body:not(.home) .site-header .main-header { background: var(--white); }

@media (max-width: 1260px) {
    .header-content { gap: 14px; }
    .primary-menu li a,
    .main-navigation .menu a {
        padding: 7px 12px;
        font-size: 14px;
    }
}
/* ===========================
   Hero Section
   =========================== */
.hero-section { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }
.hero-slider { position: relative; height: 100%; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease-in-out; will-change: opacity;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(165deg, rgba(13,27,42,0.72) 0%, rgba(0,119,182,0.42) 55%, rgba(6,214,160,0.22) 100%);
    z-index: 1;
}
.hero-slide::after {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0; height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 2;
}
.hero-content {
    position: relative; z-index: 3;
    height: 100%; display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center; color: var(--white);
    padding: 120px 20px 80px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3); color: var(--white);
    padding: 8px 22px; border-radius: var(--radius-full);
    font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
    margin-bottom: 24px; animation: fadeInDown 0.8s ease-out;
}
.hero-badge i { color: var(--accent); }
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800;
    margin-bottom: 20px; color: var(--white);
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    animation: fadeInUp 0.9s ease-out; line-height: 1.15;
    max-width: 900px;
}
.hero-title span {
    background: linear-gradient(135deg, var(--accent), #f5d88a);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem); margin-bottom: 36px; max-width: 620px;
    color: rgba(255,255,255,0.90); animation: fadeInUp 1s ease-out;
    font-weight: 400; line-height: 1.7; text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-buttons {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    animation: fadeInUp 1.1s ease-out; margin-bottom: 44px;
}
/* Hero Search */
.hero-search { width: 100%; max-width: 860px; animation: fadeInUp 1.2s ease-out; }
.hero-search-form {
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
    border-radius: var(--radius-xl); padding: 10px;
    display: flex; gap: 0; box-shadow: 0 20px 60px rgba(0,0,0,0.25); align-items: stretch;
}
.hero-search-field {
    flex: 1; display: flex; flex-direction: column; padding: 13px 22px;
    border-right: 1px solid var(--gray-200); min-width: 0;
}
.hero-search-field:last-of-type { border-right: none; }
.hero-search-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--primary); margin-bottom: 4px; }
.hero-search-input {
    border: none; outline: none; background: transparent;
    font-size: 14px; font-weight: 500; color: var(--gray-800);
    font-family: var(--font-body); width: 100%;
}
.hero-search-input::placeholder { color: var(--gray-400); }
.hero-search-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white); border: none; padding: 14px 28px;
    border-radius: var(--radius-lg); font-size: 15px; font-weight: 600;
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    white-space: nowrap; transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,119,182,0.4); font-family: var(--font-body);
    flex-shrink: 0;
}
.hero-search-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,119,182,0.55); }

/* Hero nav */
.hero-prev, .hero-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
    color: var(--white); border: 1px solid rgba(255,255,255,0.3);
    width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
    font-size: 18px; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-prev:hover, .hero-next:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.08); }
.hero-dots { display: none; }
.hero-dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.45); cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--white); width: 28px; }

/* ===========================
   Stats Section
   =========================== */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, #0A2540 60%, #0d2d4a 100%);
    padding: 64px 0; position: relative; overflow: hidden;
}
.stats-section::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); position: relative; z-index: 1; }
.stat-item {
    text-align: center; padding: 28px 20px;
    border-right: 1px solid rgba(255,255,255,0.08); transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { transform: translateY(-4px); }
.stat-icon { font-size: 2.2rem; margin-bottom: 14px; }
.stat-icon i {
    background: linear-gradient(135deg, var(--primary-light), var(--teal));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-number {
    font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800;
    color: var(--white); line-height: 1; margin-bottom: 8px;
    display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat-number .suffix { font-size: 0.65em; color: var(--accent); margin-left: 2px; }
.stat-label { color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; }

/* ===========================
   Section Headings
   =========================== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--light-bg); color: var(--primary);
    padding: 6px 18px; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; color: var(--dark); }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ===========================
   Features Section
   =========================== */
.features-section {
    padding: var(--section-py) 0; background: var(--light-bg);
    position: relative; overflow: hidden;
}
.features-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--primary), var(--teal), var(--secondary));
}
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; }
.feature-item {
    background: var(--white); padding: 40px 32px;
    border-radius: var(--radius-lg); text-align: center;
    box-shadow: 0 2px 16px rgba(0,119,182,0.07); transition: var(--transition);
    border: 1px solid rgba(0,119,182,0.06); position: relative; overflow: hidden;
}
.feature-item::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--teal));
    transform: scaleX(0); transition: transform 0.35s var(--ease);
}
.feature-item:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,119,182,0.14); }
.feature-item:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 72px; height: 72px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.8rem;
}
.feature-item:nth-child(1) .feature-icon { background: linear-gradient(135deg, #e0f2fe, #bae6fd); color: var(--primary); }
.feature-item:nth-child(2) .feature-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: var(--success); }
.feature-item:nth-child(3) .feature-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #D97706; }
.feature-item:nth-child(4) .feature-icon { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #be185d; }
.feature-item h3 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }
.feature-item p { font-size: 14px; color: var(--gray-600); margin: 0; line-height: 1.65; }

/* ===========================
   Tours Section
   =========================== */
.featured-tours-section,
.tours-archive-section,
.related-tours-section { padding: var(--section-py) 0; background: var(--white); }
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 32px; margin-bottom: 48px; }
.tour-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,119,182,0.08); transition: var(--transition);
    border: 1px solid var(--gray-200); display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(0,119,182,0.18); border-color: transparent; }
.tour-card-image {
    position: relative; height: 240px; overflow: hidden; flex-shrink: 0;
    background: linear-gradient(135deg, #0D3B66, #0077B6, #00B4D8);
    display: flex; align-items: center; justify-content: center;
}
.tour-card-image::before { content: '\f03e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 3rem; color: rgba(255,255,255,0.3); position: absolute; }
.tour-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); position: relative; z-index: 1; }
.tour-card:hover .tour-card-image img { transform: scale(1.07); }
.tour-card-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.50) 0%, transparent 55%);
    transition: var(--transition); z-index: 2;
}
.tour-media-topbar {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 4;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
}
.tour-media-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.tour-duration {
    position: absolute; left: 16px; bottom: 16px; z-index: 4;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
    padding: 6px 14px; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 600; color: var(--primary);
    display: flex; align-items: center; gap: 5px;
}
.tour-duration i { font-size: 11px; color: var(--secondary); }
.tour-badge {
    position: absolute; top: 16px; left: 16px; z-index: 3;
    background: linear-gradient(135deg, var(--secondary), #f89a80);
    color: var(--white); padding: 5px 14px; border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.tour-card-content { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.tour-location { display: flex; align-items: center; gap: 6px; color: var(--gray-600); font-size: 13px; font-weight: 500; margin-bottom: 10px; }
.tour-location i { color: var(--secondary); font-size: 12px; }
.tour-card-title { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; line-height: 1.4; }
.tour-card-title a { color: var(--dark); }
.tour-card-title a:hover { color: var(--primary); }
.tour-card-excerpt { color: var(--gray-600); font-size: 14px; line-height: 1.65; margin-bottom: 18px; flex: 1; }
.tour-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--gray-200); margin-top: auto; }
.tour-price { display: flex; flex-direction: column; }
.price-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.3px; }
.price-amount { font-size: 1.6rem; font-weight: 800; color: var(--primary); font-family: var(--font-heading); line-height: 1; }
.price-per { font-size: 11px; color: var(--gray-400); }
.section-footer { text-align: center; }

/* ===========================
   Why Choose Us
   =========================== */
.why-choose-section { padding: var(--section-py) 0; background: var(--light-bg); position: relative; overflow: hidden; }
.why-choose-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-choose-text .section-header { text-align: left; margin-bottom: 24px; }
.why-choose-text p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; }
.check-list { margin: 0 0 32px; }
.check-list li {
    display: flex; align-items: center; gap: 14px;
    padding: 11px 0; font-size: 1rem; color: var(--gray-800);
    border-bottom: 1px solid rgba(0,119,182,0.07);
}
.check-list li:last-child { border-bottom: none; }
.check-list li i {
    color: var(--teal); flex-shrink: 0;
    width: 26px; height: 26px;
    background: rgba(6,214,160,0.12); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.why-choose-image { position: relative; padding-bottom: 24px; }
.why-choose-image::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    right: -30px;
    top: -28px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.22), rgba(0, 180, 216, 0));
    z-index: 0;
}
.why-choose-image::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    left: -30px;
    bottom: 56px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(6, 214, 160, 0.22), rgba(0, 119, 182, 0.12));
    z-index: 0;
}
.why-choose-image img {
    position: relative;
    z-index: 1;
    width: 100%; height: 500px; object-fit: cover;
    border-radius: var(--radius-xl); box-shadow: 0 24px 72px rgba(0,0,0,0.18);
    background: linear-gradient(135deg, var(--primary), var(--teal));
}
.why-choose-trust-stack {
    position: absolute;
    right: 18px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: min(270px, calc(100% - 36px));
}
.why-choose-badge {
    background: var(--white); border-radius: var(--radius-md);
    padding: 18px 24px; box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 14px; min-width: 0;
}
.why-choose-badge.primary {
    border: 1px solid rgba(0, 119, 182, 0.2);
}
.why-choose-badge-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.3rem; flex-shrink: 0;
}
.why-choose-badge-text strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--dark); line-height: 1; }
.why-choose-badge-text span { font-size: 12px; color: var(--gray-600); font-weight: 500; }
.why-choose-mini-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.why-choose-mini-card {
    position: relative;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(0, 119, 182, 0.2);
    border-radius: 12px;
    padding: 10px 14px 10px 48px;
    box-shadow: 0 10px 24px rgba(8, 25, 44, 0.16);
    backdrop-filter: blur(6px);
}
.why-choose-mini-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0,119,182,0.14), rgba(6,214,160,0.2));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.why-choose-mini-card strong {
    display: block;
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.1;
}
.why-choose-mini-card span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 600;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials-section { padding: var(--section-py) 0; background: var(--white); position: relative; overflow: hidden; }
.testimonials-section::before {
    content: '"'; position: absolute; top: 30px; left: 3%;
    font-family: var(--font-heading); font-size: 16rem;
    color: var(--light-bg); line-height: 1; pointer-events: none; z-index: 0;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; position: relative; z-index: 1; }
.testimonial-card {
    background: var(--white); border: 1px solid var(--gray-200);
    padding: 36px 32px; border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0,119,182,0.06); transition: var(--transition); position: relative;
}
.testimonial-card::before {
    content: '"'; position: absolute; top: 18px; right: 26px;
    font-family: var(--font-heading); font-size: 4.5rem; color: var(--light-bg); line-height: 1;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,119,182,0.13); border-color: var(--primary-light); }
.testimonial-rating { color: var(--accent); margin-bottom: 14px; font-size: 14px; display: flex; gap: 3px; }
.testimonial-text { font-size: 15px; line-height: 1.8; color: var(--gray-700); margin-bottom: 22px; font-style: italic; }
.testimonial-header { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--gray-200); }
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
    border: 3px solid var(--light-bg); flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--teal));
}
.testimonial-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.testimonial-info span { color: var(--gray-400); font-size: 13px; }
.verified-badge { margin-left: auto; display: flex; align-items: center; gap: 4px; color: var(--teal); font-size: 12px; font-weight: 600; }

/* ===========================
   Happy Travelers
   =========================== */
.happy-travelers-section {
    padding: var(--section-py) 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 180, 216, 0.12), transparent 38%),
        radial-gradient(circle at 85% 10%, rgba(6, 214, 160, 0.10), transparent 34%),
        var(--white);
}
.happy-travelers-section.is-compact {
    padding: 36px 0 46px;
    margin-bottom: 34px;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.happy-travelers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.happy-travelers-section.is-compact .happy-travelers-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.happy-traveler-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--dark);
    box-shadow: 0 8px 30px rgba(11, 31, 49, 0.18);
    min-height: 300px;
}
.happy-travelers-section.is-compact .happy-traveler-card {
    min-height: 220px;
}
.happy-traveler-media,
.happy-traveler-media img {
    width: 100%;
    height: 100%;
}
.happy-traveler-media img {
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.happy-traveler-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 18, 31, 0.86), rgba(4, 18, 31, 0.18) 56%, rgba(4, 18, 31, 0));
}
.happy-traveler-card:hover .happy-traveler-media img {
    transform: scale(1.06);
}
.happy-traveler-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 14px 14px 15px;
    color: var(--white);
}
.happy-traveler-caption strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}
.happy-traveler-caption span,
.happy-traveler-caption small {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
}
.happy-traveler-caption span i {
    color: var(--accent);
    margin-right: 4px;
}

@media (max-width: 1024px) {
    .happy-travelers-grid,
    .happy-travelers-section.is-compact .happy-travelers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .happy-travelers-section {
        padding: 68px 0;
    }
    .happy-travelers-grid,
    .happy-travelers-section.is-compact .happy-travelers-grid {
        grid-template-columns: 1fr;
    }
    .happy-traveler-card,
    .happy-travelers-section.is-compact .happy-traveler-card {
        min-height: 260px;
    }
}

/* ===========================
   Gallery Section
   =========================== */
.gallery-section { padding: var(--section-py) 0; background: var(--gray-100); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-radius: var(--radius-lg); overflow: hidden;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; background: linear-gradient(135deg, var(--primary), var(--primary-light)); aspect-ratio: 4 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,119,182,0.75), rgba(6,214,160,0.65));
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 2rem; }

/* ===========================
   CTA / Newsletter / Banner
   =========================== */
.cta-section {
    position: relative; padding: 110px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #0A3060 50%, var(--primary) 100%);
    color: var(--white); text-align: center; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: -50%; left: -10%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); font-size: clamp(2rem,4vw,3rem); margin-bottom: 16px; font-weight: 800; }
.cta-content p { font-size: 1.1rem; margin-bottom: 36px; color: rgba(255,255,255,0.85); max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Newsletter */
.newsletter-section { padding: 80px 0; background: var(--light-bg); position: relative; overflow: hidden; }
.newsletter-section::before {
    content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--teal), var(--secondary));
}
.newsletter-content { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.newsletter-text { flex: 1; min-width: 260px; }
.newsletter-text h3 { font-size: 1.75rem; font-weight: 700; margin-bottom: 8px; }
.newsletter-text p { color: var(--gray-600); margin: 0; font-size: 15px; }
.newsletter-form { flex: 1; min-width: 300px; }
.newsletter-form-inner {
    display: flex; gap: 10px;
    background: var(--white); border-radius: var(--radius-full);
    padding: 8px 8px 8px 24px; box-shadow: 0 4px 24px rgba(0,119,182,0.10); align-items: center;
}
.newsletter-input {
    flex: 1; border: none; outline: none; font-size: 15px;
    font-family: var(--font-body); color: var(--gray-800); background: transparent; min-width: 0;
}
.newsletter-input::placeholder { color: var(--gray-400); }

/* ===========================
   Single Tour Page
   =========================== */
.single-tour-header { background: linear-gradient(135deg, var(--dark), var(--primary)); color: var(--white); padding: 100px 0 60px; }
.tour-title { color: var(--white); margin-bottom: 20px; }
.tour-meta { display: flex; flex-wrap: wrap; gap: 24px; font-size: 15px; }
.meta-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); }
.meta-item i { color: var(--accent); }
.breadcrumb { padding: 15px 0; font-size: 13px; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .separator { margin: 0 8px; }
.single-tour-content { padding: 60px 0; }
.tour-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; }
.tour-featured-image { margin-bottom: 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.tour-featured-image img { width: 100%; max-height: 500px; object-fit: cover; }
.tour-description, .tour-highlights, .tour-inclusions, .tour-gallery-section { margin-bottom: 50px; }
.tour-highlights-list, .tour-included-list, .tour-not-included-list { padding: 0; }
.tour-highlights-list li, .tour-included-list li, .tour-not-included-list li { padding: 12px 0; padding-left: 32px; position: relative; border-bottom: 1px solid var(--gray-100); }
.tour-highlights-list li:before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: bold; }
.tour-included-list li i { color: var(--success); margin-right: 10px; }
.tour-not-included-list li i { color: var(--danger); margin-right: 10px; }
.inclusions-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
.tour-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 12px; }
.tour-gallery .gallery-item { border-radius: var(--radius-sm); overflow: hidden; }
.tour-gallery .gallery-item img { width: 100%; height: 180px; object-fit: cover; transition: var(--transition); }

/* ===========================
   Trip Stats Bar
   =========================== */
.trip-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,119,182,0.10);
    margin-top: -48px;
    position: relative;
    z-index: 5;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}
.trip-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid var(--gray-200);
}
.trip-stat:last-child { border-right: none; }
.trip-stat i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 10px;
    flex-shrink: 0;
}
.trip-stat div { display: flex; flex-direction: column; }
.trip-stat strong { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.trip-stat span { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.4px; }

.ideal-for-badge {
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 14px;
    color: var(--gray-800);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}
.ideal-for-badge i { color: var(--secondary); }

/* ===========================
   Day-by-Day Itinerary Timeline
   =========================== */
.itinerary-timeline {
    position: relative;
    padding-left: 8px;
}
.itinerary-day-card {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 32px;
}
.itinerary-day-card:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 34px;
    top: 76px;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}
.itinerary-day-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,119,182,0.30);
}
.itinerary-day-number span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.85; }
.itinerary-day-number strong { font-size: 1.6rem; font-family: var(--font-heading); line-height: 1; }
.itinerary-day-content {
    flex: 1;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}
.itinerary-day-content h3 { font-size: 1.15rem; margin-bottom: 8px; }
.itinerary-day-meta { display: flex; gap: 16px; font-size: 13px; color: var(--gray-600); margin-bottom: 10px; }
.itinerary-day-meta i { color: var(--secondary); margin-right: 4px; }
.itinerary-day-content p { margin: 0; font-size: 14px; color: var(--gray-700); line-height: 1.7; }

/* ===========================
   What to Expect
   =========================== */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.expect-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 22px;
}
.expect-card h4 { font-size: 1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.expect-card h4 i { color: var(--primary); }
.expect-card p { font-size: 14px; color: var(--gray-600); margin: 0; line-height: 1.7; }

/* ===========================
   FAQ Accordion
   =========================== */
.tour-faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}
.faq-question:hover { background: var(--light-bg); }
.faq-question i { color: var(--primary); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--gray-100);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { margin: 0; padding: 0 22px 18px; font-size: 14px; color: var(--gray-700); line-height: 1.7; }

.tour-cancellation-note {
    background: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    margin-top: 40px;
}
.tour-cancellation-note h3 { font-size: 1.05rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.tour-cancellation-note h3 i { color: var(--primary); }
.tour-cancellation-note p { margin: 0; font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ===========================
   Booking Sidebar Extras
   =========================== */
.price-child-note {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin-top: 6px;
}
.deposit-note {
    font-size: 13px;
    color: var(--gray-600);
    text-align: center;
    margin: 8px 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.deposit-note i { color: var(--teal); }

.trust-badges-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 24px 26px;
    margin-bottom: 28px;
    border: 1px solid var(--gray-200);
}
.trust-badges-widget h3 { font-size: 1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.trust-badges-widget h3 i { color: var(--teal); }
.trust-badges-list { padding: 0; }
.trust-badges-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 13px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}
.trust-badges-list li:last-child { border-bottom: none; }
.trust-badges-list li i { color: var(--primary); width: 18px; text-align: center; }

/* ===========================
   Booking Widget
   =========================== */
.booking-widget, .tour-info-widget, .share-widget {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); margin-bottom: 28px; overflow: hidden; border: 1px solid var(--gray-200);
}
.booking-widget-header { background: linear-gradient(135deg, var(--dark), var(--primary)); color: var(--white); padding: 30px; text-align: center; }
.price-display { display: flex; flex-direction: column; align-items: center; }
.price-display .price-amount { font-size: 2.6rem; font-weight: 800; margin: 8px 0; font-family: var(--font-heading); color: var(--accent); }
.booking-widget-body { padding: 28px; }
.booking-widget-body h3 { margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 7px; font-weight: 600; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); font-size: 15px; font-family: var(--font-body);
    transition: var(--transition); background: var(--gray-100); color: var(--gray-800);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); background: var(--white);
    box-shadow: 0 0 0 3px rgba(0,119,182,0.10);
}
.total-price-display {
    background: var(--light-bg); padding: 18px 20px; border-radius: var(--radius-sm);
    display: flex; justify-content: space-between; align-items: center;
    margin: 20px 0; font-weight: 600; font-size: 1.1rem;
}
.booking-help { text-align: center; padding-top: 18px; border-top: 1px solid var(--gray-200); margin-top: 18px; font-size: 14px; }
.contact-link { color: var(--primary); font-weight: 500; }
.tour-info-widget, .share-widget { padding: 28px; }
.tour-info-list { padding: 0; }
.tour-info-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.share-buttons { display: flex; gap: 10px; }
.share-btn { flex: 1; display: flex; align-items: center; justify-content: center; padding: 12px; border-radius: var(--radius-sm); color: var(--white); font-size: 16px; transition: var(--transition); }
.share-btn:hover { opacity: 0.85; transform: translateY(-2px); color: var(--white); }
.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.email { background: var(--gray-600); }

/* ===========================
   Booking Page
   =========================== */
.page-header { background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%); color: var(--white); padding: 64px 0 60px; text-align: center; }
.page-title { color: var(--white); font-size: clamp(2rem,5vw,3.2rem); margin-bottom: 16px; }
.page-description { font-size: 1.1rem; max-width: 600px; margin: 0 auto; opacity: 0.9; }
/* ===========================
   Booking Page — Full Width
   =========================== */
.booking-page-section { padding: 60px 0 80px; background: var(--gray-100); }
.booking-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; }
.booking-form-container { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* Booking Hero Banner */
.booking-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #0A3060 55%, var(--primary) 100%);
    padding: 48px 0 72px;
    position: relative;
    overflow: hidden;
}
.booking-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 32px;
    background: var(--gray-100);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.booking-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.booking-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.booking-hero-text { flex: 1; }
.booking-hero .page-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 12px;
}
.booking-hero .page-description {
    color: rgba(255,255,255,0.80);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0;
}
.booking-hero-stats {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}
.booking-stat {
    text-align: center;
    padding: 20px 28px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.booking-stat:last-child { border-right: none; }
.booking-stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 4px;
}
.booking-stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Trust Strip */
.booking-trust-strip {
    background: var(--gray-100);
    padding: 36px 0 32px;
}

/* Form step header */
.form-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.form-step-badge {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.form-section-title { font-size: 1.2rem; margin: 0; }

/* Form notice */
.form-notice {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.form-notice i { color: var(--teal); }

/* Tour price tag in selection */
.tour-price-tag {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-left: auto;
    flex-shrink: 0;
    padding-left: 12px;
}
.tour-checkbox-content .tour-details { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 12px; color: var(--gray-400); }
.tour-checkbox-content .tour-details i { color: var(--secondary); }
.tour-checkbox-content .tour-details strong { color: var(--primary); font-weight: 600; }

/* Sidebar cards */
.booking-sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-contact-card {
    background: linear-gradient(135deg, var(--dark), #0A3060);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 90px;
}
.sidebar-contact-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.sidebar-contact-header > i {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--accent); flex-shrink: 0;
}
.sidebar-contact-header strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.sidebar-contact-header span { font-size: 12px; color: rgba(255,255,255,0.60); }
.sidebar-phone, .sidebar-email {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    margin-bottom: 10px;
    transition: var(--transition);
    text-decoration: none;
}
.sidebar-phone:hover, .sidebar-email:hover {
    background: rgba(255,255,255,0.15);
    color: var(--accent);
}
.sidebar-phone i, .sidebar-email i { color: var(--teal); font-size: 13px; }
.sidebar-hours { font-size: 13px; color: rgba(255,255,255,0.55); margin: 10px 0 0; display: flex; align-items: center; gap: 8px; }
.sidebar-hours i { color: var(--accent); font-size: 12px; }

.sidebar-steps-card,
.sidebar-why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}
.sidebar-steps-card h4,
.sidebar-why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
}
.sidebar-steps-card h4 i,
.sidebar-why-card h4 i { color: var(--primary); }

.sidebar-steps { padding: 0; }
.sidebar-steps li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
    color: var(--gray-700);
}
.sidebar-steps li:last-child { border-bottom: none; }
.step-num {
    width: 26px; height: 26px;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; flex-shrink: 0;
}

.sidebar-benefits { padding: 0; }
.sidebar-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}
.sidebar-benefits li:last-child { border-bottom: none; }
.sidebar-benefits li i { color: var(--teal); font-size: 13px; }

.booking-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}
.booking-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-right: 1px solid var(--gray-200);
    transition: var(--transition);
}
.booking-trust-item:last-child { border-right: none; }
.booking-trust-item:hover { background: var(--light-bg); }
.booking-trust-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.booking-trust-icon.blue  { background: linear-gradient(135deg,#e0f2fe,#bae6fd); color: var(--primary); }
.booking-trust-icon.green { background: linear-gradient(135deg,#d1fae5,#a7f3d0); color: var(--success); }
.booking-trust-icon.gold  { background: linear-gradient(135deg,#fef3c7,#fde68a); color: #D97706; }
.booking-trust-icon.coral { background: linear-gradient(135deg,#fce7f3,#fbcfe8); color: #be185d; }
.booking-trust-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.booking-trust-text span  { font-size: 12px; color: var(--gray-400); }
.form-section { margin-bottom: 40px; padding-bottom: 30px; border-bottom: 2px solid var(--gray-100); }
.form-section:last-child { border-bottom: none; }
.form-section-title { font-size: 1.4rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.required { color: var(--danger); }
.tour-selector-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-bottom: 12px;
}
.tour-selector-search {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 0 10px;
    background: var(--white);
}
.tour-selector-search i {
    color: var(--gray-400);
    font-size: 13px;
}
.tour-selector-search input {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 10px 0;
}
.tour-selector-search input:focus {
    border: none;
    box-shadow: none;
}
.tour-selector-sort {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
}
.tour-selector-sort select {
    min-width: 175px;
    padding: 9px 12px;
}
.tour-selector-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.tour-featured-picks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}
.tour-pick-card {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    text-align: left;
    padding: 10px 12px;
    cursor: pointer;
    transition: var(--transition);
}
.tour-pick-card:hover {
    border-color: rgba(0, 119, 182, 0.45);
    box-shadow: 0 6px 16px rgba(0, 119, 182, 0.12);
}
.tour-pick-card.is-selected {
    border-color: transparent;
    background: linear-gradient(135deg, rgba(0,119,182,0.14), rgba(0,180,216,0.18));
}
.tour-pick-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 6px;
}
.tour-pick-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    color: var(--gray-500);
}
.tour-pick-meta strong {
    color: var(--primary);
    font-weight: 700;
}
.tour-filter-chip {
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    border-radius: var(--radius-full);
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.tour-filter-chip:hover,
.tour-filter-chip.active {
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}
.tour-selection-list { max-height: 400px; overflow-y: auto; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); padding: 12px; }
.tour-checkbox {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    column-gap: 12px;
    cursor: pointer;
    padding: 14px 14px 14px 42px;
    border-radius: var(--radius-sm);
    transition: background 0.25s;
}
.tour-checkbox:hover { background: var(--light-bg); }
.tour-checkbox input[type="radio"] {
    position: absolute;
    left: 14px;
    top: 22px;
    width: auto;
    margin: 0;
    accent-color: var(--primary);
}
.tour-checkbox-content {
    grid-column: 1;
    grid-row: 1;
}
.tour-price-tag {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-top: 2px;
}
.tour-selection-item.is-selected .tour-checkbox {
    background: rgba(0, 119, 182, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.25);
}
.tour-name { font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.tour-details { font-size: 13px; color: var(--gray-400); }
.tour-selection-empty {
    margin: 10px 2px 0;
    color: var(--gray-500);
    font-size: 13px;
}
.tour-show-more-btn {
    margin-top: 10px;
}
.booking-summary { background: var(--light-bg); padding: 28px; border-radius: var(--radius-sm); margin: 28px 0; }
.summary-item { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.summary-total { display: flex; justify-content: space-between; padding: 18px 0; font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.form-actions { margin-top: 28px; }
.booking-result { padding: 28px; border-radius: var(--radius-sm); text-align: center; }
.booking-result.success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.booking-result.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.info-box, .contact-box { background: var(--white); padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 24px; }
.info-box h3, .contact-box h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.steps-list { padding-left: 20px; }
.steps-list li { padding: 7px 0; line-height: 1.8; }
.benefits-list li, .contact-info li { padding: 9px 0; display: flex; align-items: center; gap: 10px; }
.benefits-list li i { color: var(--success); }
.contact-info li i { color: var(--primary); width: 18px; }

/* ===========================
   Tours Archive
   =========================== */
.tours-archive-section { background: var(--gray-100); }
.tours-layout { display: grid; grid-template-columns: 280px 1fr; gap: 36px; }
.tours-filters { position: sticky; top: 90px; align-self: start; }
.filter-widget { background: var(--white); padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ===========================
   Destinations Archive
   =========================== */
.destinations-archive-section { padding: var(--section-py) 0; background: var(--gray-100); }
.destination-region-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.region-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--gray-800);
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
}
.region-pill span { color: var(--gray-400); font-weight: 500; }
.region-pill:hover,
.region-pill.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: transparent;
}
.region-pill:hover span,
.region-pill.active span { color: rgba(255,255,255,0.85); }
.destinations-grid .destination-card .tour-card-content { padding-bottom: 24px; }
.filter-title { font-size: 1.2rem; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 2px solid var(--primary); }
.filter-group { margin-bottom: 28px; }
.filter-group h4 { font-size: 1rem; margin-bottom: 12px; }
.filter-toggle {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
}
.filter-toggle i {
    transition: transform 0.2s ease;
    color: var(--primary);
}
.filter-group.is-collapsed .filter-toggle i {
    transform: rotate(-90deg);
}
.filter-content {
    display: block;
}
.filter-group label { display: block; padding: 7px 0; cursor: pointer; font-size: 14px; }
.filter-group input[type="checkbox"] { margin-right: 9px; accent-color: var(--primary); }
.location-filter li, .category-filter li { padding: 7px 0; }
.location-filter li a, .category-filter li a { display: flex; justify-content: space-between; color: var(--gray-800); font-size: 14px; }
.location-filter li a:hover, .category-filter li a:hover { color: var(--primary); }
.location-filter li a.active, .category-filter li a.active { color: var(--primary); font-weight: 700; }
.count { color: var(--gray-400); font-size: 12px; }
.duration-filter-form { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 12px; }
.duration-filter-form label { flex: 1 0 100%; }
.duration-filter-submit { margin-top: 6px; }
.duration-filter-clear { margin-top: 6px; font-size: 13px; color: var(--gray-600); text-decoration: underline; }
.duration-filter-clear:hover { color: var(--primary); }
.tours-header-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; padding: 18px 24px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.results-count { font-weight: 600; margin: 0; }
.tours-sorting { display: flex; align-items: center; gap: 10px; }
.tours-sorting select { padding: 8px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 14px; }
.no-tours-found { text-align: center; padding: 80px 20px; background: var(--white); border-radius: var(--radius-lg); }
.no-tours-found i { font-size: 3.5rem; color: var(--gray-300); margin-bottom: 16px; }

/* ===========================
   Footer
   =========================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.85); position: relative; overflow: hidden; }
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--teal), var(--secondary));
}
.footer-widgets { padding: 80px 0 48px; }
.footer-widget-areas { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-widget-title {
    color: var(--white); font-size: 1.1rem; font-weight: 700;
    margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-widget-title::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 36px; height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--teal)); border-radius: 2px;
}
.footer-widget p { color: rgba(255,255,255,0.60); line-height: 1.8; font-size: 14px; }
.footer-widget ul li { padding: 6px 0; }
.footer-widget ul li a { color: rgba(255,255,255,0.60); font-size: 14px; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-widget ul li a::before { content: '›'; color: var(--primary-light); font-size: 16px; line-height: 1; }
.footer-widget ul li a:hover { color: var(--white); transform: translateX(4px); }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; }
.contact-list li i { color: var(--teal); margin-top: 3px; font-size: 14px; flex-shrink: 0; }
.contact-list li span { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-social-links { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.7); border-radius: 50%; font-size: 15px;
    transition: var(--transition); border: 1px solid rgba(255,255,255,0.08);
}
.footer-social-links a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-3px); }
.footer-bottom { background: rgba(0,0,0,0.25); padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.copyright { margin: 0; font-size: 13px; color: rgba(255,255,255,0.55); }
.copyright strong { color: var(--white); }
.footer-bottom-links { display: flex; align-items: center; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.55); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-bottom-links .separator { color: rgba(255,255,255,0.25); }
.footer-menu { display: flex; list-style: none; gap: 20px; margin: 0; padding: 0; }
.footer-menu li a { color: rgba(255,255,255,0.65); font-size: 13px; }

/* ===========================
   Pagination
   =========================== */
.pagination-wrapper { margin-top: 56px; }
.pagination { display: flex; justify-content: center; gap: 8px; list-style: none; padding: 0; }
.pagination .page-numbers { padding: 10px 16px; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); color: var(--gray-800); font-size: 14px; font-weight: 500; transition: var(--transition); }
.pagination .page-numbers:hover,
.pagination .page-numbers.current { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Keep pagination below the grid cards, not in a side grid cell. */
.tours-grid > .pagination-wrapper {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ===========================
   Scroll Animations
   =========================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===========================
   Keyframes
   =========================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===========================
   Back to Top
   =========================== */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white); border: none; border-radius: 50%;
    font-size: 18px; cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(16px);
    transition: var(--transition); box-shadow: 0 8px 24px rgba(0,119,182,0.35);
    z-index: 999; display: flex; align-items: center; justify-content: center;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,119,182,0.5); }

/* ===========================
   Utilities
   =========================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1200px) {
    .footer-widget-areas { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 1024px) {
    :root { --section-py: 72px; }
    .tour-layout, .booking-layout, .tours-layout { grid-template-columns: 1fr; }
    .tours-filters { position: static; }
    .inclusions-grid { grid-template-columns: 1fr; }
    .why-choose-content { grid-template-columns: 1fr; gap: 40px; }
    .why-choose-image { display: none; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:nth-child(even) { border-right: none; }
    .gallery-grid { grid-template-columns: repeat(3,1fr); }
    .booking-hero-content { flex-direction: column; gap: 24px; }
    .booking-hero-stats { width: 100%; }
    .booking-trust-bar { grid-template-columns: repeat(2,1fr); }
    .booking-trust-item:nth-child(2) { border-right: none; }
    .sidebar-contact-card { position: static; }
}
@media (max-width: 768px) {
    :root { --section-py: 56px; }
    .site-header .main-header { padding: 16px 0 !important; }
    .mobile-menu-toggle { display: flex; }
    .tours-archive-section .tours-filters { order: -1; margin-bottom: 8px; }
    .tours-archive-section .filter-widget { padding: 18px; }
    .tours-archive-section .filter-title { margin-bottom: 12px; padding-bottom: 10px; font-size: 1.05rem; }
    .tours-archive-section .filter-group { margin-bottom: 18px; }
    .tours-archive-section .filter-toggle { margin-bottom: 0; padding: 12px 0; border-bottom: 1px solid var(--gray-150); }
    .tours-archive-section .filter-group:last-child .filter-toggle { border-bottom: none; }
    .tours-archive-section .filter-content { padding-top: 12px; }
    .header-actions { gap: 8px; margin-left: auto; }
    .main-navigation {
        position: fixed; top: 0; right: -100%; height: 100vh;
        width: min(320px, 85vw); background: var(--white);
        flex-direction: column; align-items: stretch; justify-content: flex-start;
        padding: 80px 24px 40px; box-shadow: -8px 0 48px rgba(0,0,0,0.18);
        transition: right 0.4s var(--ease); z-index: 999; overflow-y: auto;
    }
    .main-navigation.active { right: 0; }
    .primary-menu, .main-navigation .menu, .main-navigation .menu ul { flex-direction: column; width: 100%; gap: 4px; }
    .primary-menu li, .main-navigation .menu li { width: 100%; }
    .primary-menu li a, .main-navigation .menu a { color: var(--gray-800) !important; padding: 14px 18px; border-radius: var(--radius-sm); display: block; width: 100%; }
    .header-cta { width: 100%; margin-left: 0 !important; margin-top: 8px; text-align: center; }
    .header-actions .header-cta { display: none; }
    body:not(.home) .site-main { padding-top: 0; }
    /* Allow hero content (title + CTA + search) to breathe on smaller phones. */
    .hero-section {
        height: auto;
        min-height: 980px;
        overflow: hidden;
    }
    .hero-slider {
        min-height: 980px;
    }
    .hero-content {
        height: auto;
        min-height: 980px;
        justify-content: flex-start;
        padding: 130px 16px 120px;
    }
    .hero-slide::after {
        height: 72px;
    }
    .hero-search-form { flex-direction: column; border-radius: var(--radius-lg); }
    .hero-search-field { border-right: none; border-bottom: 1px solid var(--gray-200); }
    .hero-search-field:last-of-type { border-bottom: none; }
    .hero-dots { bottom: 100px; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .tours-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .newsletter-content { flex-direction: column; }
    .footer-widget-areas { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .why-choose-text .section-header { text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .tour-selector-toolbar { grid-template-columns: 1fr; }
    .tour-selector-sort { justify-content: space-between; }
    .tour-selector-sort select { min-width: 0; width: 100%; }
    .tour-featured-picks { grid-template-columns: 1fr; }
    .tour-checkbox {
        grid-template-columns: 1fr;
        padding-left: 40px;
    }
    .tour-checkbox input[type="radio"] { top: 18px; }
    .tour-price-tag { margin-left: 0; padding-left: 0; margin-top: 8px; }
    .tours-header-bar { flex-direction: column; gap: 12px; }
    .contact-info { flex-direction: column; gap: 6px; }
    .top-bar-content { flex-direction: column; gap: 8px; text-align: center; }
    .booking-hero-content { flex-direction: column; text-align: center; }
    .booking-hero-stats { width: 100%; justify-content: center; }
    .booking-trust-bar { grid-template-columns: 1fr 1fr; }
    .booking-trust-item:nth-child(2) { border-right: none; }
    .booking-trust-item:nth-child(3) { border-top: 1px solid var(--gray-200); }
    .booking-trust-item:nth-child(4) { border-top: 1px solid var(--gray-200); }
    .sidebar-contact-card { position: static; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 280px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { aspect-ratio: 16 / 10; }
    .newsletter-form-inner { flex-direction: column; padding: 12px; border-radius: var(--radius-md); }
    .newsletter-input { padding: 10px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   NEW: Week 1 Foundation Features
   =========================== */

/* ===========================
   STICKY HEADER
   =========================== */
.site-header {
    position: relative;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    transition: var(--transition);
}

/* Keep transparent hero nav on home until scroll */
body.home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* Sticky solid header on inner pages */
body:not(.home) .site-header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body:not(.home) .site-header.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Ensure nav labels are visible on transparent hero header */
body.home .site-header:not(.scrolled) .primary-menu li a,
body.home .site-header:not(.scrolled) .main-navigation .menu a {
    color: #ffffff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

/* Header CTA Button */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ===========================
   BACK-TO-TOP BUTTON
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 119, 182, 0.3);
    font-size: 1.2rem;
}

.back-to-top:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.4);
    transform: translateY(-4px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* ===========================
   BREADCRUMBS — hidden (removed from templates)
   =========================== */
.breadcrumbs {
    display: none;
}

.breadcrumbs-inner {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 999px;
    padding: 5px 14px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.breadcrumbs-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.breadcrumbs-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.breadcrumbs-separator {
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    font-size: 0.65rem;
    margin: 0 1px;
}

.breadcrumbs-current {
    color: var(--gray-600);
    font-weight: 400;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   LAZY LOADING
   =========================== */
.lazy-image {
    background: var(--gray-200);
    position: relative;
    overflow: hidden;
}

.lazy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: lazyLoad 0.6s ease;
}

@keyframes lazyLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Blur-up effect for lazy images */
.lazy-blur {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

.lazy-blur.loaded {
    filter: blur(0);
}

/* ===========================
   HERO IMAGE LAZY LOADING
   =========================== */
.hero-slide {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

/* Re-enable parallax-like fixed attachment only on larger non-touch screens. */
@media (min-width: 1201px) and (hover: hover) and (pointer: fine) {
    .hero-slide {
        background-attachment: fixed;
    }
}

.hero-slide img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 10px 0;
        font-size: 0.72rem;
    }

    .breadcrumbs-inner {
        gap: 3px;
        padding: 4px 12px;
    }

    .breadcrumbs-separator {
        font-size: 0.6rem;
        margin: 0 0.2rem;
    }

    .site-header {
        padding: 8px 0;
    }

    .header-cta {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
