/* ================================================================
   GANISHER TRAVEL — Main Stylesheet
   Palette: Warm Brown (#5C3318) · Teal (#2E8A7A) · Gold (#C9A040)
   ================================================================ */

/* ───────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
─────────────────────────────────────────────── */
:root {
  /* Brand — Warm Brown (from logo text) */
  --pr:        #5C3318;
  --pr-dark:   #3D1F0A;
  --pr-med:    #7A4E28;
  --pr-light:  #A87248;
  --pr-pale:   #F5E8D8;
  --pr-50:     #FEF8F2;

  /* Brand — Teal (from minaret tiles) */
  --te:        #2E8A7A;
  --te-dark:   #1E6A5C;
  --te-med:    #4AA898;
  --te-light:  #7ACAC0;
  --te-pale:   #E0F5F2;

  /* Brand — Gold (sandy/warm tones) */
  --go:        #C9A040;
  --go-dark:   #A07828;
  --go-light:  #E8C060;
  --go-pale:   #FFF5D8;

  /* Neutrals */
  --dark:      #1A0A02;
  --text:      #3A2010;
  --text-med:  #6A4A30;
  --text-mut:  #9A7858;
  --border:    #E0CDB8;
  --light:     #F5EDE0;
  --cream:     #FEF6EC;
  --white:     #FFFFFF;

  /* Shadows (warm-tinted) */
  --sh-xs: 0 1px 4px  rgba(90,50,20,.06);
  --sh-sm: 0 2px 10px rgba(90,50,20,.08);
  --sh-md: 0 4px 24px rgba(90,50,20,.12);
  --sh-lg: 0 8px 40px rgba(90,50,20,.18);
  --sh-xl: 0 16px 60px rgba(90,50,20,.22);

  /* Spacing (8-pt scale) */
  --sp-1: .5rem;   /* 8px  */
  --sp-2: 1rem;    /* 16px */
  --sp-3: 1.5rem;  /* 24px */
  --sp-4: 2rem;    /* 32px */
  --sp-5: 2.5rem;  /* 40px */
  --sp-6: 3rem;    /* 48px */
  --sp-8: 4rem;    /* 64px */
  --sp-10:5rem;    /* 80px */
  --sp-12:6rem;    /* 96px */
  --sp-16:8rem;    /* 128px*/

  /* Border-radius */
  --r-sm:  .5rem;
  --r-md:  .75rem;
  --r-lg:  1rem;
  --r-xl:  1.5rem;
  --r-2xl: 2rem;
  --r-full: 9999px;

  /* Transitions */
  --ease:   cubic-bezier(.4,0,.2,1);
  --dur:    .3s;
  --dur-f:  .15s;
  --dur-s:  .5s;

  --container: 1280px;
  --header-h:  72px;
}

/* ───────────────────────────────────────────────
   2. RESET & BASE
─────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
button { cursor:pointer; border:none; background:none; font:inherit; }
ul, ol { list-style:none; }
input, select, textarea { font:inherit; }
address { font-style:normal; }
[hidden] { display:none !important; }

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--te);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Custom scrollbar */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--pr-light); border-radius:var(--r-full); }

/* Selection */
::selection { background:var(--te-pale); color:var(--te-dark); }

/* ───────────────────────────────────────────────
   3. TYPOGRAPHY
─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--dark);
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-med); }

/* ───────────────────────────────────────────────
   4. LAYOUT UTILITIES
─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-3);
}
.section-pad { padding-block: var(--sp-12); }
.bg-light    { background: var(--cream); }

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--te);
  background: var(--te-pale);
  padding: .35em 1em;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-2);
}
.section-title {
  margin-bottom: var(--sp-2);
  color: var(--dark);
}
.section-title span {
  background: linear-gradient(135deg, var(--pr), var(--te));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-med);
}

/* ───────────────────────────────────────────────
   5. BUTTONS
─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Sizes */
.btn-sm  { font-size: .85rem; padding: .45em 1.1em; }
.btn-md  { font-size: .95rem; padding: .65em 1.6em; }
.btn-lg  { font-size: 1rem;   padding: .8em  2em;   }
.btn-full{ width:100%; justify-content:center; }

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, var(--pr), var(--pr-med));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(92,51,24,.25);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--pr-dark), var(--pr));
  box-shadow: 0 8px 24px rgba(92,51,24,.35);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--pr);
  border-color: var(--pr);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--pr);
  color: var(--white);
  transform: translateY(-2px);
}

/* Ghost (for hero) */
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

