/* =====================================================
   OOTYCAB — Premium Ooty Taxi & Sightseeing Service
   ===================================================== */

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

:root {
  --green:        #0D5C3A;
  --green-mid:    #1A8A56;
  --green-light:  #4CAF82;
  --gold:         #E8A020;
  --gold-light:   #F4C55A;
  --dark:         #0F1923;
  --dark-2:       #1A2332;
  --gray:         #6B7280;
  --gray-light:   #9CA3AF;
  --bg:           #F0F7F3;
  --bg-2:         #FFFFFF;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.11);
  --shadow-lg:    0 20px 64px rgba(0,0,0,0.16);
  --radius:       18px;
  --radius-sm:    10px;
  --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: #2D3748;
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.12); color: var(--gold);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
  margin-bottom: 14px;
}
.section-tag i { font-size: 0.85rem; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800; color: var(--dark); line-height: 1.2;
}
.section-sub {
  color: var(--gray); font-size: 1.05rem; margin-top: 10px; max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 10px auto 0; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: var(--transition); letter-spacing: 0.02em;
  font-family: 'Poppins', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white); box-shadow: 0 6px 24px rgba(13,92,58,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(13,92,58,0.45);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark); box-shadow: 0 6px 24px rgba(232,160,32,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232,160,32,0.45);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white); color: var(--green);
}
.btn-wa {
  background: #25D366; color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
}
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
}
.badge-green { background: rgba(13,92,58,0.1); color: var(--green); }
.badge-gold  { background: rgba(232,160,32,0.12); color: #B8780A; }

/* ── Navbar ─────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(15,25,35,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--white); font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(13,92,58,0.4);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
}
.logo-text span:last-child {
  font-size: 0.65rem; color: var(--gold); font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(255,255,255,0.1);
}
.nav-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--dark) !important; font-weight: 700 !important;
  padding: 9px 22px !important; border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(232,160,32,0.4);
}
.nav-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.5) !important;
  background: rgba(255,255,255,0.1) !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark-2); z-index: 999; padding: 100px 30px 40px;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); font-size: 1.2rem; font-weight: 500;
  padding: 14px 20px; border-radius: 12px; text-align: center;
  transition: var(--transition); display: block;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.mobile-menu .btn-gold { margin-top: 16px; justify-content: center; width: 100%; }
.close-menu {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.1); border: none; color: var(--white);
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ── Hero ───────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0a3d22 0%, #0D5C3A 40%, #1a6b45 70%, #0e4f32 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(78,205,100,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(232,160,32,0.07) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-mountains {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  height: 45%;
}
.hero-mountains svg { width: 100%; height: 100%; }
.hero-content {
  position: relative; z-index: 2; width: 100%; padding: 120px 0 80px;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15); color: var(--white);
  font-size: 0.82rem; font-weight: 600; padding: 8px 18px;
  border-radius: 50px; margin-bottom: 24px; letter-spacing: 0.05em;
}
.hero-badge i { color: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--white); line-height: 1.15;
  margin-bottom: 22px; text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.82); font-size: 1.1rem; line-height: 1.7;
  margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.h-stat { text-align: left; }
.h-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1;
}
.h-stat-num sup { font-size: 1rem; color: var(--gold); }
.h-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}

/* Booking Card */
.booking-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.booking-card-head {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  padding: 22px 28px; text-align: center;
}
.booking-card-head h3 {
  color: var(--white); font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; margin-bottom: 4px;
}
.booking-card-head p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.booking-form { padding: 24px 28px; display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem; font-weight: 600; color: #4A5568;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.form-group select, .form-group input {
  width: 100%; padding: 11px 16px; border: 1.5px solid #E2E8F0;
  border-radius: 10px; font-size: 0.92rem; font-family: 'Poppins', sans-serif;
  color: var(--dark); background: #FAFAFA;
  transition: var(--transition); outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group select:focus, .form-group input:focus {
  border-color: var(--green); background: var(--white);
  box-shadow: 0 0 0 4px rgba(13,92,58,0.08);
}
.select-wrapper { position: relative; }
.select-wrapper::after {
  content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--gray); pointer-events: none; font-size: 0.85rem;
}
.price-display {
  background: var(--bg); border-radius: 10px; padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.price-display .label { font-size: 0.82rem; color: var(--gray); }
.price-display .amount {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 800; color: var(--green);
}
.price-display .amount span { font-size: 0.9rem; font-weight: 500; color: var(--gray); }
.form-submit { padding: 0 28px 24px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note {
  text-align: center; font-size: 0.78rem; color: var(--gray);
  padding: 0 28px 18px; display: flex; align-items: center;
  justify-content: center; gap: 6px;
}
.form-note i { color: #25D366; }

/* ── Stats Strip ────────────────────────────────────── */
#stats {
  background: var(--dark); padding: 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-icon {
  width: 48px; height: 48px; border-radius: 12px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.stat-icon.green { background: rgba(13,92,58,0.2); color: var(--green-light); }
.stat-icon.gold  { background: rgba(232,160,32,0.15); color: var(--gold); }
.stat-icon.blue  { background: rgba(59,130,246,0.15); color: #60A5FA; }
.stat-icon.rose  { background: rgba(244,114,182,0.15); color: #F472B6; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.2rem;
  font-weight: 800; color: var(--white); line-height: 1;
}
.stat-num sup { font-size: 1rem; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* ── Packages ───────────────────────────────────────── */
#packages { padding: 100px 0; background: var(--bg); }
.packages-header { margin-bottom: 60px; }
.packages-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.pkg-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative;
}
.pkg-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
}
.pkg-img {
  height: 230px; position: relative; overflow: hidden;
}
.pkg-img-inner {
  width: 100%; height: 100%; transition: transform 0.6s ease;
  display: flex; align-items: center; justify-content: center;
}
.pkg-card:hover .pkg-img-inner { transform: scale(1.05); }
.pkg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}
.pkg-img-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--white); color: var(--green); font-size: 0.72rem;
  font-weight: 700; padding: 5px 13px; border-radius: 50px; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pkg-places-count {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: flex; align-items: center; gap: 8px; color: var(--white);
  font-size: 0.82rem;
}
.pkg-places-count i { color: var(--gold); }
.pkg-body { padding: 24px; }
.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.pkg-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 18px; }
.pkg-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pkg-highlight {
  display: flex; align-items: center; gap: 6px;
  background: var(--bg); color: #4A5568; font-size: 0.78rem;
  padding: 5px 12px; border-radius: 50px; font-weight: 500;
}
.pkg-highlight i { color: var(--green); font-size: 0.72rem; }
.pkg-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid #F0F0F0;
}
.pkg-duration { font-size: 0.82rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.pkg-duration i { color: var(--green); }
.pkg-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--green); font-weight: 700; font-size: 0.88rem;
  transition: var(--transition);
}
.pkg-link i { transition: transform 0.3s; }
.pkg-link:hover { color: var(--green-mid); }
.pkg-link:hover i { transform: translateX(4px); }

