/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  /* Color — Brand */
  --brand: #DC2626;
  --brand-hover: #B91C1C;
  --brand-subtle: #FEF2F2;
  --brand-muted: #FECACA;
  --accent: #EA580C;
  --accent-subtle: #FFF7ED;

  /* Color — Neutral */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Color — Semantic */
  --success: #059669;
  --success-subtle: #ECFDF5;
  --warning: #D97706;
  --warning-subtle: #FFFBEB;
  --info: #2563EB;

  /* Surface */
  --surface: #FFFFFF;
  --surface-secondary: var(--gray-50);
  --surface-tertiary: var(--gray-100);
  --surface-elevated: #FFFFFF;
  --border: var(--gray-200);
  --border-subtle: var(--gray-100);

  /* Typography */
  --font: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-tertiary: var(--gray-400);
  --text-inverse: #FFFFFF;

  /* Typography Scale — Okunabilir boyutlar */
  --text-xs: 0.8125rem;  /* 13px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-md: 1.125rem;   /* 18px */
  --text-lg: 1.25rem;    /* 20px */
  --text-xl: 1.5rem;     /* 24px */
  --text-2xl: 1.875rem;  /* 30px */
  --text-3xl: 2.25rem;   /* 36px */
  --text-4xl: 3rem;      /* 48px */

  /* Spacing — 4px grid */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows — Layered */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.07), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-normal: 200ms;
  --duration-slow: 300ms;
}

/* ═══════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: 'Sora', sans-serif; cursor: pointer; border: none; background: none; font-size: inherit; }
input, select, textarea { font-family: 'Sora', sans-serif; font-size: inherit; }

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* ═══════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════ */
.topbar {
  background: linear-gradient(135deg, #BE123C, #DC2626);
  height: 36px;
  display: flex;
  align-items: center;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: var(--sp-5); }
.topbar-item {
  display: flex; align-items: center; gap: var(--sp-1);
  font-size: var(--text-xs); color: rgba(255,255,255,.85); font-weight: 400;
}
.topbar-item i { width: 12px; height: 12px; opacity: .7; }
.topbar-item a { color: inherit; transition: opacity var(--duration-fast); }
.topbar-item a:hover { opacity: 1; }
.topbar-right { gap: var(--sp-3); }
.topbar-social { display: flex; gap: var(--sp-2); }
.topbar-social a { color: rgba(255,255,255,.7); display: flex; transition: color var(--duration-fast); }
.topbar-social a:hover { color: #fff; }
.topbar-social a i { width: 13px; height: 13px; }
.topbar-langs { display: flex; gap: 2px; }
.topbar-lang {
  font-size: 13px; color: rgba(255,255,255,.6);
  padding: 2px 8px; border-radius: var(--radius-sm);
  transition: all var(--duration-fast); cursor: pointer;
}
.topbar-lang:hover, .topbar-lang.active { color: #fff; background: rgba(255,255,255,.15); }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--duration-slow) var(--ease-in-out);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo-img {
  height: 32px; width: auto;
  filter: drop-shadow(0 0 1px rgba(0,0,0,.15));
}
.nav-menu { display: flex; align-items: center; gap: var(--sp-1); }
.nav-link {
  font-size: var(--text-sm); font-weight: 500;
  color: var(--text-secondary);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast), background var(--duration-fast);
}
.nav-link:hover { color: var(--text-primary); background: var(--gray-50); }
.nav-actions { display: flex; align-items: center; gap: var(--sp-2); margin-left: var(--sp-4); }
.btn-ghost {
  font-size: var(--text-sm); font-weight: 500;
  color: var(--text-secondary);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--duration-fast);
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--gray-300); background: var(--gray-50); }
.btn-solid {
  font-size: var(--text-sm); font-weight: 600;
  color: var(--text-inverse);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-md);
  background: var(--accent);
  transition: all var(--duration-fast);
  box-shadow: 0 2px 8px rgba(234,88,12,.2);
}
.btn-solid:hover { background: #C2410C; box-shadow: 0 4px 12px rgba(234,88,12,.3); }
.mobile-toggle { display: none; padding: var(--sp-2); color: var(--text-secondary); }
.mobile-toggle i { width: 20px; height: 20px; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 660px;
  display: flex; align-items: flex-start;
  overflow: hidden; background: var(--gray-900);
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s var(--ease-in-out);
  background-size: cover; background-position: center;
  transform: scale(1.05);
}
.hero-slide.active { opacity: 1; transform: scale(1); transition: opacity 1s var(--ease-in-out), transform 8s ease-out; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.1) 100%);
}

