:root {
  --bg: #001326;
  --bg-2: #001c3d;
  --bg-3: #002347;
  --gold: #f7941d;
  --gold-2: #ffb347;
  --cream: #f7f4ee;
  --muted: #b8c4d4;
  --line: rgba(247, 148, 29, 0.28);
  --shadow: 0 30px 80px rgba(0, 19, 38, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 92% 8%, rgba(247, 148, 29, 0.12), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(0, 35, 71, 0.9), transparent 36%),
    var(--bg);
  color: var(--cream);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 12px;
  margin: 0 0 12px;
}
h1, h2, h3, .serif { font-family: "Cormorant Garamond", serif; font-weight: 600; }
h2 { font-size: clamp(36px, 5vw, 56px); line-height: 1.1; margin: 0 0 18px; }
.lead { color: var(--muted); max-width: 560px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(0, 28, 61, 0.86);
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.brand { display: flex; align-items: center; gap: 10px; }
.site-header-logo {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px #f7941d;
}
.kerala-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  margin-left: 8px;
}
.places-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}
.places-strip li { opacity: .85; }
.nav-links { display: flex; gap: 28px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--gold-2); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
}
.btn-gold { background: linear-gradient(135deg, #ffb347, #f7941d); color: #001c3d; }
.btn-line { background: transparent; color: var(--cream); border: 1px solid var(--line); }
.btn:hover { transform: translateY(-1px); }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,28,61,.35) 0%, rgba(0,28,61,.58) 40%, rgba(0,19,38,.94) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 0 90px; }
.hero h1 { font-size: clamp(48px, 8vw, 92px); line-height: 0.95; margin: 0 0 18px; max-width: 900px; }
.hero p { color: #d7e3f0; max-width: 560px; font-size: 18px; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-dots { position: relative; z-index: 2; display: flex; gap: 8px; margin-top: 28px; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: #555; cursor: pointer; }
.hero-dots button.active { background: var(--gold); }

.quote-card {
  margin-top: -70px;
  position: relative;
  z-index: 4;
  background: #001c3d;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  background: #001326;
  border: 1px solid var(--line);
  color: var(--cream);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
}
.quote-result { background: linear-gradient(180deg, #002347, #001326); border-radius: 20px; padding: 22px; border: 1px solid var(--line); }
.quote-result h3 { margin: 0 0 8px; font-size: 42px; color: var(--gold-2); }
.formula { color: var(--muted); font-size: 14px; }
.fare-hint { margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.quote-breakdown {
  list-style: none;
  margin: 12px 0 10px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
}
.quote-breakdown li { margin: 0 0 6px; }
.fare-note { color: var(--muted); font-size: 14px; margin: 4px 0 0; }
.fare-block .price { margin: 0; }

.fleet-grid, .service-grid, .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vehicle-card, .service-card, .review-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: .3s ease;
}
.vehicle-card:hover, .service-card:hover, .review-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.vehicle-card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 22px; }
.price { color: var(--gold-2); font-size: 20px; }
.meta { color: var(--muted); font-size: 13px; display: flex; gap: 14px; }

.counters {
  background: linear-gradient(90deg, #001326, #002347 50%, #001326);
  border-block: 1px solid var(--line);
}
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.counter-grid strong { display: block; font-size: 48px; font-family: "Cormorant Garamond", serif; color: var(--gold-2); }
.service-card { padding: 28px; }
.service-card i { color: var(--gold); font-size: 32px; }

.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.about-grid img { border-radius: 28px; height: 460px; width: 100%; object-fit: cover; }

.stars { color: var(--gold); letter-spacing: 2px; }
.review-card { padding: 26px; }

.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item button { all: unset; cursor: pointer; width: 100%; display: flex; justify-content: space-between; gap: 20px; font-size: 20px; font-family: "Cormorant Garamond", serif; }
.faq-item p { color: var(--muted); display: none; margin: 10px 0 0; }
.faq-item.open p { display: block; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.contact-card, .contact-form { background: var(--bg-2); border: 1px solid var(--line); border-radius: 24px; padding: 28px; }
.alert-ok { background: rgba(247,148,29,.12); border: 1px solid var(--gold); color: var(--gold-2); padding: 12px 14px; border-radius: 12px; margin-bottom: 16px; }

.site-footer { padding: 40px 0 50px; color: var(--muted); border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { display: flex; align-items: flex-start; gap: 16px; max-width: 520px; }
.footer-brand strong { display: block; color: var(--cream); margin-bottom: 6px; }
.footer-brand p { margin: 0; }
.footer-contact p { margin: 0 0 6px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a:hover { color: var(--gold-2); }
.footer-copy { margin-top: 28px; font-size: 13px; }
.site-footer-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.area-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.crumbs { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.crumbs a:hover { color: var(--gold-2); }
.fleet-page { padding-top: 128px; }
.vehicle-card h3 a:hover { color: var(--gold-2); }

.menu-toggle { display: none; background: none; border: 0; color: var(--cream); font-size: 28px; }

@media (max-width: 980px) {
  .nav-links { display: none; position: absolute; top: 92px; left: 0; right: 0; background: #001c3d; padding: 18px; flex-direction: column; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .quote-card, .fleet-grid, .service-grid, .review-grid, .about-grid, .contact-grid, .counter-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
}
