/* ═══════════════════════════════════════════════
   Travel Test Theme — 2026 Modern Redesign
   Dark luxury aesthetic · Glassmorphism · Micro-interactions
   ═══════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    /* Core Palette */
    --gold: #D4A853;
    --gold-light: #E8C97A;
    --gold-dark: #B8892E;
    --gold-glow: rgba(212, 168, 83, 0.35);

    /* Dark Tones */
    --dark-900: #0A0A0F;
    --dark-800: #0F0F1A;
    --dark-700: #141422;
    --dark-600: #1A1A2E;
    --dark-500: #22223A;
    --dark-400: #2A2A45;
    --dark-300: #3A3A55;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #868E96;
    --gray-700: #495057;
    --gray-800: #343A40;

    /* Semantic */
    --success: #2DD4A8;
    --error: #FF6B6B;
    --tripadvisor: #00AA6C;
    --star: #F5A623;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-py: 100px;
    --container: 1240px;
    --container-narrow: 820px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 8px 30px rgba(212, 168, 83, 0.25);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 0.2s;
    --t-base: 0.35s;
    --t-slow: 0.5s;

    /* Semantic tokens */
    --page-bg: var(--gray-50);
    --card-bg: var(--white);
    --text-primary: var(--dark-600);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --border-color: var(--gray-200);
}


/* ─── Reset & Base ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--page-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color var(--t-fast) var(--ease);
}

a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

ul { list-style: none; }


/* ─── Container ─── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow { max-width: var(--container-narrow); }


/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--t-base) var(--ease);
    text-decoration: none;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--t-fast) var(--ease);
}

.btn:hover::before { opacity: 1; }

.btn--primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-900);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--dark-900);
}

.btn--primary:active { transform: translateY(-1px); }

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--dark-800);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn--outline-green {
    background: transparent;
    color: var(--tripadvisor);
    border-color: var(--tripadvisor);
}

.btn--outline-green:hover {
    background: var(--tripadvisor);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn--ghost:hover {
    background: var(--gold);
    color: var(--dark-900);
    transform: translateY(-2px);
}

.btn--lg { padding: 16px 40px; font-size: 15px; }
.btn--block { display: flex; justify-content: center; width: 100%; }


/* ─── Sections ─── */
.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section--features {
    background: var(--dark-800);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section--features::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    pointer-events: none;
}

.section--testimonials {
    background: var(--gray-50);
}

.section--cta {
    background: var(--dark-800);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section--cta::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    pointer-events: none;
}

.section--tripadvisor {
    padding: 50px 0;
    background: var(--white);
}

.section--related { background: var(--gray-50); }
.section--filters { padding: 30px 0 0; background: var(--white); }
.section--contact { background: var(--white); }


/* ─── Section Headers ─── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    background: rgba(212, 168, 83, 0.1);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-header__title {
    margin-bottom: 16px;
}

.section-header--light .section-header__title {
    color: var(--white);
}

.section-header__subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    font-weight: 400;
}

.section-header__divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 24px auto 0;
    border-radius: 3px;
}

.section-header--light .section-header__divider {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.section-header--light .section-header__subtitle {
    color: rgba(255,255,255,0.6);
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}


/* ═══════════════════════════════════════════════
   SITE HEADER — Transparent to Solid on Scroll
   ═══════════════════════════════════════════════ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--t-base) var(--ease);
    padding: 0;
}

body.scrolled .site-header {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.3);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height var(--t-base) var(--ease);
}

body.scrolled .site-header__inner {
    height: 68px;
}

.site-header__logo .site-title-link {
    text-decoration: none;
}

.site-header__logo .site-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    transition: color var(--t-fast) var(--ease);
}

.site-header__logo .custom-logo {
    max-height: 48px;
    width: auto;
}

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu li { position: relative; }

.nav-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--t-fast) var(--ease);
    border-radius: var(--radius-full);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
    color: var(--gold);
}

.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
    background: rgba(212, 168, 83, 0.1);
}

/* Submenu — glass panel */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--t-base) var(--ease);
    box-shadow: var(--shadow-xl);
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.nav-menu .sub-menu a {
    padding: 10px 16px;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.2px;
    border-radius: var(--radius-md);
}

.nav-menu .sub-menu a:hover {
    background: rgba(212, 168, 83, 0.1);
}