.hero-arrows { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  pointer-events: auto;
  width: 40px; height: 40px; border-radius: var(--radius-full);
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  transition: all var(--duration-normal) var(--ease-out);
}
.hero-arrow:hover { background: rgba(255,255,255,.2); color: #fff; }
.hero-arrow i { width: 18px; height: 18px; }
.hero-arrow.prev { left: var(--sp-6); }
.hero-arrow.next { right: var(--sp-6); }

.hero-dots {
  position: absolute; bottom: var(--sp-6); left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: var(--sp-2);
}
.hero-dot {
  width: 8px; height: 8px; border-radius: var(--radius-full);
  background: rgba(255,255,255,.3);
  transition: all var(--duration-normal) var(--ease-out);
  padding: 0;
}
.hero-dot.active { background: #fff; width: 24px; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  margin-left: 0; margin-right: auto;
  padding: var(--sp-24) 0 var(--sp-16);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); font-weight: 500;
  color: rgba(255,255,255,.7); letter-spacing: .5px;
  margin-bottom: var(--sp-5);
}
.hero-eyebrow::before {
  content: ''; width: 20px; height: 1px;
  background: rgba(255,255,255,.4);
}
.hero-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem); font-weight: 700;
  color: #fff; line-height: 1.2;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.01em;
  transition: opacity var(--duration-slow) var(--ease-in-out);
  min-height: 120px;
}
.hero-title span { color: var(--accent); }
.hero-title.fade { opacity: 0; }
.hero-desc {
  font-size: var(--text-lg); font-weight: 300;
  color: rgba(255,255,255,.75); line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 480px;
  transition: opacity var(--duration-slow) var(--ease-in-out);
  min-height: 56px;
}
.hero-desc.fade { opacity: 0; }

/* Hero search */
.hero-search {
  background: var(--surface);
  border-radius: 16px;
  padding: var(--sp-2);
  display: flex; align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.25), 0 8px 20px rgba(0,0,0,.1);
  max-width: 580px;
}
.hs-field {
  flex: 1; display: flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
}
.hs-field i { color: var(--gray-400); width: 18px; height: 18px; flex-shrink: 0; }
.hs-field input {
  width: 100%; border: 0; background: 0;
  font-size: var(--text-base); color: var(--text-primary);
}
.hs-field input::placeholder { color: var(--gray-400); }
.hs-sep { width: 1px; height: 24px; background: var(--border); }
.hs-date {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-3);
}
.hs-date i { color: var(--gray-400); width: 16px; height: 16px; flex-shrink: 0; }
.hs-date input { border: 0; background: 0; font-size: var(--text-sm); color: var(--text-primary); width: 120px; }
.hs-btn {
  background: var(--brand); color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-8);
  font-size: var(--text-base); font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(220,38,38,.25);
  transition: background var(--duration-fast), box-shadow var(--duration-fast);
}
.hs-btn:hover { background: var(--brand-hover); box-shadow: 0 6px 20px rgba(220,38,38,.35); }