/* White */
.btn-white {
  background: var(--white);
  color: var(--pr);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover, .btn-white:focus-visible {
  background: var(--pr-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

/* ───────────────────────────────────────────────
   6. SCROLL REVEAL ANIMATION
─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay:.1s; }
.reveal:nth-child(3) { transition-delay:.2s; }
.reveal:nth-child(4) { transition-delay:.3s; }
.reveal:nth-child(5) { transition-delay:.4s; }
.reveal:nth-child(6) { transition-delay:.5s; }

/* ───────────────────────────────────────────────
   7. HEADER & NAVIGATION
─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  transition: all var(--dur) var(--ease);
}

/* Transparent on top — subtle gradient overlay for readability */
.header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(20, 8, 2, 0.55) 0%, transparent 100%);
}
.header:not(.scrolled) .nav-link { color: rgba(255,255,255,.9); }
.header:not(.scrolled) .nav-link:hover { color: var(--white); }
.header:not(.scrolled) .nav-phone { color: rgba(255,255,255,.85); }
.header:not(.scrolled) .nav-phone i { color: var(--te-light); }

/* Logo pill container — visible against dark hero */
.header:not(.scrolled) .nav-logo {
  background: rgba(255, 255, 255, 0.93);
  padding: 5px 14px 5px 6px;
  border-radius: var(--r-full);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all var(--dur) var(--ease);
}
.header:not(.scrolled) .nav-logo:hover {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Buyurtma btn on transparent header */
.header:not(.scrolled) .btn-primary {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
  color: var(--white);
}
.header:not(.scrolled) .btn-primary:hover {
  background: var(--white);
  color: var(--pr);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* Scrolled state */
.header.scrolled {
  background: rgba(255, 248, 240, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(90, 50, 20, 0.1);
  height: 64px;
}
.header.scrolled .nav-logo {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--sp-3);
}
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
}
.nav-menu { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  justify-content: center;
}
.nav-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  padding: .5rem .85rem;
  border-radius: var(--r-full);
  transition: all var(--dur-f) var(--ease);
  position: relative;
}
.header.scrolled .nav-link { color: var(--text); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--te);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--dur-f) var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { width: 50%; }
.nav-link.active { color: var(--pr); }
.header.scrolled .nav-link.active { color: var(--pr); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--dur-f) var(--ease);
}
.nav-phone:hover { color: var(--te); }
.nav-phone i { color: var(--te); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-f) var(--ease);
}
.header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ───────────────────────────────────────────────
   8. HERO
─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(145deg, var(--pr-dark) 0%, #6B3A1A 35%, var(--te-dark) 70%, #1A5048 100%);
}

/* Decorative elements */
.hero-bg { position:absolute; inset:0; pointer-events:none; }

.hero-pattern {
  position: absolute; inset: 0;
  opacity: .07;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255,255,255,.3) 18px, rgba(255,255,255,.3) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(255,255,255,.2) 18px, rgba(255,255,255,.2) 20px);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero-orb-1 { width:40vw; height:40vw; top:-10%; right:-10%; background:rgba(201,160,64,.18); }
.hero-orb-2 { width:30vw; height:30vw; bottom:10%; left:-5%;  background:rgba(46,138,122,.2); }
.hero-orb-3 { width:20vw; height:20vw; bottom:30%; right:20%;  background:rgba(255,200,100,.1); }

/* Slides */
.hero-slides-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  padding-bottom: 120px;
}
.hero-slide { width:100%; }