/* Hamburger */
.site-header__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1002;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 26px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--t-base) var(--ease);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile Nav — full-screen glass slide */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    z-index: 1001;
    transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav.active { right: 0; }

/* Close button */
.mobile-nav__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    z-index: 2;
}

.mobile-nav__close:hover {
    background: var(--gold);
    color: var(--dark-900);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.mobile-nav__inner {
    padding: 100px 36px 50px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.mobile-nav__nav {
    flex: 1;
}

.mobile-nav__menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav__menu li a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all var(--t-fast) var(--ease);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.mobile-nav__menu li:first-child a {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav__menu li a:hover,
.mobile-nav__menu li.current-menu-item > a,
.mobile-nav__menu li.current_page_item > a {
    color: var(--gold);
    padding-left: 12px;
}

.mobile-nav__contact {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav__contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(212,168,83,0.12), rgba(212,168,83,0.04));
    border: 1px solid rgba(212,168,83,0.2);
    border-radius: var(--radius-lg);
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--t-fast) var(--ease);
}

.mobile-nav__contact a:hover {
    background: var(--gold);
    color: var(--dark-900);
    border-color: var(--gold);
}

.mobile-nav__contact a i {
    font-size: 18px;
}


/* ═══════════════════════════════════════════════
   HERO — Full-screen cinematic
   ═══════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--dark-900);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(10, 10, 15, 0.5) 40%,
        rgba(10, 10, 15, 0.3) 70%,
        rgba(10, 10, 15, 0.5) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px 160px;
}

.hero__title {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.05;
    opacity: 0;
    transform: translateY(40px);
}

.hero__title.animate-in {
    animation: heroFadeUp 1s var(--ease) forwards;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 620px;
    margin: 0 auto 40px;
    opacity: 0;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-weight: 400;
    transform: translateY(30px);
}

.hero__subtitle.animate-in {
    animation: heroFadeUp 1s 0.2s var(--ease) forwards;
}

.hero__cta {
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 120px;
}

.hero__cta.animate-in {
    animation: heroFadeUp 1s 0.4s var(--ease) forwards;
}

/* Floating Stats Bar — glassmorphism */
.hero__stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    z-index: 3;
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    opacity: 0;
    width: max-content;
    max-width: calc(100% - 48px);
}

.hero__stats.animate-in {
    animation: statsFadeUp 1s 0.6s var(--ease) forwards;
}

@keyframes statsFadeUp {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.hero__stat {
    text-align: center;
    padding: 24px 40px;
    position: relative;
}

.hero__stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.12);
}

.hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.hero__stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.5;
}

.hero__scroll-line {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { top: -50%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ═══════════════════════════════════════════════
   PAGE HERO (Internal pages)
   ═══════════════════════════════════════════════ */

.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-800);
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-900), rgba(10,10,15,0.6));
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 100px 20px 60px;
}

.page-hero__title {
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero__title--404 {
    font-size: clamp(6rem, 18vw, 12rem);
    opacity: 0.15;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero__subtitle {
    font-size: 17px;
    opacity: 0.65;
    max-width: 560px;
    margin: 0 auto;
}

.page-hero__meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.6;
    margin-top: 16px;
}

.page-hero__meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* ═══════════════════════════════════════════════
   TRIPADVISOR WIDGET
   ═══════════════════════════════════════════════ */

.tripadvisor-widget {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 28px 36px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.tripadvisor-widget::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--tripadvisor), #00cc84);
    border-radius: 4px 0 0 4px;
}

.tripadvisor-widget__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--tripadvisor);
    white-space: nowrap;
}

.tripadvisor-widget__logo i { font-size: 28px; }

.tripadvisor-widget__score {
    font-size: 32px;
    font-weight: 800;
    color: var(--tripadvisor);
    font-family: var(--font-heading);
}

.tripadvisor-widget__stars {
    display: flex;
    gap: 3px;
    font-size: 12px;
    margin: 4px 0;
}

.tripadvisor-widget__count {
    font-size: 14px;
    color: var(--text-secondary);
}

.tripadvisor-widget__ranking {
    font-size: 13px;
    color: var(--text-muted);
}

.tripadvisor-widget__actions { margin-left: auto; }


/* ═══════════════════════════════════════════════
   TOUR CARDS — Glassmorphism + gradient badges
   ═══════════════════════════════════════════════ */

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tours-grid--3 { grid-template-columns: repeat(3, 1fr); }