/* Hero stats */
.hero-stats {
  display: flex; gap: var(--sp-12); margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hs-num { font-size: var(--text-3xl); font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.hs-num span { color: var(--accent); }
.hs-label { font-size: var(--text-sm); color: rgba(255,255,255,.45); margin-top: 4px; }

/* ═══════════════════════════════════════════════
   SECTION
═══════════════════════════════════════════════ */
.section { padding: var(--sp-20) 0; }
.section-alt { background: var(--surface-secondary); }
.section-header { margin-bottom: var(--sp-10); }
.section-header.center { text-align: center; }
.section-overline {
  font-size: var(--text-xs); font-weight: 600;
  color: var(--brand); letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.section-title {
  font-size: var(--text-3xl); font-weight: 700;
  color: var(--text-primary); letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-subtitle {
  font-size: var(--text-md); color: var(--text-secondary);
  margin-top: var(--sp-2); line-height: 1.6;
  max-width: 480px;
}
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

.section-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--sp-10);
}
.link-arrow {
  font-size: var(--text-sm); font-weight: 500; color: var(--brand);
  display: inline-flex; align-items: center; gap: var(--sp-1);
  transition: gap var(--duration-normal) var(--ease-out);
}
.link-arrow:hover { gap: var(--sp-2); }
.link-arrow i { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════
   CATEGORIES
═══════════════════════════════════════════════ */
.categories { padding: var(--sp-12) 0 var(--sp-8); }
.cat-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-3);
}
.cat-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 4/5;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}
.cat-card:hover { transform: scale(1.02); box-shadow: var(--shadow-xl); }
.cat-card.active { box-shadow: 0 0 0 3px var(--brand), 0 0 0 6px rgba(220,38,38,.12); transform: scale(0.98); }
.cat-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform var(--duration-slow) var(--ease-out);
}
.cat-card:hover .cat-bg { transform: scale(1.04); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.6) 100%);
  transition: background var(--duration-normal);
}
.cat-card:hover .cat-overlay { background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.7) 100%); }
.cat-card.active .cat-overlay { background: linear-gradient(180deg, rgba(220,38,38,.1) 0%, rgba(220,38,38,.6) 100%); }
.cat-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--sp-4); z-index: 2;
}
.cat-name { font-size: var(--text-sm); font-weight: 600; color: #fff; }
.cat-count { font-size: var(--text-xs); color: rgba(255,255,255,.65); margin-top: 2px; }

/* ═══════════════════════════════════════════════
   TOUR CARDS
═══════════════════════════════════════════════ */
.tours-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.tour-card {
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal);
}
.tour-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.tour-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.tour-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.tour-card:hover .tour-img img { transform: scale(1.03); }
.tour-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.3) 100%);
}
.tour-badge {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  padding: 3px var(--sp-3); border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  z-index: 2;
}
.tour-badge.popular { background: var(--brand); color: #fff; }
.tour-badge.discount { background: var(--success); color: #fff; }
.tour-badge.new { background: var(--info); color: #fff; }
.tour-badge.premium { background: var(--gray-800); color: #fff; }

.tour-fav {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  width: 32px; height: 32px; border-radius: var(--radius-full);
  background: rgba(255,255,255,.85); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 2; color: var(--gray-400);
  transition: all var(--duration-fast);
}
.tour-fav:hover { color: var(--brand); background: #fff; }
.tour-fav.liked { color: var(--brand); }
.tour-fav i { width: 14px; height: 14px; }

.tour-meta {
  position: absolute; bottom: var(--sp-3); left: var(--sp-3);
  display: flex; gap: var(--sp-2); z-index: 2;
}
.tour-pill {
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  padding: 3px var(--sp-3); border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  display: flex; align-items: center; gap: 3px;
}
.tour-pill i { width: 12px; height: 12px; color: var(--gray-500); }

.tour-body { padding: var(--sp-5); }
.tour-rating {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.tour-stars { font-size: var(--text-xs); color: var(--warning); letter-spacing: 1px; }
.tour-rating-text { font-size: var(--text-xs); color: var(--text-tertiary); }

.tour-title {
  font-size: var(--text-md); font-weight: 600;
  color: var(--text-primary); line-height: 1.4;
  margin-bottom: var(--sp-3);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.tour-tags { display: flex; flex-wrap: wrap; gap: var(--sp-1); margin-bottom: var(--sp-4); }
.tour-tag {
  font-size: 13px; font-weight: 500;
  color: var(--success); background: var(--success-subtle);
  padding: 2px var(--sp-2); border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 2px;
}
.tour-tag i { width: 10px; height: 10px; }

.tour-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-subtle);
}
.tour-price {
  font-size: var(--text-xl); font-weight: 700;
  color: var(--text-primary); letter-spacing: -0.02em;
}
.tour-price .unit { font-size: var(--text-xs); font-weight: 400; color: var(--text-tertiary); margin-left: 2px; }
.tour-cta {
  font-size: var(--text-sm); font-weight: 600;
  color: var(--brand);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--brand);
  transition: all var(--duration-fast);
}
.tour-cta:hover { background: var(--brand); color: #fff; }

/* ═══════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.feature-card {
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  transition: all var(--duration-normal) var(--ease-out);
}
.feature-card:hover { border-color: var(--border); box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4); font-size: 20px;
}
.fi-red { background: var(--brand-subtle); }
.fi-orange { background: var(--accent-subtle); }
.fi-green { background: var(--success-subtle); }
.fi-blue { background: #EFF6FF; }
.feature-title { font-size: var(--text-base); font-weight: 600; color: var(--text-primary); margin-bottom: var(--sp-2); }
.feature-desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.55; }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8); max-width: 900px; margin: 0 auto;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 28px;
  left: calc(16.66% + 16px); right: calc(16.66% + 16px);
  height: 1px; background: var(--border);
}
.step { text-align: center; }
.step-icon {
  width: 56px; height: 56px; border-radius: var(--radius-full);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5); font-size: 24px;
  position: relative; box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
}
.step:hover .step-icon { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: var(--radius-full);
  background: var(--brand); color: #fff;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-size: var(--text-base); font-weight: 600; margin-bottom: var(--sp-2); }
.step-desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.55; max-width: 240px; margin: 0 auto; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.test-card {
  padding: var(--sp-6); border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle); background: var(--surface);
  transition: all var(--duration-normal) var(--ease-out);
}
.test-card:hover { border-color: var(--border); box-shadow: var(--shadow-sm); }
.test-stars { font-size: var(--text-sm); color: var(--warning); letter-spacing: 2px; margin-bottom: var(--sp-4); }
.test-text { font-size: var(--text-base); color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--sp-5); }
.test-author { display: flex; align-items: center; gap: var(--sp-3); }
.test-avatar { width: 36px; height: 36px; border-radius: var(--radius-full); object-fit: cover; }
.test-name { font-size: var(--text-sm); font-weight: 600; color: var(--text-primary); }
.test-loc { font-size: var(--text-xs); color: var(--text-tertiary); margin-top: 1px; }

/* ═══════════════════════════════════════════════
   BOOKING FORM
═══════════════════════════════════════════════ */
.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-16); align-items: start;
}
.booking-info-list { margin-top: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-5); }
.bi-item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.bi-icon {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: var(--radius-md);
  background: var(--surface-secondary); border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.bi-title { font-size: var(--text-sm); font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.bi-desc { font-size: var(--text-xs); color: var(--text-tertiary); line-height: 1.5; }

.booking-form {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: var(--sp-8); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.booking-form h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--sp-1); letter-spacing: -0.01em; }
.booking-form > p { font-size: var(--text-sm); color: var(--text-tertiary); margin-bottom: var(--sp-6); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-bottom: var(--sp-3); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-1); }
.form-label { font-size: var(--text-sm); font-weight: 600; color: var(--text-secondary); }
.form-input {
  width: 100%; padding: var(--sp-3) var(--sp-3);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  font-size: var(--text-base); background: var(--surface);
  transition: all var(--duration-fast);
}
.form-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-subtle); outline: none; }
.form-input::placeholder { color: var(--gray-300); }
textarea.form-input { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; margin-top: var(--sp-3);
  background: var(--brand); color: #fff;
  border-radius: var(--radius-md); padding: var(--sp-3);
  font-size: var(--text-base); font-weight: 600;
  transition: background var(--duration-fast);
}
.form-submit:hover { background: var(--brand-hover); }