/* ── Fleet ──────────────────────────────────────────── */
#fleet { padding: 100px 0; background: var(--white); }
.fleet-header { margin-bottom: 60px; }
.fleet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.fleet-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid #E8EDF2; transition: var(--transition);
  position: relative;
}
.fleet-card:hover {
  transform: translateY(-6px); border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.fleet-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
}
.fleet-popular {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark); font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px; letter-spacing: 0.06em;
  text-transform: uppercase; z-index: 2;
}
.fleet-img {
  height: 200px; background: var(--bg); display: flex;
  align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.fleet-img-art {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 5rem; transition: transform 0.4s;
}
.fleet-card:hover .fleet-img-art { transform: scale(1.08); }
.fleet-body { padding: 24px; }
.fleet-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 4px;
}
.fleet-capacity { font-size: 0.83rem; color: var(--gray); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.fleet-capacity i { color: var(--green); }
.fleet-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.fleet-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: #4A5568;
}
.fleet-feature i { color: var(--green); width: 16px; text-align: center; flex-shrink: 0; }
.fleet-price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid #F0F0F0;
}
.fleet-price { display: flex; flex-direction: column; }
.fleet-price-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
.fleet-price-amount {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  font-weight: 800; color: var(--green); line-height: 1;
}
.fleet-price-amount sup { font-size: 1rem; vertical-align: super; }
.fleet-price-per { font-size: 0.75rem; color: var(--gray); }
.fleet-book {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white); padding: 10px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(13,92,58,0.25);
}
.fleet-book:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,92,58,0.35);
}
.fleet-card.featured .fleet-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark); box-shadow: 0 4px 16px rgba(232,160,32,0.3);
}