.tours-grid__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.tours-grid__empty i {
    font-size: 56px;
    margin-bottom: 24px;
    opacity: 0.2;
    color: var(--gold);
}

/* ─── Tours Pagination ─── */
.tours-pagination {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color, rgba(255,255,255,0.08));
}

.tours-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tours-pagination .nav-links a,
.tours-pagination .nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    background: var(--glass-bg, rgba(255,255,255,0.06));
    color: var(--text-secondary, #ADB5BD);
}

.tours-pagination .nav-links a:hover {
    background: var(--gold);
    color: var(--dark-900, #0A0A0F);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

.tours-pagination .nav-links .current {
    background: var(--gold);
    color: var(--dark-900, #0A0A0F);
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.25);
}

.tours-pagination .nav-links .prev,
.tours-pagination .nav-links .next {
    font-size: 14px;
    padding: 0 16px;
    gap: 6px;
}

.tours-pagination .nav-links .dots {
    border: none;
    background: none;
    color: var(--text-muted, #6C757D);
    min-width: 30px;
    padding: 0;
    letter-spacing: 2px;
}

.tour-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--t-base) var(--ease);
    border: 1px solid var(--border-color);
    position: relative;
}

.tour-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 168, 83, 0.2);
}

.tour-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.tour-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.tour-card:hover .tour-card__img {
    transform: scale(1.08);
}

.tour-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-700), var(--dark-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 48px;
    opacity: 0.5;
}

/* Gradient badge */
.tour-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #FF6B6B, #EE5A24);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(238, 90, 36, 0.4);
}

/* Category pill — glass on image */
.tour-card__category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Price badge — glass at bottom */
.tour-card__price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-md);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}

.tour-card__price-old {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 13px;
}

.tour-card__price-current {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-card__content {
    padding: 24px;
}

.tour-card__title {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.3;
}

.tour-card__title a {
    color: var(--text-primary);
    transition: color var(--t-fast) var(--ease);
}

.tour-card__title a:hover { color: var(--gold); }

.tour-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.tour-card__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-card__meta-item i {
    color: var(--gold);
    font-size: 12px;
}

.tour-card__excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.65;
}

.tour-card__btn {
    font-size: 11px;
    padding: 10px 28px;
}


/* ─── Tour Filters ─── */
.tour-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tour-filters__btn {
    padding: 10px 24px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
}

.tour-filters__btn:hover,
.tour-filters__btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: transparent;
    color: var(--dark-900);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════
   TOUR DETAIL PAGE
   ═══════════════════════════════════════════════ */

/* Quick Facts Bar */
.tour-quick-facts {
    background: var(--dark-800);
    padding: 0;
    position: relative;
    z-index: 3;
    margin-top: -1px;
}

.tour-quick-facts__grid {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.tour-quick-facts__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.tour-quick-facts__item:last-child {
    border-right: none;
}

.tour-quick-facts__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212,168,83,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.tour-quick-facts__info {
    display: flex;
    flex-direction: column;
}

.tour-quick-facts__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
}

.tour-quick-facts__value {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

@media (max-width: 768px) {
    .tour-quick-facts__grid {
        flex-direction: column;
    }
    .tour-quick-facts__item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 16px 24px;
    }
    .tour-quick-facts__item:last-child {
        border-bottom: none;
    }
}

.tour-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tour-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.tour-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-900) 0%, rgba(10,10,15,0.2) 100%);
}

.tour-hero__content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 100px 0 50px;
    width: 100%;
}

.tour-hero__title {
    color: var(--white);
    margin-bottom: 16px;
}

.tour-hero__meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.7;
}

.tour-hero__meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-hero__meta i { color: var(--gold); }

/* Tour Layout */
.tour-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.tour-layout__sidebar {
    position: sticky;
    top: 100px;
}

.tour-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}

.tour-section:last-child { border-bottom: none; }

.tour-section__title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.tour-section__title i { color: var(--gold); }

.tour-content {
    font-size: 16px;
    line-height: 1.85;
}

.tour-content p { margin-bottom: 18px; }

/* Itinerary */
.itinerary__day {
    display: flex;
    gap: 24px;
    margin-bottom: 5px;
}

.itinerary__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.itinerary__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-900);
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
}

.itinerary__line {
    width: 2px;
    flex: 1;
    min-height: 20px;
    background: var(--gray-200);
    margin: 6px 0;
}