.hero-content {
  max-width: 740px;
  padding-block: var(--sp-8);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--go-light);
  background: rgba(201,160,64,.15);
  border: 1px solid rgba(201,160,64,.3);
  padding: .4em 1.2em;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--go); }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--sp-3);
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-highlight {
  background: linear-gradient(135deg, var(--go), #F0D080, var(--go-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  margin-bottom: var(--sp-5);
  max-width: 560px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.h-stat { display:flex; flex-direction:column; }
.h-stat strong { font-size:1.4rem; font-weight:800; color:var(--white); line-height:1; }
.h-stat span   { font-size:.78rem; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.08em; }
.h-stat-divider {
  width:1px; height:36px;
  background:rgba(255,255,255,.2);
}

/* Search form */
.hero-search {
  padding-block: var(--sp-3);
  position: relative;
}
.hero-search::before {
  content:'';
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-top:1px solid rgba(255,255,255,.12);
}
.search-form {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.search-field {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.search-field label {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: .4em;
}
.search-field input,
.search-field select {
  width: 100%;
  height: 48px;
  padding: 0 var(--sp-2);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .9rem;
  transition: all var(--dur-f) var(--ease);
  backdrop-filter: blur(4px);
}
.search-field input::placeholder { color:rgba(255,255,255,.45); }
.search-field select option { background: var(--pr-dark); color: var(--white); }
.search-field input:focus,
.search-field select:focus {
  outline: none;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.18);
}
.search-submit {
  height: 48px;
  align-self: flex-end;
  flex-shrink: 0;
  padding-inline: var(--sp-4);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 130px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.scroll-line {
  width: 1.5px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.5; transform:scaleY(1); }
  50%      { opacity:1;  transform:scaleY(.6); transform-origin:top; }
}

/* ───────────────────────────────────────────────
   9. STATS SECTION
─────────────────────────────────────────────── */
.stats-section {
  background: var(--white);
  padding-block: var(--sp-6);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.stat-card {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  transition: all var(--dur) var(--ease);
}
.stat-card:hover {
  border-color: var(--te);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.stat-icon-wrap {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--te-pale), var(--go-pale));
  display: flex; align-items:center; justify-content:center;
  font-size: 1.3rem;
  color: var(--te);
}
.stat-body { min-width: 0; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
  display: flex;
  align-items: baseline;
  gap: .15em;
}
.stat-num span { font-size:1.4rem; color:var(--te); }
.stat-body p {
  font-size: .82rem;
  color: var(--text-mut);
  font-weight: 500;
  margin-top: .25rem;
}

/* ───────────────────────────────────────────────
   10. DESTINATIONS
─────────────────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.dest-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: all var(--dur) var(--ease);
}
.dest-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-6px);
}

/* Destination image areas */
.dest-img {
  height: 220px;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* CSS gradient placeholders for each destination */
.dest-samarkand {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%),
    radial-gradient(ellipse at 70% 30%, #5AB0A4 0%, #2E6A62 40%, #1A3A32 100%);
}
.dest-bukhara {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%),
    radial-gradient(ellipse at 30% 70%, #E8C060 0%, #C9A040 40%, #8A6A20 100%);
}
.dest-khiva {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%),
    radial-gradient(ellipse at 60% 40%, #D4A870 0%, #A87848 40%, #6A4820 100%);
}
.dest-tashkent {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%),
    radial-gradient(ellipse at 40% 60%, #5AB878 0%, #2E8A4A 40%, #1A5A2E 100%);
}

/* Architectural silhouette overlay */
.dest-samarkand::after,
.dest-bukhara::after,
.dest-khiva::after,
.dest-tashkent::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  opacity: .15;
}
/* Uzbek arch pattern decorations */
.dest-samarkand::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(90,176,164,.3) 0%, transparent 70%);
}
.dest-bukhara::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,192,96,.3) 0%, transparent 70%);
}

.dest-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
}
.dest-badge {
  position: absolute;
  top: var(--sp-2); left: var(--sp-2);
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: .3em .85em;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: .4em;
  border: 1px solid rgba(255,255,255,.2);
}

.dest-info { padding: var(--sp-3); }
.dest-info h3 {
  font-size: 1.2rem;
  margin-bottom: .35rem;
  color: var(--dark);
}
.dest-info p {
  font-size: .85rem;
  color: var(--text-med);
  margin-bottom: var(--sp-2);
  line-height: 1.5;
}
.dest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dest-meta span {
  font-size: .8rem;
  color: var(--text-mut);
  display: flex;
  align-items: center;
  gap: .35em;
}
.dest-meta span i { color: var(--te); }
.dest-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--te);
  display: flex;
  align-items: center;
  gap: .3em;
  transition: gap var(--dur-f) var(--ease);
}
.dest-link:hover { gap: .6em; }

/* ───────────────────────────────────────────────
   11. TOURS
─────────────────────────────────────────────── */
.tours-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
  justify-content: center;
}
.filter-btn {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-med);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: .5em 1.3em;
  border-radius: var(--r-full);
  transition: all var(--dur-f) var(--ease);
}
.filter-btn:hover { border-color: var(--te); color: var(--te); }
.filter-btn.active {
  background: var(--pr);
  border-color: var(--pr);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(92,51,24,.25);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.tour-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-6px);
}
.tour-card.hidden { display:none; }

/* Tour images — unique gradient for each */
.tour-img {
  height: 220px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.tour-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
}