/* ── Why Us ─────────────────────────────────────────── */
#why { padding: 100px 0; background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 60px;
}
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; display: flex; gap: 22px; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1.5px solid transparent;
}
.why-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: rgba(13,92,58,0.12);
}
.why-icon {
  width: 58px; height: 58px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}
.wi-green    { background: rgba(13,92,58,0.1); color: var(--green); }
.wi-gold     { background: rgba(232,160,32,0.12); color: var(--gold); }
.wi-blue     { background: rgba(59,130,246,0.1); color: #3B82F6; }
.wi-purple   { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.wi-rose     { background: rgba(244,114,182,0.1); color: #EC4899; }
.wi-teal     { background: rgba(20,184,166,0.1); color: #14B8A6; }
.wi-orange   { background: rgba(249,115,22,0.1); color: #F97316; }
.wi-indigo   { background: rgba(99,102,241,0.1); color: #6366F1; }
.why-content h4 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.why-content p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ── Testimonials ───────────────────────────────────── */
#testimonials { padding: 100px 0; background: var(--dark); overflow: hidden; }
.testimonials-inner { position: relative; }
.testimonials-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 30px; transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(232,160,32,0.2);
  transform: translateY(-4px);
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-stars i { color: var(--gold); font-size: 0.85rem; }
.testi-text {
  color: rgba(255,255,255,0.82); font-size: 0.93rem; line-height: 1.75;
  margin-bottom: 22px; font-style: italic;
}
.testi-text::before { content: '\201C'; color: var(--gold); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testi-info h5 {
  color: var(--white); font-size: 0.92rem; font-weight: 600; margin-bottom: 2px;
}
.testi-info p { color: rgba(255,255,255,0.45); font-size: 0.78rem; }

/* ── CTA ────────────────────────────────────────────── */
#cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0D5C3A 0%, #0a3d22 100%);
  position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative; z-index: 1; text-align: center;
}
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--white); margin-bottom: 16px;
}
.cta-inner h2 em { color: var(--gold); font-style: normal; }
.cta-inner p {
  color: rgba(255,255,255,0.75); font-size: 1.08rem;
  max-width: 520px; margin: 0 auto 40px;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-contact {
  display: flex; justify-content: center; gap: 36px; margin-top: 50px; flex-wrap: wrap;
}
.cta-contact-item {
  display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8);
}
.cta-contact-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,0.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.cta-contact-item strong { display: block; color: var(--white); font-size: 0.95rem; }
.cta-contact-item span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ── Footer ─────────────────────────────────────────── */
#footer {
  background: #080F16; padding: 70px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-about .nav-logo { margin-bottom: 18px; }
.footer-about p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition);
}
.social-btn:hover { background: var(--green); color: var(--white); }
.footer-col h4 {
  color: var(--white); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--green-light); flex-shrink: 0;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a:hover::before { background: var(--gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; color: rgba(255,255,255,0.5); font-size: 0.87rem;
}
.footer-contact-item i {
  color: var(--green-light); margin-top: 3px; flex-shrink: 0; width: 14px;
}
.footer-contact-item a { color: inherit; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 22px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom p span { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── WhatsApp Float ─────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 900;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  transition: var(--transition); animation: pulse-wa 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.12); background: #1EBC5A;
  box-shadow: 0 8px 40px rgba(37,211,102,0.6);
  animation: none;
}
.wa-tooltip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--white); font-size: 0.78rem;
  white-space: nowrap; padding: 7px 14px; border-radius: 8px;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%); border: 6px solid transparent;
  border-right: none; border-left-color: var(--dark);
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  70%       { box-shadow: 0 6px 30px rgba(37,211,102,0.5), 0 0 0 18px rgba(37,211,102,0); }
}