.itinerary__content {
    padding-bottom: 28px;
}

.itinerary__day-label {
    display: inline-block;
    background: rgba(212,168,83,0.12);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.itinerary__title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.itinerary__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.itinerary__desc p {
    margin-bottom: 12px;
}

.itinerary__desc p:last-child {
    margin-bottom: 0;
}

/* Tour Lists */
.tour-list li {
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}

.tour-list--highlights li i,
.tour-list--included li i {
    color: var(--success);
    margin-top: 4px;
}

.tour-list--excluded li i {
    color: var(--error);
    margin-top: 4px;
}

.tour-inclusions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.tour-inclusions__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.tour-inclusions__title--yes { color: var(--success); }
.tour-inclusions__title--no { color: var(--error); }

/* Gallery */
.tour-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.tour-gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.tour-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.tour-gallery__item:hover img { transform: scale(1.1); }

.tour-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    opacity: 0;
    transition: opacity var(--t-fast) var(--ease);
}

.tour-gallery__item:hover .tour-gallery__overlay { opacity: 1; }

/* Map */
.tour-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tour-map iframe {
    display: block;
}

/* ═══════════════════════════════════════════════
   TOUR BOOKING FORM (like makemoroccotours.com)
   ═══════════════════════════════════════════════ */
.tour-booking-form {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 36px;
    border: 1px solid var(--border-color);
}

.tour-booking-form__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tour-booking-form__field {
    display: flex;
    flex-direction: column;
}

.tour-booking-form__field--full {
    width: 100%;
}

.tour-booking-form__field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.tour-booking-form__field input,
.tour-booking-form__field select,
.tour-booking-form__field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--gray-50);
    transition: all var(--t-fast) var(--ease);
    line-height: 1.5;
}

.tour-booking-form__field input:focus,
.tour-booking-form__field select:focus,
.tour-booking-form__field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
    background: var(--white);
}

.tour-booking-form__readonly {
    background: var(--gray-100) !important;
    color: var(--text-secondary) !important;
    cursor: not-allowed;
    font-weight: 600;
}

.tour-booking-form__field textarea {
    resize: vertical;
    min-height: 100px;
}

.tour-booking-form__field select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23868E96' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.tour-booking-form__submit {
    margin-top: 8px;
}

.tour-booking-form__status {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    display: none;
}

.tour-booking-form__status--success {
    display: block;
    background: rgba(45, 212, 168, 0.1);
    color: var(--success);
    border: 1px solid rgba(45, 212, 168, 0.2);
}