/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: var(--sp-12) var(--sp-16);
  background: linear-gradient(135deg, var(--accent), #C2410C);
  display: flex; align-items: center; justify-content: space-between;
}
.cta-banner h2 { font-size: var(--text-2xl); font-weight: 700; color: #fff; margin-bottom: var(--sp-2); letter-spacing: -0.01em; }
.cta-banner p { font-size: var(--text-base); color: rgba(255,255,255,.75); line-height: 1.55; max-width: 440px; }
.cta-banner-btn {
  background: #fff; color: var(--accent);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-8);
  font-size: var(--text-base); font-weight: 600;
  white-space: nowrap;
  transition: all var(--duration-fast);
  box-shadow: var(--shadow-sm);
}
.cta-banner-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--surface-secondary);
  padding: var(--sp-12) 0 var(--sp-8);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10); margin-bottom: var(--sp-10);
}
.footer-logo { height: 28px; margin-bottom: var(--sp-4); }
.footer-brand p { font-size: var(--text-sm); color: var(--text-tertiary); line-height: 1.6; max-width: 280px; }
.footer-social { display: flex; gap: var(--sp-2); margin-top: var(--sp-5); }
.footer-social-link {
  width: 32px; height: 32px; border-radius: var(--radius-md);
  border: 1px solid var(--border); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-tertiary);
  transition: all var(--duration-fast);
}
.footer-social-link:hover { color: var(--brand); border-color: var(--brand); }
.footer-social-link i { width: 14px; height: 14px; }
.footer-col h4 {
  font-size: var(--text-xs); font-weight: 600;
  color: var(--text-secondary); text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: var(--sp-4);
}
.footer-col a {
  display: block; font-size: var(--text-sm);
  color: var(--text-tertiary); margin-bottom: var(--sp-3);
  transition: color var(--duration-fast);
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-6);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: var(--text-xs); color: var(--text-tertiary); }
.footer-legal { display: flex; gap: var(--sp-5); }
.footer-legal a { font-size: var(--text-xs); color: var(--text-tertiary); transition: color var(--duration-fast); }
.footer-legal a:hover { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════
   WHATSAPP
═══════════════════════════════════════════════ */
.wa-fab {
  position: fixed; bottom: var(--sp-6); right: var(--sp-6); z-index: 999;
  width: 48px; height: 48px; border-radius: var(--radius-full);
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
  transition: transform var(--duration-fast) var(--ease-out);
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab i { width: 24px; height: 24px; }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 50ms; }
.reveal-d2 { transition-delay: 100ms; }
.reveal-d3 { transition-delay: 150ms; }
.reveal-d4 { transition-delay: 200ms; }
.reveal-d5 { transition-delay: 250ms; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .cta-banner { flex-direction: column; text-align: center; gap: var(--sp-6); padding: var(--sp-10); }
  .booking-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}
@media (max-width: 768px) {
  :root { --text-4xl: 2rem; --text-3xl: 1.5rem; }
  .topbar-item { font-size: 11px; }
  .container { padding: 0 var(--sp-4); }
  .navbar-inner { padding: 0 var(--sp-4); height: 56px; }
  .hero { height: 480px; }
  .hero-content { padding: var(--sp-10) 0; }
  .hero-search { flex-direction: column; }
  .hs-sep { width: 100%; height: 1px; }
  .hs-btn { margin: var(--sp-1); border-radius: var(--radius-md); }
  .hero-arrow { display: none; }
  .hero-stats { gap: var(--sp-6); flex-wrap: wrap; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card { aspect-ratio: 3/4; }
  .tours-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .steps-grid::before { display: none; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
  .cta-banner { padding: var(--sp-8) var(--sp-5); border-radius: var(--radius-md); }
  .booking-form { padding: var(--sp-5); }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: var(--sp-12) 0; }
  .section-top { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .nav-menu {
    display: none; position: fixed; top: 92px; left: 0; right: 0; bottom: 0;
    background: var(--surface); flex-direction: column;
    padding: var(--sp-4); gap: var(--sp-1); z-index: 999;
    border-top: 1px solid var(--border);
  }
  .nav-menu.show { display: flex; }
  .nav-link { padding: var(--sp-3) var(--sp-4); font-size: var(--text-md); }
  .nav-actions { flex-direction: column; width: 100%; margin: var(--sp-4) 0 0; gap: var(--sp-2); }
  .btn-ghost, .btn-solid { width: 100%; text-align: center; padding: var(--sp-3); }
  .mobile-toggle { display: flex; }

  /* ── Mobil Topbar: kompakt, sabit ── */
  .topbar { position: sticky; top: 0; z-index: 1001; }
  .topbar-inner { padding: 0 var(--sp-3); height: 36px; }
  .topbar-email, .topbar-location { display: none; }
  .topbar-social { display: none; }
  .topbar-left { gap: var(--sp-2); }
  .topbar-right { gap: var(--sp-2); }
  .topbar-lang { padding: 2px 6px; font-size: 10px; }
}