/* ================================================================
   SERTTRAVEL.COM — Public Website CSS
   Standalone, zero admin panel dependency
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ================================================================
   1. DESIGN TOKENS
   ================================================================ */
:root {
  /* Colors */
  --red:          #C41E3A;
  --red-dark:     #9E0E28;
  --red-light:    #ff3355;
  --red-glow:     rgba(196,30,58,.25);
  --gold:         #D4AF37;
  --gold-light:   #FFD700;

  --dark:         #080D14;
  --dark-2:       #0F1923;
  --dark-3:       #1A2535;
  --dark-4:       #243040;

  --white:        #FFFFFF;
  --off-white:    #F8F9FC;
  --light:        #EFF2F8;

  --text:         #1A1A2E;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;
  --border:       #E5E7EB;
  --border-dark:  rgba(255,255,255,.08);

  --green:        #25D366;  /* WhatsApp */
  --success:      #10B981;
  --warning:      #F59E0B;

  /* Spacing */
  --header-h:     76px;

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   36px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 10px rgba(0,0,0,.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.20);
  --shadow-red: 0 8px 32px rgba(196,30,58,.30);

  /* Transitions */
  --ease:       cubic-bezier(.4,0,.2,1);
  --t:          all .3s var(--ease);
  --t-fast:     all .15s var(--ease);

  /* Fonts */
  --font:       'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* ================================================================
   2. RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ================================================================
   3. LAYOUT
   ================================================================ */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 100px 0; }
section.sm { padding: 64px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(196,30,58,.10);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
  border: 1px solid rgba(196,30,58,.15);
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title span { color: var(--red); }

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-desc  { color: rgba(255,255,255,.65); }

/* ================================================================
   4. BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: var(--t);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: var(--t-fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196,30,58,.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  color: var(--white);
}

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

.btn-light {
  background: var(--white);
  color: var(--red);
  box-shadow: var(--shadow-md);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--red-dark);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37,211,102,.30);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,.45);
  color: var(--white);
}

.btn-lg { padding: 19px 40px; font-size: 16px; border-radius: var(--r-lg); }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: var(--r-sm); }

/* ================================================================
   5. HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(8, 13, 20, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--t);
}

.site-header.scrolled {
  background: rgba(8, 13, 20, 0.98);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,30,58,.4);
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.01em;
}

.logo-tag {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 3px;
}

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

.nav-link {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.09);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-dark);
  transition: var(--t-fast);
}
.header-phone:hover { border-color: rgba(255,255,255,.2); color: var(--white); }
.header-phone i { color: var(--green); }

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(8, 13, 20, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-dark);
  padding: 20px 28px 28px;
  z-index: 999;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.mobile-nav.open { display: block; }

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: var(--t-fast);
}
.mobile-nav a:hover { color: var(--white); padding-left: 6px; }
.mobile-nav a i { width: 18px; color: var(--red); }

/* ================================================================
   6. HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(196,30,58,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(196,30,58,.06) 0%, transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, #0d1520 40%, #09101a 70%, #100811 100%);
  z-index: 0;
}

/* Animasyonlu partiküller */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,.3) 0%, transparent 100%);
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: .5; }
  to   { opacity: 1; }
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 70% at center, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 60px) 0 80px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196,30,58,.15);
  border: 1px solid rgba(196,30,58,.35);
  color: #ff9aaa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
}

.hero-tag i { color: var(--gold-light); font-size: 14px; }

.hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.07;
  margin-bottom: 24px;
  max-width: 750px;
  letter-spacing: -.02em;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .accent {
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 2px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,.68);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* ─── Booking Widget ───────────────────────────────────────────── */
.booking-widget {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.1);
  padding: 10px;
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  margin-bottom: 60px;
}

.booking-field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.booking-field-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  width: 100%;
  cursor: pointer;
  transition: var(--t-fast);
}
.booking-field-inner:hover { background: var(--off-white); }

.booking-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.booking-icon.red   { background: rgba(196,30,58,.10); color: var(--red); }
.booking-icon.green { background: rgba(37,211,102,.10); color: var(--green); }
.booking-icon.gold  { background: rgba(212,175,55,.12); color: var(--gold); }
.booking-icon.blue  { background: rgba(99,102,241,.10); color: #6366f1; }

.booking-texts { display: flex; flex-direction: column; min-width: 0; flex: 1; }

.booking-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.booking-input {
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  width: 100%;
}
.booking-input::placeholder { color: var(--text-light); font-weight: 400; }

select.booking-input { cursor: pointer; }

.booking-sep {
  width: 1px;
  background: var(--border);
  margin: 12px 0;
  flex-shrink: 0;
}

.booking-submit {
  flex-shrink: 0;
  padding: 6px;
}

.booking-submit .btn {
  height: 100%;
  padding: 16px 32px;
  font-size: 15px;
  border-radius: var(--r-lg);
}

/* ─── Hero Stats ───────────────────────────────────────────────── */
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-num span { color: var(--red); }

.stat-label {
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: .02em;
}

/* Scroll arrow */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4), transparent);
}

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