.tour-booking-form__status--error {
    display: block;
    background: rgba(255, 107, 107, 0.1);
    color: var(--error);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

@media (max-width: 640px) {
    .tour-booking-form__row {
        grid-template-columns: 1fr;
    }
    .tour-booking-form {
        padding: 24px;
    }
}

/* WhatsApp Button */
.btn--whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn--whatsapp:hover {
    background: #128C7E;
    color: var(--white);
    border-color: #128C7E;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   BOOKING CALENDAR (legacy, kept for compatibility)
   ═══════════════════════════════════════════════ */
.booking-calendar {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 32px;
    border: 1px solid var(--border-color);
}

.booking-calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.booking-calendar__guests {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-50);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.booking-calendar__guests i {
    color: var(--gold);
}

.booking-calendar__guests select {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    padding-right: 4px;
}

.booking-calendar__labels {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.booking-calendar__labels span.active {
    color: var(--gold);
}

.booking-calendar__legend {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.booking-calendar__legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.booking-calendar__legend-swatch {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: inline-block;
}

.booking-calendar__legend-swatch--blocked {
    background: var(--gray-400);
}

.booking-calendar__legend-swatch--unavailable {
    background: var(--gray-100);
    border: 1px solid var(--border-color);
}

/* Calendar Grid */
.booking-calendar__months {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.booking-calendar__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.booking-calendar__nav-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all var(--t-fast) var(--ease);
}

.booking-calendar__nav-btn:hover {
    background: var(--gold);
    color: var(--dark-900);
    border-color: var(--gold);
}

.booking-cal-month__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

.booking-cal-month__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.booking-cal-month__grid .cal-header {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    padding: 6px 0;
    text-transform: lowercase;
}

.booking-cal-month__grid .cal-day {
    padding: 8px 2px;
    font-size: 13px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    position: relative;
    font-weight: 500;
}

.booking-cal-month__grid .cal-day:hover:not(.cal-day--blocked):not(.cal-day--past):not(.cal-day--empty) {
    background: rgba(212, 168, 83, 0.15);
    color: var(--gold-dark);
}

.booking-cal-month__grid .cal-day--empty {
    cursor: default;
}

.booking-cal-month__grid .cal-day--past {
    color: var(--gray-300);
    cursor: default;
}

.booking-cal-month__grid .cal-day--blocked {
    background: var(--gray-300);
    color: var(--gray-500);
    cursor: not-allowed;
    text-decoration: line-through;
}

.booking-cal-month__grid .cal-day--today {
    font-weight: 800;
    box-shadow: inset 0 0 0 2px var(--gold);
}

.booking-cal-month__grid .cal-day--selected {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-900);
    font-weight: 700;
}

.booking-cal-month__grid .cal-day--in-range {
    background: rgba(212, 168, 83, 0.12);
    color: var(--gold-dark);
}

/* Booking Form */
.booking-calendar__form {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.booking-calendar__selected {
    flex: 1;
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--text-primary);
    min-width: 200px;
}

.booking-calendar__selected strong {
    color: var(--gold-dark);
}

.booking-calendar__form-fields {
    display: none;
    width: 100%;
    gap: 12px;
    padding-top: 16px;
    flex-wrap: wrap;
}

.booking-calendar__form-fields.active {
    display: flex;
}

.booking-calendar__field {
    flex: 1;
    min-width: 180px;
}

.booking-calendar__field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-calendar__field input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color var(--t-fast) var(--ease);
}

.booking-calendar__field input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.booking-calendar__status {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

.booking-calendar__status--success {
    background: rgba(45, 212, 168, 0.1);
    color: var(--success);
    border: 1px solid rgba(45, 212, 168, 0.2);
}

.booking-calendar__status--error {
    background: rgba(255, 107, 107, 0.1);
    color: var(--error);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-calendar__months {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .booking-calendar__months {
        grid-template-columns: 1fr;
    }
    .booking-calendar__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .booking-calendar {
        padding: 20px;
    }
}

/* Sidebar Card */
.tour-sidebar-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.tour-sidebar-card__header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.tour-sidebar-card__badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B, #EE5A24);
    color: var(--white);
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.tour-sidebar-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tour-sidebar-card__price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 18px;
}

.tour-sidebar-card__price-current {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-sidebar-card__per {
    font-size: 13px;
    color: var(--text-muted);
}

.tour-sidebar-card__details {
    margin-bottom: 28px;
}

.tour-sidebar-card__details li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.tour-sidebar-card__details li:last-child { border-bottom: none; }
.tour-sidebar-card__details li i { color: var(--gold); width: 20px; text-align: center; }

.tour-sidebar-card__share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
}

.tour-sidebar-card__share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--text-secondary);
    transition: all var(--t-fast) var(--ease);
}

.tour-sidebar-card__share a:hover {
    background: var(--gold);
    color: var(--dark-900);
    transform: translateY(-2px);
}

.tour-sidebar-card--help {
    background: linear-gradient(135deg, var(--dark-700), var(--dark-800));
    color: var(--white);
    position: static;
    border: 1px solid rgba(255,255,255,0.06);
}

.tour-sidebar-card--help h3 {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.tour-sidebar-card--help p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 18px;
}


/* ═══════════════════════════════════════════════
   FEATURES / WHY CHOOSE US — glass cards
   ═══════════════════════════════════════════════ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--t-base) var(--ease);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateY(-6px);
}

.feature-card__icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(212,168,83,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: var(--gold);
    transition: all var(--t-base) var(--ease);
}

.feature-card:hover .feature-card__icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-900);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.feature-card__title {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.feature-card__text {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   TESTIMONIALS SLIDER
   ═══════════════════════════════════════════════ */

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-slider__track {
    display: flex;
    transition: transform 0.6s var(--ease);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    transition: all var(--t-base) var(--ease);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 168, 83, 0.15);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-card__avatar { flex-shrink: 0; }

.testimonial-card__img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-light);
}

.testimonial-card__avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,168,83,0.2), rgba(212,168,83,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
}

