/* ============================================================
   HajipurCarBooking — Mobile-First Stylesheet
   Base styles = Mobile (320px+)
   Tablet overrides = 600px+
   Desktop overrides = 900px+
   FILE: css/style.css
   ============================================================ */

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

/* --- CSS VARIABLES --- */
:root {
  --red:       #8B0000;
  --red-light: #B22222;
  --red-dark:  #5C0000;
  --gold:      #C9A84C;
  --gold-lt:   #FFD700;
  --gold-pale: #FFF8E1;
  --brown:     #5C3317;
  --brown-lt:  #8B5E3C;
  --white:     #FFFFFF;
  --off-white: #FDF6EC;
  --gray-lt:   #F5F0EA;
  --gray:      #888;
  --dark:      #1A0A00;
  --text:      #2C1A0E;
  --border:    #E8D5B0;
  --green:     #25D366;

  --shadow-sm: 0 2px 8px rgba(139,0,0,0.10);
  --shadow-md: 0 6px 24px rgba(139,0,0,0.15);
  --shadow-lg: 0 16px 48px rgba(139,0,0,0.20);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Mukta', 'Segoe UI', sans-serif;
  --transition: 0.3s 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; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; } /* 16px prevents iOS zoom */

/* ============================================================
   ANNOUNCEMENT BAR — Mobile
   ============================================================ */
.ann-bar {
  background: var(--red-dark);
  color: var(--gold-lt);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 7px 12px;
  line-height: 1.5;
}
.ann-bar a { color: var(--gold-lt); text-decoration: underline; }

/* ============================================================
   PROMISE TICKER — Mobile
   ============================================================ */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-block;
  padding: 0 20px;
  color: var(--gold-lt);
  font-size: 0.78rem;
  font-weight: 600;
}
.ticker-sep {
  display: inline-block;
  color: var(--gold);
  padding: 0 2px;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NAVBAR — Mobile First
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  padding: 0 14px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--red);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-text em { font-style: normal; }
.logo-text span {
  color: var(--gold);
  display: block;
  font-size: 0.58rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hide desktop nav links on mobile */
.nav-links { display: none; }

/* Mobile: show only call button + hamburger */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.btn-nav-call {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  background: var(--gold-pale);
  color: var(--red);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}
.btn-nav-login { display: none; } /* Hidden on mobile */
.btn-nav-book  { display: none; } /* Hidden on mobile — use floating button */

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.55);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--white);
  padding: 20px 18px;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0,0,0,0.2);
}
.mobile-menu-inner .close-btn {
  float: right;
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}
.mobile-menu-inner .mm-title {
  font-family: var(--font-head);
  color: var(--red);
  font-size: 1.05rem;
  margin: 8px 0 14px;
  clear: both;
  padding-top: 4px;
}
.mobile-menu-inner a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
}
.mobile-menu-inner a:hover { color: var(--red); }
.mm-wa-btn {
  display: block;
  margin-top: 16px;
  background: var(--green);
  color: #fff !important;
  text-align: center;
  padding: 13px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  border: none !important;
}
.mm-call-btn {
  display: block;
  margin-top: 8px;
  background: var(--red);
  color: var(--gold-lt) !important;
  text-align: center;
  padding: 13px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  border: none !important;
}

/* ============================================================
   HERO — Mobile First (single column)
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--off-white) 0%, #FFF3E0 60%, #FDE8D8 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201,168,76,0.10) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(139,0,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 28px 18px 24px;
  order: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--gold-lt);
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold-lt);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(1.5); }
}
.hero h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  line-height: 1.15;
  color: var(--red-dark);
  margin-bottom: 6px;
}
.hero h1 span { color: var(--gold); display: block; }

.hero-tagline {
  font-size: 0.9rem;
  color: var(--brown-lt);
  margin: 12px 0 18px;
  line-height: 1.7;
}
.hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.promise-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.promise-pill .icon { font-size: 0.85rem; }

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: var(--gold-lt);
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(139,0,0,0.3);
  width: 100%;
}
.btn-primary:active { transform: scale(0.98); }

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  width: 100%;
}
.btn-wa:active { transform: scale(0.98); }

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
}
.btn-secondary:active { transform: scale(0.98); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1.5px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.62rem;
  color: var(--gray);
  font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Hero image — full width below content on mobile */