/* ================================================================
   7. WHY US — Feature Cards
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--t);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,30,58,.03) 0%, transparent 60%);
  opacity: 0;
  transition: var(--t);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,30,58,.2);
}
.feature-card:hover::after { opacity: 1; }

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(196,30,58,.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  transition: var(--t);
}
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }

.feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================================
   8. POPULAR ROUTES
   ================================================================ */
.section-dark {
  background: var(--dark-2);
}

.routes-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}

.route-tab {
  padding: 11px 22px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--dark-3);
  color: rgba(255,255,255,.6);
  border: 1.5px solid rgba(255,255,255,.08);
  transition: var(--t-fast);
}
.route-tab:hover { color: var(--white); border-color: rgba(255,255,255,.2); }
.route-tab.active {
  background: var(--red);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

.routes-panel { display: none; }
.routes-panel.active { display: block; }

.route-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.route-table thead tr th {
  text-align: left;
  padding: 14px 18px;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-dark);
}

.route-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: var(--t-fast);
}
.route-table tbody tr:hover { background: rgba(255,255,255,.03); }

.route-table tbody td {
  padding: 15px 18px;
  color: rgba(255,255,255,.85);
}

.route-table .price {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 15px;
}

.route-table .route-name { font-weight: 600; color: var(--white); }

/* ================================================================
   9. VEHICLES
   ================================================================ */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,30,58,.2);
}

.vehicle-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
}

.vehicle-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }

.vehicle-type {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.vehicle-name {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -.01em;
}

.vehicle-specs {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
}

.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.vehicle-spec i { color: var(--text-light); }

.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.vehicle-tag {
  background: var(--off-white);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
}

.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.vehicle-price-from { font-size: 12px; color: var(--text-light); }
.vehicle-price-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* ================================================================
   10. TOURS
   ================================================================ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tour-img {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  overflow: hidden;
}

.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-full);
  letter-spacing: .05em;
}

.tour-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }

.tour-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.tour-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.tour-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.tour-meta-item i { color: var(--text-light); }
.tour-meta-item.price { color: var(--red); font-weight: 700; font-size: 15px; }

/* ================================================================
   11. TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--t);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  quotes: "\201C" "\201D";
}
.testimonial-text::before { content: open-quote; color: var(--red); font-size: 28px; line-height: 0; vertical-align: -12px; }

.testimonial-author { display: flex; align-items: center; gap: 13px; }

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name { font-size: 15px; font-weight: 700; color: var(--white); }
.testimonial-meta { font-size: 13px; color: rgba(255,255,255,.45); }

/* ================================================================
   12. CTA SECTION
   ================================================================ */
.cta-box {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #e0245d 100%);
  border-radius: 28px;
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(196,30,58,.4);
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 40%);
}

.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

/* ================================================================
   13. FOOTER
   ================================================================ */
.site-footer {
  background: var(--dark);
  color: var(--white);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand { }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-top: 18px;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 16px;
  transition: var(--t-fast);
  border: 1px solid var(--border-dark);
}
.footer-social:hover {
  background: var(--red);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 22px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: var(--t-fast);
}
.footer-link:hover { color: var(--white); padding-left: 4px; }
.footer-link i { color: var(--red); font-size: 12px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(196,30,58,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-text { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.5; }
.footer-contact-text strong { color: var(--white); display: block; font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 2px; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 13px; color: rgba(255,255,255,.4); }

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: var(--t-fast);
}
.footer-bottom-link:hover { color: rgba(255,255,255,.75); }

/* ================================================================
   14. FLOATING WHATSAPP
   ================================================================ */
.wp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  z-index: 900;
  transition: var(--t);
  text-decoration: none;
}
.wp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,.6);
  color: var(--white);
}

/* Pulse ring */
.wp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: ring 2.5s ease-out infinite;
  opacity: 0;
}

@keyframes ring {
  0%   { transform: scale(.9); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ================================================================
   15. ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s !important; }
.reveal-delay-2 { transition-delay: .2s !important; }
.reveal-delay-3 { transition-delay: .3s !important; }
.reveal-delay-4 { transition-delay: .4s !important; }

/* ================================================================
   16. UTILITY
   ================================================================ */
.text-center { text-align: center; }
.mt-12 { margin-top: 48px; }
.mt-8  { margin-top: 32px; }
.gap-3 { gap: 12px; }
.d-flex { display: flex; }
.ai-center { align-items: center; }
.fw { width: 100%; }

/* ================================================================
   17. RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-widget { flex-wrap: wrap; }
  .booking-sep { display: none; }
  .booking-field { min-width: calc(50% - 8px); }
  .booking-submit { width: 100%; }
  .booking-submit .btn { width: 100%; padding: 17px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .site-nav, .header-phone { display: none; }
  .burger { display: flex; }
  .hero-title { font-size: clamp(32px, 8vw, 52px); }
  .hero-stats { gap: 28px; }
  .booking-widget { border-radius: var(--r-lg); }
  .booking-field { min-width: 100%; }
  .vehicles-grid, .tours-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 44px 28px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .routes-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
}
