/* ==========================================================================
   Hurry Taxi — production stylesheet
   ========================================================================== */

:root {
  --ink: #0f1420;
  --ink-soft: #3a4152;
  --muted: #6b7280;
  --line: #e7e5e0;
  --bg: #fffdf8;
  --bg-alt: #f6f3ec;
  --surface: #ffffff;
  --navy: #0b0f1a;
  --navy-2: #131a2b;
  --gold: #f5b400;
  --gold-dark: #c98f00;
  --gold-light: #ffd451;
  --green: #23c55e;
  --green-dark: #16a34a;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(15, 20, 32, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 20, 32, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 20, 32, 0.18);
  --container: 1180px;
  --ff: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--ff);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 700; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
@media (max-width: 720px) {
  .section { padding: 60px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(245, 180, 0, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 0 44px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1200;
  box-shadow: 0 10px 24px rgba(245, 180, 0, 0.35);
}
.btn-gold:hover { box-shadow: 0 14px 30px rgba(245, 180, 0, 0.45); transform: translateY(-2px); }

.btn-green {
  background: linear-gradient(135deg, #33d76b, var(--green-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(35, 197, 94, 0.35);
}
.btn-green:hover { box-shadow: 0 14px 30px rgba(35, 197, 94, 0.45); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); }

.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: #1c2338; }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(15, 20, 32, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 4px 20px rgba(15, 20, 32, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.brand-badge {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(245, 180, 0, 0.4);
  flex: none;
}
.brand-badge svg { width: 22px; height: 22px; color: #1a1200; }
.brand span.accent { color: var(--gold-dark); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.icon-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  transition: background 0.2s ease;
}
.icon-link:hover { background: #ece7d9; }
.icon-link svg { width: 20px; height: 20px; color: var(--navy); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta .btn-label { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-nav {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 28px 20px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 6px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-nav .btn { margin-top: 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1100px 600px at 85% -10%, #2a3558 0%, transparent 60%), linear-gradient(180deg, #1a2240 0%, #202b4a 100%);
  color: #fff;
  padding: 130px 0 64px;
  overflow: hidden;
}
@media (max-width: 720px) {
  .hero { padding: 112px 0 52px; }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(245,180,0,0.35) 0, transparent 60%),
    radial-gradient(2px 2px at 70% 60%, rgba(245,180,0,0.25) 0, transparent 60%),
    radial-gradient(2px 2px at 40% 80%, rgba(255,255,255,0.18) 0, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-badges { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 40px; }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 180, 0, 0.14);
  border: 1px solid rgba(245, 180, 0, 0.35);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}
.hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(35,197,94,0.25);
}

.hero h1 {
  font-size: clamp(30px, 4.6vw, 50px);
  letter-spacing: -0.02em;
}
.hero h1 .hl {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
}
@media (max-width: 980px) { .hero-sub { margin-inline: auto; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.hero-trust-item svg { width: 16px; height: 16px; color: var(--gold-light); flex: none; }

.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Running glow outline — subtle neon */
.hero-glow-card {
  border: none;
  overflow: visible;
  isolation: isolate;
}
.hero-glow-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  padding: 2px;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    transparent 0%,
    rgba(255,215,0,0.55) 12%,
    transparent 30%,
    transparent 70%,
    rgba(255,215,0,0.55) 88%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: glowSpin 4s linear infinite;
  z-index: 3;
  pointer-events: none;
}
.hero-glow-card::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    transparent 0%,
    rgba(255,215,0,0.15) 12%,
    transparent 30%,
    transparent 70%,
    rgba(255,215,0,0.15) 88%,
    transparent 100%
  );
  filter: blur(10px);
  animation: glowSpin 4s linear infinite;
  z-index: -1;
  pointer-events: none;
}
.hero-glow-card img {
  position: relative;
  z-index: 1;
  border-radius: 22px;
}

@property --glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes glowSpin {
  to { --glow-angle: 360deg; }
}
.hero-card img { width: 100%; height: 380px; object-fit: cover; }
.hero-card:not(.hero-glow-card)::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,15,26,0.75) 0%, rgba(11,15,26,0.05) 55%);
}
.hero-float {
  position: absolute;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float.top {
  top: 22px; left: 22px;
  animation: floaty 4.5s ease-in-out infinite;
}
.hero-float.bottom {
  bottom: 22px; right: 22px;
  animation: floaty 4.5s ease-in-out infinite 0.6s;
}
.hero-float .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.hero-float.top .icon { background: rgba(35,197,94,0.14); color: var(--green-dark); }
.hero-float.bottom .icon { background: rgba(245,180,0,0.16); color: var(--gold-dark); }
.hero-float .icon svg { width: 20px; height: 20px; }
.hero-float strong { display: block; font-size: 14px; }
.hero-float small { color: var(--muted); font-size: 12px; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Quick booking bar ---------- */
.quick-book {
  position: relative;
  margin-top: -46px;
  margin-bottom: 30px;
  z-index: 5;
}
.quick-book-card {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 26px;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr auto;
  gap: 16px;
  align-items: end;
}
@media (max-width: 900px) {
  .quick-book-card { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .quick-book-card { grid-template-columns: 1fr; padding: 20px; }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.field select, .field input {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s ease;
}
.field select:focus, .field input:focus { outline: none; border-color: var(--gold); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 30px 0 18px;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-item svg { width: 19px; height: 19px; color: var(--gold-dark); flex: none; }
@media (max-width: 720px) {
  .trust-strip-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .trust-item { white-space: nowrap; }
}

/* ---------- Cars ---------- */
.car-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1080px) { .car-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .car-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .car-grid { grid-template-columns: 1fr; } }

.car-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.car-media {
  position: relative;
  background: linear-gradient(180deg, #f2efe6, #e9e4d5);
  padding: 18px 14px 0;
}
.car-media img { height: 128px; object-fit: contain; margin: 0 auto; }
.car-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.car-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.car-body h3 { font-size: 18px; }
.car-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-alt);
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.car-price { font-size: 13px; color: var(--muted); margin-top: -2px; }
.car-price strong { color: var(--navy); font-size: 17px; }
.car-actions { display: flex; gap: 8px; margin-top: auto; }
.car-actions .btn { flex: 1; padding: 11px 10px; font-size: 13.5px; }

/* ---------- Routes ---------- */
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .route-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .route-grid { grid-template-columns: 1fr; } }

.route-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.route-path {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}
.route-path .from { color: var(--muted); font-weight: 600; }
.route-path svg { width: 18px; height: 18px; color: var(--gold-dark); flex: none; }
.route-price-row { display: flex; align-items: baseline; justify-content: space-between; }
.route-price-row .label { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.route-price-row .price { font-size: 26px; font-weight: 800; color: var(--navy); }
.route-price-row .price span { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ---------- Pricing table ---------- */
.price-table-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.table-scroll { overflow-x: auto; }
table.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
table.price-table thead th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  padding: 16px 20px;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
table.price-table thead th:not(:first-child) { text-align: center; }
table.price-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
table.price-table tbody td:not(:first-child) { text-align: center; font-weight: 700; color: var(--navy); }
table.price-table tbody tr:last-child td { border-bottom: none; }
table.price-table tbody tr:nth-child(even) { background: var(--bg-alt); }
table.price-table tbody td:first-child { font-weight: 600; }
.price-note {
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--muted);
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}

/* ---------- Why choose us ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1080px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245,180,0,0.18), rgba(245,180,0,0.06));
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--gold-dark); }
.feature-card h3 { font-size: 15.5px; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.stars svg { width: 16px; height: 16px; }
.testi-quote { font-size: 15px; color: var(--ink-soft); }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #1a1200; font-size: 15px;
  flex: none;
}
.testi-author strong { display: block; font-size: 14.5px; }
.testi-author small { color: var(--muted); font-size: 12.5px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media img { width: 100%; height: 380px; object-fit: cover; }
.about-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,15,26,0.55), transparent 45%);
}
.about-copy p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.about-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 560px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
.about-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.about-stat .num { font-size: 22px; font-weight: 800; color: var(--navy); }
.about-stat .num span { color: var(--gold-dark); }
.about-stat .lbl { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, #1c2748 100%);
  border-radius: 26px;
  padding: 54px 44px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,180,0,0.35), transparent 70%);
  top: -140px; right: -100px;
}
.cta-banner h2 { font-size: clamp(24px, 4vw, 34px); position: relative; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 16px; position: relative; }
.cta-actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.contact-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-item .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(245,180,0,0.14);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.contact-item .icon svg { width: 22px; height: 22px; color: var(--gold-dark); }
.contact-item strong { display: block; font-size: 15.5px; }
.contact-item span { color: var(--muted); font-size: 14px; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-form h3 { font-size: 19px; margin-bottom: 6px; }
.contact-form > p { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-row .field { grid-column: span 1; }
.form-row.full { grid-template-columns: 1fr; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14.5px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--gold); color: #1a1200; }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; }
.footer-col li svg { width: 15px; height: 15px; color: var(--gold-light); flex: none; }

.footer-bottom {
  padding: 22px 0 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--gold-light); }

/* ---------- Floating widgets ---------- */
.fab-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #33d76b, var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(35,197,94,0.45);
  animation: pulse 2.4s ease-in-out infinite;
}
.fab-whatsapp svg { width: 28px; height: 28px; color: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(35,197,94,0.45); }
  50% { box-shadow: 0 12px 28px rgba(35,197,94,0.7), 0 0 0 10px rgba(35,197,94,0.08); }
}

.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15,20,32,0.08);
}
@media (max-width: 720px) { .mobile-cta-bar { display: flex; } .fab-whatsapp { bottom: 84px; right: 16px; width: 52px; height: 52px; } .fab-whatsapp svg { width: 24px; height: 24px; } }
.mobile-cta-bar .btn { flex: 1; }
@media (max-width: 720px) { body { padding-bottom: 76px; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.divider-fade { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
::selection { background: var(--gold); color: #1a1200; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: #1a1200; padding: 10px 16px; z-index: 200;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  .hero-glow-card::before,
  .hero-glow-card::after,
  .fab-whatsapp {
    animation: none !important;
  }
  * {
    scroll-behavior: auto !important;
  }
}