.testimonial-card__name {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-card__tour {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-card__stars {
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
    font-size: 14px;
}

.testimonial-card__content {
    margin-bottom: 16px;
    position: relative;
}

.testimonial-card__quote-icon {
    color: var(--gold-light);
    font-size: 20px;
    margin-bottom: 8px;
    display: block;
    opacity: 0.4;
}

.testimonial-card__content p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-secondary);
}

.testimonial-card__location {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-card__location i { color: var(--gold); }

/* Slider Nav */
.testimonials-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.testimonials-slider__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    color: var(--text-primary);
}

.testimonials-slider__btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-900);
    transform: scale(1.1);
}

.testimonials-slider__dots {
    display: flex;
    gap: 10px;
}

.testimonials-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    border: none;
    padding: 0;
}

.testimonials-slider__dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: var(--radius-full);
}


/* ═══════════════════════════════════════════════
   CTA BLOCK
   ═══════════════════════════════════════════════ */

.cta-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-block__title {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-block__text {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
}

.cta-block__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════ */

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--t-base) var(--ease);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 168, 83, 0.15);
}

.blog-card__image {
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card__img { transform: scale(1.06); }

.blog-card__content { padding: 24px; }

.blog-card__meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-card__meta i { color: var(--gold); }

.blog-card__title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card__title a { color: var(--text-primary); }
.blog-card__title a:hover { color: var(--gold); }

.blog-card__excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.65;
}

.blog-card__link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card__link:hover {
    color: var(--gold-dark);
    gap: 10px;
}

/* Blog Sidebar */
.blog-layout__sidebar .widget {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.widget-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.widget-list li:last-child { border-bottom: none; }

.widget-list li a {
    font-size: 14px;
    color: var(--text-primary);
    transition: all var(--t-fast) var(--ease);
}

.widget-list li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

/* Single Post */
.entry-content {
    font-size: 16px;
    line-height: 1.9;
}

.entry-content p { margin-bottom: 22px; }

.entry-content h2,
.entry-content h3 {
    margin-top: 36px;
    margin-bottom: 16px;
}

.entry-content img {
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.entry-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    margin: 24px 0;
    background: var(--gray-50);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}

.entry-tags {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.entry-tag {
    display: inline-block;
    padding: 5px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-secondary);
    transition: all var(--t-fast) var(--ease);
}

.entry-tag:hover {
    background: var(--gold);
    color: var(--dark-900);
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--border-color);
}

.post-navigation__link {
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--t-fast) var(--ease);
    border: 1px solid var(--border-color);
}

.post-navigation__link:hover {
    border-color: rgba(212, 168, 83, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.post-navigation__link--next { text-align: right; }

.post-navigation__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.post-navigation__title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

/* Pagination */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.nav-links .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--t-fast) var(--ease);
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: transparent;
    color: var(--dark-900);
}


/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    transition: all var(--t-base) var(--ease);
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 168, 83, 0.2);
}

.contact-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-900);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.25);
}

.contact-card__title { margin-bottom: 8px; }

.contact-card a { color: var(--text-primary); }
.contact-card a:hover { color: var(--gold); }

/* Form */
.contact-form-wrapper {
    max-width: 820px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    text-align: center;
    margin-bottom: 36px;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--t-fast) var(--ease);
    background: var(--gray-50);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.1);
}

.contact-form__submit { width: 100%; margin-top: 12px; }

.contact-form__status {
    margin-top: 18px;
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

.contact-form__status--success {
    background: rgba(45, 212, 168, 0.1);
    color: #1a9a78;
    border: 1px solid rgba(45, 212, 168, 0.2);
}

.contact-form__status--error {
    background: rgba(255, 107, 107, 0.1);
    color: #c0392b;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

/* Search */
.search-form__inner {
    display: flex;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-50);
}

.search-form__input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    background: transparent;
}

.search-form__btn {
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: var(--dark-900);
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    font-weight: 700;
}

.search-form__btn:hover { opacity: 0.85; }

/* No Content */
.content-none {
    padding: 80px 20px;
    text-align: center;
}

.content-none__icon {
    font-size: 56px;
    color: var(--gold);
    opacity: 0.2;
    margin-bottom: 24px;
}

.content-none h2 { margin-bottom: 16px; }

.content-none p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