.tour-img-grand {
  background:
    linear-gradient(135deg, #1A3A5C 0%, #2E6A8A 30%, #3A8A7A 60%, #C9A040 100%);
}
.tour-img-silk {
  background:
    linear-gradient(135deg, #2E3A6A 0%, #4A5AC0 40%, #7A6080 70%, #C96060 100%);
}
.tour-img-khiva {
  background:
    radial-gradient(ellipse at 40% 30%, #E8B050 0%, #C07020 40%, #7A4010 100%);
}
.tour-img-tashkent {
  background:
    linear-gradient(135deg, #1A3A2A 0%, #2A6A4A 40%, #4A9A6A 70%, #7ACA9A 100%);
}
.tour-img-samarkand {
  background:
    radial-gradient(ellipse at 60% 40%, #5AB0A4 0%, #2E8A7A 40%, #1A5248 70%, #0A2A24 100%);
}
.tour-img-fergana {
  background:
    linear-gradient(135deg, #4A2060 0%, #8A4090 40%, #CA70B0 70%, #E8A0C0 100%);
}

/* Decorative tile pattern on tour images */
.tour-img::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.08) 10px, transparent 10px),
    radial-gradient(circle at 60% 50%, rgba(255,255,255,.05) 15px, transparent 15px),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.07) 8px, transparent 8px);
  background-size: 80px 80px;
}

.tour-badge {
  position: absolute;
  top: var(--sp-2); left: var(--sp-2);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .3em .9em;
  border-radius: var(--r-full);
  z-index: 2;
}
.badge-popular { background:var(--go); color:var(--dark); }
.badge-new     { background:var(--te); color:var(--white); }
.badge-hot     { background:#E04040; color:var(--white); }

.tour-duration {
  position: absolute;
  bottom: var(--sp-2); right: var(--sp-2);
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  padding: .3em .8em;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: .35em;
}

.tour-body {
  padding: var(--sp-3);
  flex: 1;
}
.tour-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-1);
}
.tag {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--te);
  background: var(--te-pale);
  padding: .25em .7em;
  border-radius: var(--r-full);
}
.tour-body h3 {
  font-size: 1.05rem;
  margin-block: .5rem;
  color: var(--dark);
}
.tour-body p {
  font-size: .85rem;
  color: var(--text-med);
  line-height: 1.55;
  margin-bottom: var(--sp-2);
}
.tour-details {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.tour-details span {
  font-size: .78rem;
  color: var(--text-mut);
  display: flex;
  align-items: center;
  gap: .3em;
}
.tour-details i { color: var(--te); }

.tour-footer {
  padding: var(--sp-2) var(--sp-3);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pr-50);
}
.tour-price { display:flex; align-items:baseline; gap:.3em; }
.price-from { font-size:.75rem; color:var(--text-mut); }
.price-val  { font-family:'Playfair Display',serif; font-size:1.35rem; font-weight:700; color:var(--pr); }

.tours-footer {
  text-align: center;
  margin-top: var(--sp-6);
}