/* ── Package Detail Page ────────────────────────────── */
.pkg-detail-hero {
  padding: 140px 0 70px; position: relative;
  min-height: 420px; display: flex; align-items: flex-end;
}
.pkg-detail-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 100%);
}
.pkg-detail-hero .container { position: relative; z-index: 2; }
.pkg-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 20px;
  transition: var(--transition);
}
.pkg-back:hover { color: var(--white); }
.pkg-detail-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: var(--white); margin-bottom: 10px;
}
.pkg-detail-tagline { color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.pkg-detail-meta {
  display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap;
}
.pkg-meta-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
}
.pkg-meta-item i { color: var(--gold); }
.pkg-detail-body { padding: 80px 0; background: var(--bg); }
.pkg-detail-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start;
}
.places-section h2 {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  font-weight: 700; color: var(--dark); margin-bottom: 30px;
}
.place-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; margin-bottom: 16px; box-shadow: var(--shadow-sm);
  display: flex; gap: 18px; align-items: flex-start;
  transition: var(--transition); border: 1.5px solid transparent;
}
.place-card:hover {
  border-color: rgba(13,92,58,0.15); box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.place-num {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.place-content h4 {
  font-weight: 700; color: var(--dark); font-size: 1rem; margin-bottom: 6px;
}
.place-content p { color: var(--gray); font-size: 0.87rem; line-height: 1.6; }
.pkg-tip {
  background: rgba(232,160,32,0.1); border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0; padding: 18px 22px; margin-top: 24px;
  display: flex; gap: 14px;
}
.pkg-tip i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.pkg-tip p { color: #5A4A1A; font-size: 0.88rem; line-height: 1.6; }
.pkg-sidebar { position: sticky; top: 100px; }
.sidebar-book-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sbc-head {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  padding: 24px; text-align: center;
}
.sbc-head h3 {
  color: var(--white); font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 4px;
}
.sbc-head p { color: rgba(255,255,255,0.75); font-size: 0.82rem; }
.sbc-prices { padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.sbc-price-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: var(--bg); border-radius: 12px;
  border: 1.5px solid transparent; transition: var(--transition); cursor: pointer;
}
.sbc-price-item:hover { border-color: var(--green); }
.sbc-price-item .vehicle { display: flex; flex-direction: column; }
.sbc-price-item .v-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.sbc-price-item .v-cap { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }
.sbc-price-item .v-price {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  font-weight: 800; color: var(--green);
}
.sbc-price-item .v-price sup { font-size: 0.8rem; vertical-align: super; }
.sbc-actions { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 10px; }
.sbc-actions .btn { width: 100%; justify-content: center; }
.other-pkgs { margin-top: 24px; }
.other-pkgs h4 {
  font-size: 0.85rem; font-weight: 700; color: var(--dark);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.other-pkg-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--white); border-radius: 12px;
  margin-bottom: 8px; box-shadow: var(--shadow-sm); transition: var(--transition);
  color: var(--dark); font-size: 0.88rem; font-weight: 500;
}
.other-pkg-link:hover { background: var(--green); color: var(--white); transform: translateX(4px); }
.other-pkg-link i { opacity: 0.5; }

/* ── Contact Page ───────────────────────────────────── */
.contact-hero {
  padding: 140px 0 70px; min-height: 340px; display: flex; align-items: flex-end;
  background: linear-gradient(135deg, var(--dark), #1A3A28);
}
.contact-body { padding: 80px 0; background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  font-weight: 700; color: var(--dark); margin-bottom: 14px;
}
.contact-info > p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; display: flex; gap: 18px; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-card h4 { font-weight: 700; color: var(--dark); font-size: 0.95rem; margin-bottom: 6px; }
.contact-card p, .contact-card a { color: var(--gray); font-size: 0.88rem; transition: var(--transition); }
.contact-card a:hover { color: var(--green); }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cfm-head {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  padding: 24px 28px;
}
.cfm-head h3 {
  color: var(--white); font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; margin-bottom: 4px;
}
.cfm-head p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.cfm-body { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.cfm-body textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #E2E8F0;
  border-radius: 10px; font-size: 0.92rem; font-family: 'Poppins', sans-serif;
  color: var(--dark); resize: vertical; min-height: 110px; outline: none;
  transition: var(--transition);
}
.cfm-body textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 4px rgba(13,92,58,0.08);
}
.cfm-body .btn { width: 100%; justify-content: center; }

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.7s cubic-bezier(0.4,0,0.2,1) both;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-card { max-width: 520px; margin: 0 auto; }
  .hero-sub, .hero-actions { max-width: 600px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pkg-detail-grid { grid-template-columns: 1fr; }
  .pkg-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero { padding-top: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .packages-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
  .cta-contact { gap: 20px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 2.1rem; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.7rem; }
}

/* ═══════════════════════════════════════════════════
   TOP CONTACT BAR
═══════════════════════════════════════════════════ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--dark-2); height: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 42px;
}
.topbar-left { display: flex; align-items: center; gap: 14px; }
.topbar-item {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.65); font-size: 0.78rem;
}
.topbar-item i { color: var(--gold); font-size: 0.72rem; }
.topbar-item a { color: inherit; transition: var(--transition); }
.topbar-item a:hover { color: var(--white); }
.topbar-divider { color: rgba(255,255,255,0.2) !important; font-size: 0.9rem !important; }
.topbar-right { display: flex; align-items: center; }
.topbar-wa {
  display: flex; align-items: center; gap: 6px;
  background: #25D366; color: white !important; font-size: 0.75rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px; transition: var(--transition);
}
.topbar-wa:hover { background: #1EBC5A; transform: none; }
.topbar-wa i { font-size: 0.9rem; }

/* Adjust navbar to sit below topbar */
#navbar { top: 42px; }
#navbar.scrolled { top: 0; z-index: 1002; }

/* Mobile: hide topbar */
.mobile-phone {
  display: flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 1rem; font-weight: 600;
  padding: 14px 20px; background: rgba(232,160,32,0.1);
  border-radius: 12px; margin-bottom: 8px;
}
.mobile-phone a { color: inherit; }

/* ═══════════════════════════════════════════════════
   TEASER / HERO (Carousel + Tariff)
═══════════════════════════════════════════════════ */
#teaser {
  min-height: 100vh;
  background: linear-gradient(150deg, #071f10 0%, #0D5C3A 45%, #0a4028 100%);
  padding-top: 42px; /* topbar */
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
#teaser::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(76,175,130,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(232,160,32,0.06) 0%, transparent 50%);
  pointer-events: none;
}
/* Subtle road lines at bottom */
#teaser::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg,
    var(--gold) 0, var(--gold) 60px, transparent 60px, transparent 100px);
  opacity: 0.25;
}
.teaser-inner {
  position: relative; z-index: 2; width: 100%;
  padding: 100px 0 70px; /* navbar + spacing */
}
.teaser-grid {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 52px;
  align-items: center;
}

/* ── Tariff Box ─────────────────────────────────── */
.tariff-box {
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0,0,0,0.5);
  overflow: hidden; flex-shrink: 0;
}
.tariff-head {
  background: linear-gradient(135deg, #0a1a10, #0D5C3A);
  padding: 18px 22px; display: flex; align-items: center; gap: 12px;
}
.tariff-head-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(232,160,32,0.18); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-size: 1.15rem; flex-shrink: 0;
}
.tariff-head-text h3 {
  color: var(--white); font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; margin-bottom: 2px;
}
.tariff-head-text p { color: rgba(255,255,255,0.5); font-size: 0.72rem; }
.tariff-tabs {
  display: flex; border-bottom: 2px solid #EEF2EF;
}
.tariff-tab {
  flex: 1; padding: 11px 8px; background: none; border: none;
  font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 600;
  color: var(--gray); cursor: pointer; transition: var(--transition);
  text-align: center; position: relative; line-height: 1.3;
}
.tariff-tab::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: var(--green); transform: scaleX(0); transition: transform 0.3s;
}
.tariff-tab.active { color: var(--green); background: rgba(13,92,58,0.04); }
.tariff-tab.active::after { transform: scaleX(1); }
.tariff-tab:hover:not(.active) { color: var(--green-mid); background: var(--bg); }
.tariff-table-wrap { padding: 0; }
.tariff-table { width: 100%; border-collapse: collapse; }
.tariff-table th {
  background: var(--bg); color: #64748B; font-size: 0.68rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 9px 14px; text-align: left;
}
.tariff-table th:not(:first-child) { text-align: center; }
.tariff-table td {
  padding: 11px 14px; font-size: 0.85rem; color: var(--dark);
  border-bottom: 1px solid #F3F6F4; vertical-align: middle;
}
.tariff-table tr:last-child td { border-bottom: none; }
.tariff-table tr:hover td { background: #FAFFFE; }
.tariff-cab {
  display: flex; align-items: center; gap: 9px; font-weight: 600;
}
.tariff-cab-icon {
  width: 32px; height: 32px; border-radius: 8px; display: flex;
  align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.tariff-cab-icon.c1 { background: rgba(13,92,58,0.1); }
.tariff-cab-icon.c2 { background: rgba(232,160,32,0.12); }
.tariff-cab-icon.c3 { background: rgba(99,102,241,0.1); }
.tariff-price {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 1.05rem; color: var(--green); text-align: center;
}
.tariff-cap {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; font-size: 0.75rem; color: var(--gray);
  white-space: nowrap;
}
.tariff-cap i { color: var(--green-mid); font-size: 0.68rem; }
.tariff-note-row td {
  background: rgba(232,160,32,0.07); font-size: 0.73rem;
  color: #7A5F10; text-align: center; padding: 7px 14px;
  border-top: 1px solid rgba(232,160,32,0.15);
}
.tariff-note-row i { color: var(--gold); margin-right: 4px; }
.tariff-actions {
  padding: 14px 16px; display: flex; flex-direction: column; gap: 9px;
  border-top: 1px solid #EEF2EF; background: #FAFFFE;
}
.tariff-actions .btn { width: 100%; justify-content: center; font-size: 0.88rem; padding: 12px 20px; }
.tariff-trust {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 0.7rem; color: var(--gray); padding: 0 0 4px;
}
.tariff-trust i { color: var(--green); }

/* ── Car Carousel ───────────────────────────────── */
.car-carousel { position: relative; overflow: hidden; }
.carousel-viewport { overflow: hidden; border-radius: 12px; }
.carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  min-width: 100%; padding: 0 10px 0 0;
  display: flex; flex-direction: column; align-items: flex-start;
}
.slide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.3);
  color: var(--gold); font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.slide-badge i { font-size: 0.78rem; }
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800; color: var(--white); line-height: 1.12;
  margin-bottom: 8px;
}
.slide-title em { color: var(--gold); font-style: normal; }
.slide-sub {
  color: rgba(255,255,255,0.68); font-size: 0.98rem;
  margin-bottom: 22px; max-width: 500px; line-height: 1.6;
}
.slide-car-wrap {
  width: 100%; position: relative;
}
.slide-car-svg {
  width: 100%; max-width: 580px; height: auto;
  object-fit: contain; display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
  animation: cabFloat 5s ease-in-out infinite;
}
@keyframes cabFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}
.slide-price-strip {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px;
}
.price-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.09); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 50px;
  padding: 7px 16px; color: rgba(255,255,255,0.88); font-size: 0.8rem;
  transition: var(--transition);
}
.price-pill:hover { background: rgba(255,255,255,0.15); border-color: var(--gold); }
.price-pill .pp-icon { font-size: 1.1rem; }
.price-pill strong { color: var(--gold); font-size: 0.95rem; font-family: 'Playfair Display', serif; }
.carousel-footer {
  display: flex; align-items: center; gap: 18px; margin-top: 26px;
}
.carousel-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 0.85rem;
  flex-shrink: 0;
}
.carousel-arrow:hover {
  background: var(--gold); border-color: var(--gold); color: var(--dark);
  transform: scale(1.08);
}
.carousel-dots { display: flex; gap: 7px; align-items: center; }
.c-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: var(--transition); border: none; padding: 0; display: block;
}
.c-dot.active {
  background: var(--gold); width: 22px; border-radius: 4px;
}
.carousel-label {
  margin-left: auto; color: rgba(255,255,255,0.4); font-size: 0.78rem;
}
.carousel-label span { color: var(--white); font-weight: 600; }

/* ── Teaser responsive ──────────────────────────── */
@media (max-width: 1060px) {
  .teaser-grid { grid-template-columns: 1fr; gap: 36px; }
  .tariff-box { max-width: 460px; margin: 0 auto; }
  .carousel-slide { align-items: center; text-align: center; }
  .slide-sub { margin: 0 auto 22px; }
  .slide-price-strip { justify-content: center; }
  .carousel-footer { justify-content: center; }
  .carousel-label { display: none; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  #navbar { top: 0; }
  #navbar.scrolled { top: 0; }
  #teaser { padding-top: 0; }
  .teaser-inner { padding: 90px 0 50px; }
  .tariff-tab { font-size: 0.68rem; padding: 10px 6px; }
  .topbar-item.topbar-divider { display: none; }
  .topbar-left .topbar-item:nth-child(3),
  .topbar-left .topbar-item:nth-child(4),
  .topbar-left .topbar-item:nth-child(5) { display: none; }
  .slide-car-svg { max-width: 340px; }
}
@media (max-width: 480px) {
  .slide-title { font-size: 1.9rem; }
  .price-pill { font-size: 0.72rem; padding: 6px 12px; }
  .tariff-table th, .tariff-table td { padding: 9px 10px; }
}