.site-footer {
    background: var(--dark-900);
    color: rgba(255, 255, 255, 0.6);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212,168,83,0.06), transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-col__title {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.footer-col__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

.footer-col__text {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    transition: all var(--t-fast) var(--ease);
    border: 1px solid rgba(255,255,255,0.06);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark-900);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-links li { padding: 6px 0; }

.footer-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--t-fast) var(--ease);
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact li a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom__inner {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}


/* ═══════════════════════════════════════════════
   COMMENTS
   ═══════════════════════════════════════════════ */

.comments-area {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--border-color);
}

.comments-title { margin-bottom: 28px; }

.comment-list { list-style: none; }

.comment-list .comment {
    margin-bottom: 20px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 16px;
    background: var(--gray-50);
    transition: all var(--t-fast) var(--ease);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.comment-form .submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-900);
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--t-base) var(--ease);
}

.comment-form .submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}


/* ═══════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--t-base) var(--ease);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
    transition: opacity var(--t-fast);
}

.lightbox__close:hover { opacity: 1; }

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-lg);
}


/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(9) { transition-delay: 0.45s; }

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .tour-layout { grid-template-columns: 1fr; }
    .tour-sidebar-card { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tripadvisor-widget { flex-wrap: wrap; }
    .hero__stat { padding: 20px 28px; }
}

@media (max-width: 768px) {
    :root { --section-py: 64px; }

    /* Header */
    .site-header__nav { display: none; }
    .site-header__toggle { display: block; }

    /* Hero — stop vertical centering, let content flow */
    .hero {
        display: block;
        min-height: auto;
        padding: 0;
    }

    .hero__content {
        padding: 120px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .hero__cta {
        margin-bottom: 0;
        position: relative;
        z-index: 4;
        order: 0;
    }

    .hero__stats {
        order: 1;
    }

    .hero__stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        border-radius: var(--radius-lg);
        max-width: 100%;
        width: 100%;
        opacity: 1;
        margin-top: 0;
    }

    .hero__stats.animate-in {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero__stat {
        flex: 1 1 45%;
        padding: 16px 12px;
    }

    .hero__stat-number { font-size: 1.5rem; }
    .hero__stat:not(:last-child)::after { display: none; }
    .hero__scroll { display: none; }

    /* Grids */
    .tours-grid { grid-template-columns: 1fr; gap: 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-layout { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .tour-inclusions { grid-template-columns: 1fr; }
    .contact-form__grid { grid-template-columns: 1fr; }

    /* Testimonials */
    .testimonial-card { flex: 0 0 calc(100% - 20px); }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }

    /* Pages */
    .page-hero { min-height: 280px; }
    .tour-hero { min-height: 340px; }
    .post-navigation { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px; }
}

@media (max-width: 480px) {
    .hero__content { padding: 110px 16px 32px; }
    .hero__stats { flex-direction: column; width: 100%; }
    .hero__stat { flex: 0 0 auto; }
    .tour-card__meta { flex-direction: column; gap: 6px; }

    .cta-block__buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-block__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-nav { max-width: 100%; }
}


/* ═══════════════════════════════════════════════
   TOP FEATURES BAR
   ═══════════════════════════════════════════════ */

.top-features-bar {
    background: var(--dark-800);
    padding: 14px 0;
    border-top: 1px solid rgba(212, 168, 83, 0.15);
}

.top-features-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.top-features-bar__item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.top-features-bar__icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    flex-shrink: 0;
}

.top-features-bar__btn {
    margin-left: auto;
}


/* ═══════════════════════════════════════════════
   GOLDEN UTILITY
   ═══════════════════════════════════════════════ */

.text-gold { color: var(--gold); }

.btn--gold {
    background: var(--gold);
    color: var(--dark-900);
    border: 2px solid var(--gold);
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn--gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

.btn--dark {
    background: var(--dark-800);
    color: var(--white);
    border: 2px solid var(--dark-800);
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn--dark:hover {
    background: var(--dark-600);
    border-color: var(--dark-600);
}

.btn--white-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn--white-outline:hover {
    background: var(--white);
    color: var(--dark-900);
}


/* ═══════════════════════════════════════════════
   ABOUT INTRO SECTION
   ═══════════════════════════════════════════════ */

.section--about-intro {
    background: var(--white);
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-family: Georgia, 'Times New Roman', serif;
}

.about-intro__text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro__buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-intro__cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-intro__card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(212, 168, 83, 0.06);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform var(--t-base) var(--ease);
}

.about-intro__card:hover {
    transform: translateY(-4px);
}

.about-intro__card-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.about-intro__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro__card-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.about-intro__card-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}