/* ───────────────────────────────────────────────
   12. ABOUT
─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.about-visuals {
  position: relative;
}
.about-img-main {
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin-bottom: var(--sp-2);
}
.about-img-inner {
  width: 100%; height: 280px;
  border-radius: var(--r-xl);
}
.about-img-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}
.about-img-secondary .about-img-inner { height: 180px; }

.about-img-1 { background: radial-gradient(ellipse at 60% 40%, #5AB0A4 0%, #2E8A7A 50%, #1A5248 100%); }
.about-img-2 { background: radial-gradient(ellipse at 30% 70%, #E8C060 0%, #C9A040 50%, #8A6A20 100%); }
.about-img-3 { background: radial-gradient(ellipse at 70% 30%, #D4A870 0%, #A87848 50%, #6A4820 100%); }

.about-exp-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--pr), var(--pr-med));
  color: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-3);
  text-align: center;
  box-shadow: var(--sh-lg);
  min-width: 120px;
}
.exp-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.exp-text {
  font-size: .8rem;
  opacity: .85;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-content .section-label { display:block; margin-bottom:var(--sp-2); }
.about-content .section-title { text-align:left; margin-bottom:var(--sp-3); }
.about-lead {
  font-size: 1.05rem;
  color: var(--text-med);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.about-feature {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}
.af-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--r-lg);
  background: var(--te-pale);
  display: flex; align-items:center; justify-content:center;
  color: var(--te);
  font-size: 1.1rem;
}
.af-text h4 { font-size:.95rem; margin-bottom:.2rem; color:var(--dark); }
.af-text p  { font-size:.85rem; color:var(--text-med); }

/* ───────────────────────────────────────────────
   13. SERVICES
─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pr), var(--te));
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}
.service-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before { transform:scaleX(1); }

.service-icon-wrap {
  margin-bottom: var(--sp-3);
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--pr-pale), var(--te-pale));
  display: flex; align-items:center; justify-content:center;
  font-size: 1.5rem;
  color: var(--pr);
  transition: all var(--dur) var(--ease);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--pr), var(--te));
  color: var(--white);
  transform: scale(1.05) rotate(5deg);
}
.service-card h3 { margin-bottom:.5rem; font-size:1.05rem; }
.service-card p  { font-size:.85rem; color:var(--text-med); line-height:1.6; margin-bottom:var(--sp-2); }
.service-link {
  font-size:.82rem; font-weight:700;
  color: var(--te);
  display: inline-flex; align-items:center; gap:.3em;
  transition: gap var(--dur-f) var(--ease);
}
.service-link:hover { gap:.6em; }

/* ───────────────────────────────────────────────
   14. WHY US
─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.why-content .section-label { display:block; margin-bottom:var(--sp-2); }
.why-content .section-title { text-align:left; margin-bottom:var(--sp-2); }
.why-lead { margin-bottom:var(--sp-5); }

.why-items { display:flex; flex-direction:column; gap:var(--sp-3); }
.why-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-3);
  border-radius: var(--r-xl);
  transition: all var(--dur) var(--ease);
  border: 1.5px solid transparent;
}
.why-item:hover {
  background: var(--pr-50);
  border-color: var(--pr-pale);
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--dur) var(--ease);
  min-width: 44px;
}
.why-item:hover .why-num { color: var(--pr-light); }
.why-text h4 { font-size:.95rem; margin-bottom:.35rem; }
.why-text p  { font-size:.85rem; color:var(--text-med); }

/* Why visual */
.why-img-wrap { position: relative; }
.why-img {
  width: 100%; height: 500px;
  border-radius: var(--r-2xl);
  background:
    radial-gradient(ellipse at 40% 30%, #5AB0A4 0%, #2E8A7A 35%, #1A5248 60%, #5C3318 100%);
  position: relative;
  overflow: hidden;
}
.why-img::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,.03) 20px, rgba(255,255,255,.03) 22px),
    repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(255,255,255,.03) 20px, rgba(255,255,255,.03) 22px);
}

.why-card-float {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-xl);
  padding: var(--sp-2) var(--sp-3);
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .88rem;
  animation: float 4s ease-in-out infinite;
}
.why-card-1 { top: 10%; left: -30px; }
.why-card-2 { bottom: 15%; right: -30px; animation-delay: 2s; }
.why-card-float i {
  width:36px; height:36px;
  border-radius:var(--r-md);
  background:var(--go-pale);
  color:var(--go-dark);
  font-size:1rem;
  display:flex; align-items:center; justify-content:center;
}
.why-card-float strong { display:block; font-size:.95rem; color:var(--dark); }
.why-card-float span  { font-size:.72rem; color:var(--text-mut); }

@keyframes float {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-10px); }
}

/* ───────────────────────────────────────────────
   15. CTA BANNER
─────────────────────────────────────────────── */
.cta-section { padding-block: var(--sp-8); }
.cta-card {
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--pr-dark) 0%, var(--pr) 35%, var(--te-dark) 70%, var(--te) 100%);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-deco {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,160,64,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    repeating-linear-gradient(60deg, transparent, transparent 30px, rgba(255,255,255,.02) 30px, rgba(255,255,255,.02) 32px);
  pointer-events: none;
}
.cta-label {
  display: inline-block;
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--go-light);
  background:rgba(201,160,64,.2);
  border:1px solid rgba(201,160,64,.3);
  padding:.35em 1em;
  border-radius:var(--r-full);
  margin-bottom:var(--sp-2);
  position:relative;
}
.cta-content { position:relative; }
.cta-content h2 { color:var(--white); margin-bottom:var(--sp-2); }
.cta-content h2 span {
  color:var(--go-light);
  font-style:italic;
}
.cta-content p {
  color:rgba(255,255,255,.75);
  margin-bottom:var(--sp-5);
  font-size:1.05rem;
}