.hero-image {
  position: relative;
  order: 2;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #F5E6C8 0%, #E8C99A 40%, #D4A86A 100%);
}
.hero-ring { display: none; } /* Hide decorative ring on mobile */
.hero-ambassador {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-float-card { display: none; } /* Hide floating cards on mobile */

/* ============================================================
   SECTIONS — Mobile shared styles
   ============================================================ */
section { padding: 48px 16px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-label::before, .section-label::after {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--red-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 0.88rem;
  color: var(--brown-lt);
  margin-bottom: 28px;
  line-height: 1.7;
}
.text-center { text-align: center; }

/* ============================================================
   QUOTE / ENQUIRY FORM — Mobile First
   ============================================================ */
.form-section {
  background: var(--off-white);
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  padding: 36px 14px;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-card-header {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 20px 18px;
  text-align: center;
}
.form-card-header h2 {
  font-family: var(--font-head);
  color: var(--gold-lt);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.form-card-header p { color: rgba(255,255,255,0.8); font-size: 0.8rem; }

/* Trip tabs — scrollable on mobile */
.trip-tabs {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: var(--gray-lt);
  border-bottom: 1px solid var(--border);
}
.trip-tabs::-webkit-scrollbar { display: none; }
.trip-tab {
  flex-shrink: 0;
  padding: 12px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.trip-tab.active {
  color: var(--red);
  background: var(--white);
  border-bottom-color: var(--red);
}

.form-body { padding: 20px 16px; }

/* Mobile: single column form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group label .req { color: var(--red); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px; /* Prevents iOS zoom */
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(139,0,0,0.08);
}
.form-control::placeholder { color: #bbb; }

/* Car options — 2 columns on mobile */
.car-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.car-opt {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.car-opt.selected { border-color: var(--red); background: #FFF0F0; }
.car-opt .car-icon { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.car-opt .car-name { font-size: 0.78rem; font-weight: 700; color: var(--text); }
.car-opt .car-cap  { font-size: 0.68rem; color: var(--gray); }

.form-submit-row {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--gold-lt);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(139,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:active { transform: scale(0.98); }
.btn-submit:disabled { opacity:0.7; cursor:not-allowed; transform:none; }

.btn-wa-quote {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-wa-quote:active { transform: scale(0.98); }

.form-security {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--gray);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.form-security span { display: flex; align-items: center; gap: 3px; }

.form-msg {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
}
.form-msg.success { background:#E8F5E9; color:#2E7D32; border:1px solid #A5D6A7; display:block; }
.form-msg.error   { background:#FFEBEE; color:#C62828; border:1px solid #EF9A9A; display:block; }

/* ============================================================
   SERVICES — Mobile: 2 columns
   ============================================================ */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.service-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:active::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(139,0,0,0.2);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--red-dark);
  margin-bottom: 6px;
}
.service-card p { font-size: 0.78rem; color: var(--brown-lt); line-height: 1.5; }
.service-card .wa-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
}

/* ============================================================
   WHY CHOOSE US — Mobile
   ============================================================ */
.trust-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  color: var(--white);
}
.trust-section .section-title  { color: var(--gold-lt); }
.trust-section .section-label  { color: var(--gold-lt); }
.trust-section .section-label::before,
.trust-section .section-label::after { background: var(--gold-lt); }
.trust-section .section-sub    { color: rgba(255,255,255,0.75); }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.trust-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-card .tc-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-card h3 {
  font-family: var(--font-head);
  font-size: 0.97rem;
  color: var(--gold-lt);
  margin-bottom: 6px;
}
.trust-card p { font-size: 0.83rem; color: rgba(255,255,255,0.78); line-height: 1.6; }

/* ============================================================
   ROUTES — Mobile
   ============================================================ */
.routes-section { background: var(--gray-lt); }
.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.route-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.route-card:active { border-color: var(--red); background: var(--gold-pale); }
.route-icon {
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.route-info { flex: 1; }
.route-info .from-to { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.route-info .route-tag { font-size: 0.72rem; color: var(--gray); margin-top: 2px; }
.route-arrow { color: var(--red); font-size: 1rem; font-weight: 700; }

/* ============================================================
   REVIEWS — Mobile: 1 column
   ============================================================ */
.reviews-section { background: var(--off-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 16px;
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--gold-lt);
  line-height: 1;
  opacity: 0.5;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 3px 9px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}
.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; }
.review-text { font-size: 0.87rem; color: var(--text); line-height: 1.7; margin-bottom: 14px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--white); font-weight: 700;
  flex-shrink: 0;
}
.reviewer-info .name { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.reviewer-info .location { font-size: 0.72rem; color: var(--gray); }

/* ============================================================
   COVERAGE — Mobile
   ============================================================ */
.coverage-section { background: var(--white); }
.coverage-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.coverage-list li:last-child { border: none; }
.coverage-list li .bullet { color: var(--red); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.states-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.state-tag {
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 4px 11px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brown);
}

/* ============================================================
   FAQ — Mobile
   ============================================================ */
.faq-section { background: var(--gray-lt); }
.faq-list { }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 18px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  -webkit-tap-highlight-color: transparent;
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--red);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); color: var(--white); }
.faq-item.open .faq-q { color: var(--red); }
.faq-a {
  display: none;
  padding: 0 18px 16px;
  font-size: 0.87rem;
  color: var(--brown-lt);
  line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CONTACT — Mobile
   ============================================================ */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border: none; }
.cd-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cd-text .cd-label { font-size: 0.7rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.cd-text .cd-value { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.cd-text a { color: var(--red); }
.contact-form-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
}
.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--red-dark);
  margin-bottom: 16px;
}
textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* ============================================================
   FOOTER — Mobile
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 16px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 32px;
}
.footer-brand .logo-text { color: var(--gold-lt); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.45); }
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  margin: 12px 0;
  color: rgba(255,255,255,0.6);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:active { background: var(--red); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--gold-lt);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col a:active { color: var(--gold-lt); }

/* Mobile: 2-column footer links */
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom span { color: var(--gold); }

/* ============================================================
   FLOATING BUTTONS — Mobile optimized
   ============================================================ */
.float-btns {
  position: fixed;
  bottom: 18px;
  right: 14px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 13px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.float-wa .wa-icon { font-size: 1.2rem; }
.float-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--gold-lt);
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(139,0,0,0.4);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* ============================================================
   AUTOCOMPLETE DROPDOWN
   ============================================================ */
.autocomplete-wrap { position: relative; }
.autocomplete-list {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-height: 180px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  display: none;
}
.autocomplete-list.open { display: block; }
.autocomplete-item {
  padding: 11px 14px;
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  -webkit-tap-highlight-color: transparent;
}
.autocomplete-item:active { background: var(--gold-pale); }
.autocomplete-item:last-child { border: none; }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   TABLET OVERRIDES — 600px+
   ============================================================ */
@media (min-width: 600px) {
  section { padding: 60px 20px; }
  .form-section { padding: 48px 20px; }

  .hero-content { padding: 40px 28px 32px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; }
  .btn-primary, .btn-wa, .btn-secondary { width: auto; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.6rem; }

  .hero-image { height: 320px; }

  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-group.full { grid-column: 1 / -1; }
  .form-submit-row { flex-direction: row; }
  .btn-submit, .btn-wa-quote { width: auto; flex: 1; }

  .car-options { grid-template-columns: repeat(4, 1fr); }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-card { flex-direction: column; }

  .routes-grid { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .section-title { font-size: 2rem; }
}

/* ============================================================
   DESKTOP OVERRIDES — 900px+
   ============================================================ */
@media (min-width: 900px) {
  section { padding: 80px 20px; }
  .form-section { padding: 80px 20px; }

  /* Navbar: show all links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
  }
  .nav-links a {
    padding: 6px 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
  }
  .nav-links a:hover { color: var(--red); background: var(--gold-pale); }
  .hamburger { display: none; }
  .btn-nav-login, .btn-nav-book { display: inline-flex; }
  .btn-nav-login {
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
  }
  .btn-nav-login:hover { border-color: var(--red); color: var(--red); }
  .btn-nav-book {
    padding: 8px 16px;
    background: var(--red);
    color: var(--gold-lt);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
  }
  .btn-nav-book:hover { background: var(--red-light); }
  .nav-inner { padding: 0 24px; height: 64px; }

  /* Hero: two-column layout */
  .hero {
    flex-direction: row;
    min-height: 90vh;
    align-items: center;
  }
  .hero-content {
    padding: 60px 48px 60px 56px;
    flex: 1;
    order: 1;
  }
  .hero-image {
    flex: 1;
    height: 90vh;
    min-height: 600px;
    order: 2;
    display: flex;
  }
  .hero-ring { display: block; }
  .hero-float-card { display: block; }
  .hero h1 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
  .hero-btns { flex-direction: row; }
  .btn-primary, .btn-wa, .btn-secondary { width: auto; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.8rem; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-card { flex-direction: column; }
  .routes-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .coverage-grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
  .footer-links-grid { display: contents; }
  .section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }

  /* Desktop: show full float wa label */
  .float-wa .wa-label { display: inline; }

  /* Floating cards on hero */
  .hero-float-card {
    position: absolute;
    z-index: 10;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--gold);
    min-width: 150px;
    animation: float 4s ease-in-out infinite;
  }
  .hero-float-card:nth-child(3) { animation-delay: -2s; }
  .hero-float-1 { bottom: 30%; left: -50px; }
  .hero-float-2 { top: 20%; right: -10px; border-left-color: var(--red); }
  .hero-float-card .fc-label { font-size: 0.68rem; color: var(--gray); font-weight: 600; text-transform: uppercase; }
  .hero-float-card .fc-value { font-size: 1rem; font-weight: 700; color: var(--red); margin-top: 2px; }
  @keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  .hero-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 460px; height: 460px;
    border-radius: 50%;
    border: 2px dashed rgba(201,168,76,0.3);
    animation: spin-slow 30s linear infinite;
  }
  @keyframes spin-slow {
    0%   { transform: translate(-50%,-50%) rotate(0deg); }
    100% { transform: translate(-50%,-50%) rotate(360deg); }
  }
}