/* ═══════════════════════════════════════════════
   DESERT DECORATION (Camel Caravan SVG)
   ═══════════════════════════════════════════════ */

.section--tours-header {
    padding: 60px 0 0;
    background: var(--white);
}

.section-header--decorated {
    text-align: center;
}

.desert-decoration {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.desert-decoration__svg {
    width: 240px;
    height: 72px;
    color: var(--gold-light);
    opacity: 0.7;
}

.section-header--decorated .section-header__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    color: var(--text-primary);
}


/* ═══════════════════════════════════════════════
   WHY CHOOSE US — 3-column layout
   ═══════════════════════════════════════════════ */

.section--why-choose {
    padding: 80px 0;
    background: var(--gray-50);
}

.why-choose {
    display: grid;
    grid-template-columns: 1fr 280px 1fr;
    gap: 48px;
    align-items: start;
}

.why-choose__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.why-choose__text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.why-choose__map {
    display: flex;
    justify-content: center;
}

.why-choose__map-frame {
    width: 260px;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--gold);
}

.why-choose__map-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose__features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-choose__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-choose__feature-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose__feature h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.why-choose__feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}


/* ═══════════════════════════════════════════════
   TESTIMONIALS — redesigned layout
   ═══════════════════════════════════════════════ */

.section--testimonials {
    background: #F5EFE0;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.desert-bg-illustration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300' fill='none'%3E%3Cpath d='M0 300 Q200 200 400 250 Q600 300 800 220 Q1000 140 1200 200 Q1400 260 1440 230 L1440 300 Z' stroke='%23D4A853' stroke-width='1' fill='none' opacity='0.15'/%3E%3Cpath d='M600 180 Q610 160 615 162 Q617 155 622 158 L625 165 Q630 162 633 168 L635 180' stroke='%23D4A853' stroke-width='1' fill='none' opacity='0.15'/%3E%3Cline x1='608' y1='180' x2='608' y2='190' stroke='%23D4A853' stroke-width='0.8' opacity='0.15'/%3E%3Cline x1='628' y1='180' x2='628' y2='190' stroke='%23D4A853' stroke-width='0.8' opacity='0.15'/%3E%3Cpath d='M700 170 L700 145 Q690 130 680 135 Q688 125 700 130 Q695 115 705 123 Q700 113 712 125 Q710 117 718 130 Q720 120 715 135 Q725 127 710 145' stroke='%23D4A853' stroke-width='0.8' fill='none' opacity='0.12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    pointer-events: none;
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.testimonials-layout__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.testimonials-layout__text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.ta-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.ta-summary__label {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.ta-summary__circles {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.ta-summary__count {
    font-size: 13px;
    color: var(--text-secondary);
}

.ta-summary__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-primary);
}

.testimonials-layout__reviews .testimonials-slider {
    margin-bottom: 16px;
}

.testimonials-layout__reviews .testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 24px;
}


/* ═══════════════════════════════════════════════
   CTA HERO — full-width background image
   ═══════════════════════════════════════════════ */

.section--cta-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}

.cta-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(2px);
}

.cta-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-hero__title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.25;
}

.cta-hero__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 36px;
}

.cta-hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════
   TOUR CARDS — updated style (centered text)
   ═══════════════════════════════════════════════ */

.tour-card {
    border-radius: var(--radius-md);
    background: #FDF8F0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base) var(--ease);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.tour-card__content {
    padding: 24px;
    text-align: center;
}

.tour-card__title {
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.tour-card__excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.65;
}

.tour-card__btn {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 12px 24px;
}


/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all var(--t-fast) var(--ease);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: #fff;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — new sections
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .why-choose {
        grid-template-columns: 1fr 1fr;
    }
    .why-choose__map {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-features-bar__inner {
        gap: 20px;
        justify-content: center;
    }
    .top-features-bar__btn {
        margin-left: 0;
    }
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-choose {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cta-hero__title {
        font-size: 1.6rem;
    }
    .cta-hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .top-features-bar__item span {
        font-size: 12px;
    }
    .about-intro__card {
        flex-direction: column;
        text-align: center;
    }
    .about-intro__card-img {
        width: 100px;
        height: 100px;
    }
    .whatsapp-float {
        bottom: 16px;
        left: 16px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}