/* ───────────────────────────────────────────────
   16. TESTIMONIALS
─────────────────────────────────────────────── */
.testimonials-wrapper {
  overflow: hidden;
  margin-bottom: var(--sp-4);
}
.testimonials-track {
  display: flex;
  gap: var(--sp-4);
  transition: transform .5s var(--ease);
}
.testi-card {
  flex: 0 0 calc(33.333% - var(--sp-4) * 2/3);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  transition: all var(--dur) var(--ease);
}
.testi-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--te-light);
  transform: translateY(-4px);
}
.testi-header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  flex-shrink: 0;
}
/* Avatar colors */
[style*="--av: 1"] { background:linear-gradient(135deg, var(--pr), var(--pr-med)); }
[style*="--av: 2"] { background:linear-gradient(135deg, var(--te), var(--te-med)); }
[style*="--av: 3"] { background:linear-gradient(135deg, #6A5080, #9A70B0); }
[style*="--av: 4"] { background:linear-gradient(135deg, var(--go-dark), var(--go)); }

.testi-meta { flex:1; }
.testi-meta strong { display:block; font-size:.9rem; color:var(--dark); }
.testi-meta span   { font-size:.78rem; color:var(--text-mut); }
.testi-stars { color:var(--go); font-size:.85rem; }

.testi-card p {
  font-size:.88rem;
  color:var(--text-med);
  line-height:1.7;
  font-style:italic;
  border-left:3px solid var(--te-pale);
  padding-left:var(--sp-2);
  margin-bottom:var(--sp-2);
}
.testi-tour {
  font-size:.75rem;
  color:var(--te);
  font-weight:600;
  display:flex; align-items:center; gap:.35em;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.testi-btn {
  width:44px; height:44px;
  border-radius:50%;
  border:1.5px solid var(--border);
  background:var(--white);
  color:var(--text);
  display:flex; align-items:center; justify-content:center;
  transition:all var(--dur-f) var(--ease);
  box-shadow:var(--sh-xs);
}
.testi-btn:hover {
  background:var(--pr);
  border-color:var(--pr);
  color:var(--white);
  box-shadow:var(--sh-sm);
}
.testi-dots { display:flex; gap:.5rem; }
.testi-dot {
  width:8px; height:8px;
  border-radius:50%;
  background:var(--border);
  border:none;
  transition:all var(--dur-f) var(--ease);
  cursor:pointer;
}
.testi-dot.active {
  background:var(--pr);
  width:24px;
  border-radius:var(--r-full);
}

/* ───────────────────────────────────────────────
   17. GALLERY
─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: var(--sp-2);
}
.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  padding: 0;
  transition: all var(--dur) var(--ease);
  aspect-ratio: 1;
}
.gallery-item:hover { transform: scale(1.02); z-index: 2; box-shadow: var(--sh-lg); }
.gallery-item.gi-tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item.gi-wide { grid-column: span 2; aspect-ratio: unset; min-height: 200px; }

/* Gallery image areas */
.gi-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s var(--ease);
}
.gallery-item:hover .gi-bg { transform: scale(1.08); }

/* Gallery image gradients (beautiful, unique) */
.gi-samarkand-1 {
  background: radial-gradient(ellipse at 50% 30%, #7ACAC0 0%, #3A9A90 30%, #1A6A60 60%, #0A3028 100%);
}
.gi-bukhara-1 {
  background: radial-gradient(ellipse at 60% 60%, #F0D080 0%, #D0A040 40%, #906020 70%, #503010 100%);
}
.gi-khiva-1 {
  background: radial-gradient(ellipse at 40% 40%, #E8B870 0%, #C09050 40%, #806030 70%, #402A10 100%);
}
.gi-tashkent-1 {
  background: linear-gradient(135deg, #1A3040 0%, #2A5A6A 35%, #3A8080 60%, #5AAA9A 100%);
}
.gi-samarkand-2 {
  background: radial-gradient(ellipse at 30% 70%, #7090E0 0%, #4060B0 40%, #203080 70%, #101840 100%);
}
.gi-bukhara-2 {
  background: radial-gradient(ellipse at 70% 30%, #A0C0A0 0%, #608060 40%, #304030 70%, #182018 100%);
}
.gi-khiva-2 {
  background: linear-gradient(135deg, #802010 0%, #C04020 30%, #E07040 60%, #F0A060 100%);
}
.gi-fergana-1 {
  background: radial-gradient(ellipse at 50% 50%, #C0A0E0 0%, #8060A0 40%, #502070 70%, #280838 100%);
}

.gi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: var(--sp-2) var(--sp-2);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-overlay span {
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
}

/* Decorative pattern on gallery items */
.gi-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.04) 39px, rgba(255,255,255,.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.04) 39px, rgba(255,255,255,.04) 40px);
}

/* ───────────────────────────────────────────────
   18. FAQ
─────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-10);
  align-items: start;
}
.faq-header .section-label { display:block; margin-bottom:var(--sp-2); }
.faq-header .section-title { text-align:left; margin-bottom:var(--sp-2); }
.faq-header p { margin-bottom:var(--sp-4); }
.faq-cta { width:100%; justify-content:center; }

.faq-list { display:flex; flex-direction:column; gap:.5rem; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--dur-f) var(--ease);
}
.faq-item.open { border-color:var(--te); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  transition: background var(--dur-f) var(--ease);
}
.faq-q:hover { background:var(--pr-50); }
.faq-icon {
  color: var(--te);
  font-size: .85rem;
  flex-shrink: 0;
  transition: transform var(--dur-f) var(--ease);
}
.faq-item.open .faq-icon { transform:rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a p {
  padding: 0 var(--sp-4) var(--sp-3);
  font-size: .88rem;
  color: var(--text-med);
  line-height: 1.7;
}

/* ───────────────────────────────────────────────
   19. CONTACT
─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-6);
  align-items: start;
}
.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: var(--sp-4);
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.contact-item {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  padding: var(--sp-2);
  border-radius: var(--r-lg);
  transition: background var(--dur-f) var(--ease);
}
a.contact-item:hover { background:var(--pr-50); }
.ci-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--te-pale);
  display: flex; align-items:center; justify-content:center;
  color: var(--te);
  font-size: .95rem;
}
.ci-text strong { display:block; font-size:.82rem; color:var(--dark); margin-bottom:.15rem; font-weight:700; }
.ci-text span   { font-size:.88rem; color:var(--text-med); }

.contact-social {
  display: flex;
  gap: var(--sp-1);
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items:center; justify-content:center;
  font-size: 1rem;
  color: var(--text-med);
  transition: all var(--dur-f) var(--ease);
}
.social-btn:hover {
  background: var(--te);
  border-color: var(--te);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(46,138,122,.3);
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}
.contact-form h3 { font-size:1.2rem; margin-bottom:.4rem; }
.form-sub { font-size:.85rem; color:var(--text-mut); margin-bottom:var(--sp-4); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}
.form-group {
  margin-bottom: var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
}
.form-group label span { color:var(--pr); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem var(--sp-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--cream);
  color: var(--dark);
  font-size: .9rem;
  transition: all var(--dur-f) var(--ease);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--te);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--te-pale);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #C84040;
  box-shadow: 0 0 0 3px rgba(200,64,64,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:var(--text-mut); }

.btn-full { margin-bottom:.5rem; }
.form-note {
  font-size:.75rem;
  color:var(--text-mut);
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.35em;
}
.form-note i { color:var(--te); }

/* ───────────────────────────────────────────────
   20. FOOTER
─────────────────────────────────────────────── */
.footer-top {
  background: var(--pr-dark);
  padding-block: var(--sp-10);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-6);
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-block: var(--sp-3);
}
.footer-brand img { filter: brightness(1.1); }
.footer-social {
  display: flex; gap: var(--sp-1);
}
.fsocial {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  transition: all var(--dur-f) var(--ease);
}
.fsocial:hover {
  background: var(--te);
  border-color: var(--te);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-links-col h4,
.footer-contact-col h4 {
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--sp-3);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.footer-links-col ul { display:flex; flex-direction:column; gap:.6rem; }
.footer-links-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--dur-f) var(--ease);
  display: flex; align-items: center; gap:.4em;
}
.footer-links-col a:hover { color:var(--go-light); padding-left:.3rem; }

.footer-contact-col address p {
  font-size:.85rem; color:rgba(255,255,255,.55); margin-bottom:.6rem;
  display:flex; align-items:flex-start; gap:.5em;
}
.footer-contact-col address i { color:var(--te); flex-shrink:0; margin-top:3px; }
.footer-contact-col address a { color:rgba(255,255,255,.55); transition:color var(--dur-f) var(--ease); }
.footer-contact-col address a:hover { color:var(--go-light); }

.footer-bottom {
  background: var(--dark);
  padding-block: var(--sp-3);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.footer-bottom p { font-size:.82rem; color:rgba(255,255,255,.4); }
.footer-payments { display:flex; gap:.5rem; }
.payment-badge {
  font-size:.65rem;
  font-weight:800;
  color:rgba(255,255,255,.6);
  border:1px solid rgba(255,255,255,.2);
  padding:.25em .6em;
  border-radius:4px;
}

/* ───────────────────────────────────────────────
   21. BACK TO TOP
─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: var(--sp-4);
  right: var(--sp-4);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pr), var(--pr-med));
  color: var(--white);
  box-shadow: var(--sh-md);
  display: flex; align-items:center; justify-content:center;
  font-size: 1rem;
  z-index: 150;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all var(--dur) var(--ease);
  border: 2px solid rgba(255,255,255,.2);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: linear-gradient(135deg, var(--te-dark), var(--te));
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

/* ───────────────────────────────────────────────
   22. LIGHTBOX
─────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,3,0,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  max-width: 900px;
  width: 100%;
  padding-inline: var(--sp-6);
  z-index: 1;
}
.lb-close {
  position: absolute;
  top: -40px; right: var(--sp-6);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: 1.5rem;
  display: flex; align-items:center; justify-content:center;
  transition: background var(--dur-f) var(--ease);
}
.lb-close:hover { background: var(--pr); }
.lb-nav {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: var(--white);
  display: flex; align-items:center; justify-content:center;
  font-size: 1rem;
  transition: background var(--dur-f) var(--ease);
}
.lb-nav:hover { background: var(--pr); }
.lb-content { flex: 1; }
.lb-img-wrap { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; }
.lb-img { width:100%; height:100%; background-size:cover; background-position:center; }
.lb-caption {
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  margin-top: var(--sp-2);
}

/* ───────────────────────────────────────────────
   23. TOAST
─────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--white);
  padding: .75rem var(--sp-4);
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 600;
  box-shadow: var(--sh-lg);
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur) var(--ease);
  z-index: 400;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.success { background: var(--te-dark); }
.toast.error   { background: #A83030; }

/* ───────────────────────────────────────────────
   24. RESPONSIVE — TABLET (≤ 1024px)
─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }

  /* Nav */
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100svh;
    background: var(--white);
    padding: calc(var(--header-h) + var(--sp-4)) var(--sp-4) var(--sp-4);
    box-shadow: var(--sh-xl);
    transition: right var(--dur) var(--ease);
    overflow-y: auto;
    z-index: 199;
  }
  .nav-menu.open { right: 0; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: .25rem; }
  .nav-link { color: var(--dark) !important; padding: .75rem 1rem; width: 100%; border-radius: var(--r-lg); }
  .nav-link.active { background: var(--pr-50); color: var(--pr) !important; }
  .nav-toggle { display: flex; }
  .nav-phone span { display: none; }

  /* Overlay behind open nav */
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 198;
    opacity: 0; pointer-events: none;
    transition: opacity var(--dur) var(--ease);
  }
  .nav-overlay.visible { opacity: 1; pointer-events: all; }

  /* Sections */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .about-visuals { max-width: 540px; margin-inline: auto; }
  .why-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .why-visual { order: -1; max-width: 480px; margin-inline: auto; }
  .why-img { height: 360px; }
  .why-card-1 { left: 0; }
  .why-card-2 { right: 0; }
  .faq-layout { grid-template-columns: 1fr; gap: var(--sp-6); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.gi-tall { grid-row: span 1; aspect-ratio: 1; }
  .gallery-item.gi-wide { grid-column: span 1; min-height: unset; }
  .testi-card { flex: 0 0 calc(50% - var(--sp-4)/2); }
}

/* ───────────────────────────────────────────────
   25. RESPONSIVE — MOBILE (≤ 768px)
─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-pad { padding-block: var(--sp-8); }
  .section-header { margin-bottom: var(--sp-5); }

  /* Hero */
  .hero-slides-wrapper { padding-bottom: 160px; }
  .hero-content { padding-block: var(--sp-5); }
  .hero-stats { gap: var(--sp-2); }
  .h-stat strong { font-size: 1.1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 280px; }

  /* Search form */
  .search-form { flex-direction: column; }
  .search-field { min-width: 100%; }
  .search-submit { width: 100%; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-2); }

  /* Destinations */
  .destinations-grid { grid-template-columns: 1fr; }

  /* Tours */
  .tours-grid { grid-template-columns: 1fr; }
  .tours-filters { gap: .35rem; }
  .filter-btn { font-size: .78rem; padding: .4em 1em; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About */
  .about-img-secondary { grid-template-columns: 1fr 1fr; }
  .about-exp-badge { right: 0; bottom: -16px; }

  /* CTA */
  .cta-card { padding: var(--sp-6) var(--sp-4); }

  /* Testimonials */
  .testi-card { flex: 0 0 100%; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; }
  .faq-cta { display: none; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Back to top */
  .back-to-top { bottom: var(--sp-3); right: var(--sp-3); }
}

/* ───────────────────────────────────────────────
   26. REDUCED MOTION
─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
