/* ==========================================================================
   Patrick Travel — Ludhiana to Delhi One Way Taxi
   Design tokens: Highway/route theme — navy asphalt, taxi-amber accent
   ========================================================================== */

:root {
  --navy-950: #0a1628;
  --navy-900: #0f2038;
  --navy-800: #16304f;
  --navy-700: #1f4269;
  --amber-500: #f5a623;
  --amber-600: #dc8f12;
  --amber-100: #fff3dd;
  --paper: #f6f5f1;
  --paper-dim: #ece9e1;
  --ink: #1a1f28;
  --ink-soft: #4d5563;
  --line: #dcd8cd;
  --white: #ffffff;
  --success: #1f8a53;

  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 10px 30px -12px rgba(10, 22, 40, 0.25);
  --shadow-lift: 0 20px 45px -18px rgba(10, 22, 40, 0.35);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-950);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-weight: 700; }
h2 { font-weight: 700; }
h3, h4 { font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Route-strip motif (signature element) ----------
   A dashed amber line, like a highway lane marking, used as a
   recurring divider / underline motif throughout the site. */
.route-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 4px;
  margin: 10px 0 22px;
}
.route-strip span {
  display: block;
  width: 22px;
  height: 4px;
  background: var(--amber-500);
  border-radius: 2px;
}
.route-strip.center { justify-content: center; }
.route-strip.left { justify-content: flex-start; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-600);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--amber-500);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--amber-500); outline-offset: 2px; }
.btn-primary {
  background: var(--amber-500);
  color: var(--navy-950);
}
.btn-primary:hover { background: var(--amber-600); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--amber-500); color: var(--amber-500); }
.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ---------- Top strip ---------- */
.top-strip {
  background: var(--navy-950);
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
}
.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.top-strip .ts-left { display: flex; gap: 22px; align-items: center; }
.top-strip .ts-left a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); }
.top-strip .ts-left a:hover { color: var(--amber-500); }
.top-strip .ts-right { display: flex; gap: 14px; align-items: center; }
.top-strip .ts-right a {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.top-strip .ts-right a:hover { background: var(--amber-500); color: var(--navy-950); border-color: var(--amber-500); }

/* ---------- Header / nav ---------- */
header.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(10,22,40,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-950);
}
.logo .logo-mark {
  width: 40px; height: 40px;
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-500);
  font-size: 19px;
  flex-shrink: 0;
}
.logo small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}
nav.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-900);
  position: relative;
  padding: 6px 0;
}
nav.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--amber-500);
  transition: width 0.2s ease;
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after { width: 100%; }
nav.main-nav a.active { color: var(--amber-600); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--navy-950);
}
.nav-phone .ico {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--amber-100); color: var(--amber-600);
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; }

@media (max-width: 960px) {
  nav.main-nav { display: none; }
  .nav-phone span:last-child { display: none; }
  .nav-toggle {
    display: flex; width: 42px; height: 42px;
    align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: var(--radius-sm);
    background: none; cursor: pointer;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-800) 100%);
  overflow: hidden;
  padding: 64px 0 120px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 54px, rgba(245,166,35,0.10) 54px, rgba(245,166,35,0.10) 88px);
  opacity: 0.5;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--amber-500); }
.hero-copy .eyebrow::before { background: var(--amber-500); }
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(34px, 4.2vw, 54px);
  margin-bottom: 20px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--amber-500);
}
.hero-copy p.lead {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-stats {
  display: flex;
  gap: 30px;
}
.hero-stats div { color: var(--white); }
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--amber-500);
}
.hero-stats span { font-size: 13px; color: rgba(255,255,255,0.65); }

.hero-visual {
  position: relative;
}
.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge .ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--amber-100); color: var(--amber-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--navy-950); }
.hero-badge span { font-size: 12.5px; color: var(--ink-soft); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 30px; }
  .hero-badge { left: 12px; bottom: -18px; }
}

/* ---------- Quick booking bar (overlaps hero) ---------- */
.booking-bar-wrap { position: relative; margin-top: -68px; z-index: 5; }
.booking-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 16px;
  align-items: end;
}
.booking-bar .field { display: flex; flex-direction: column; gap: 6px; }
.booking-bar label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.booking-bar input {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--paper);
}
.booking-bar input:focus { outline: none; border-color: var(--amber-500); background: var(--white); }

@media (max-width: 960px) {
  .booking-bar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .booking-bar { grid-template-columns: 1fr; padding: 20px; }
  .booking-bar-wrap { margin-top: 20px; }
}

/* ---------- Sections ---------- */
section { padding: 92px 0; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .route-strip { justify-content: center; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); }

.bg-navy { background: var(--navy-950); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.7); }
.bg-dim { background: var(--paper-dim); }

/* ---------- Feature icon row ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.feature-card .ico {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--navy-950); color: var(--amber-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.feature-card h4 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; margin-bottom: 0; }

@media (max-width: 900px) { .feature-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-row { grid-template-columns: 1fr; } }

/* ---------- Route cards (popular routes) ---------- */
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.route-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.route-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--amber-500) 0 14px, transparent 14px 22px);
}
.route-card .route-path {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12.5px; font-weight: 600;
  color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.route-card h4 { font-size: 19px; margin-bottom: 10px; }
.route-card p { font-size: 14px; }
.route-card .route-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line);
}
.route-card .route-fare { font-family: var(--font-display); font-weight: 700; color: var(--navy-950); }
.route-card .route-fare span { display: block; font-size: 11px; font-weight: 500; color: var(--ink-soft); text-transform: none; }
.route-card a.route-link { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--amber-600); }
.route-card a.route-link:hover { text-decoration: underline; }

@media (max-width: 900px) { .route-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .route-grid { grid-template-columns: 1fr; } }

/* ---------- Fleet cards ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.fleet-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.fleet-card .fleet-img { height: 170px; overflow: hidden; }
.fleet-card .fleet-img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-card .fleet-body { padding: 18px 20px 22px; }
.fleet-card .fleet-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--amber-600); background: var(--amber-100);
  padding: 3px 9px; border-radius: 20px; margin-bottom: 10px;
}
.fleet-card h4 { font-size: 17px; margin-bottom: 6px; }
.fleet-card .fleet-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--ink-soft); }
.fleet-card .fleet-meta span { display: flex; align-items: center; gap: 5px; }

@media (max-width: 980px) { .fleet-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fleet-grid { grid-template-columns: 1fr; } }

/* ---------- Why choose / checklist split ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.split-img { position: relative; }
.split-img img { border-radius: var(--radius-lg); height: 430px; width: 100%; object-fit: cover; box-shadow: var(--shadow-card); }
.split-exp {
  position: absolute; bottom: -26px; right: -18px;
  background: var(--navy-950); color: var(--white);
  border-radius: var(--radius-md); padding: 22px 26px; text-align: center;
  box-shadow: var(--shadow-lift);
}
.split-exp strong { display: block; font-family: var(--font-display); font-size: 30px; color: var(--amber-500); }
.split-exp span { font-size: 12px; color: rgba(255,255,255,0.7); }

.checklist { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .tick {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--amber-100); color: var(--amber-600);
  display: flex; align-items: center; justify-content: center; font-size: 13px; margin-top: 2px;
}
.checklist strong { display: block; color: var(--navy-950); font-family: var(--font-display); font-size: 15.5px; }
.checklist p { margin: 2px 0 0; font-size: 14px; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-exp { position: static; margin-top: -30px; margin-left: 20px; display: inline-flex; gap: 10px; align-items: baseline; }
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--line);
  padding: 26px; position: relative;
}
.testi-stars { color: var(--amber-500); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { font-size: 14.5px; font-style: italic; color: var(--ink); margin-bottom: 18px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-950); color: var(--amber-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
}
.testi-who strong { display: block; font-size: 14px; color: var(--navy-950); }
.testi-who span { font-size: 12px; color: var(--ink-soft); }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(245,166,35,0.08) 40px, rgba(245,166,35,0.08) 64px);
}
.cta-banner h3 { color: var(--white); font-size: 26px; margin-bottom: 6px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.72); margin: 0; position: relative; }
.cta-banner .cta-actions { display: flex; gap: 14px; position: relative; flex-shrink: 0; }

@media (max-width: 760px) {
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 26px; }
}

/* ---------- Contact page / form ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; }
.contact-info-card {
  background: var(--navy-950); color: var(--white);
  border-radius: var(--radius-lg); padding: 38px 32px;
}
.contact-info-card h3 { color: var(--white); }
.contact-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-item:last-child { border-bottom: none; }
.contact-item .ico {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(245,166,35,0.15); color: var(--amber-500);
  display: flex; align-items: center; justify-content: center;
}
.contact-item strong { display: block; font-size: 14.5px; color: var(--white); }
.contact-item span, .contact-item a { font-size: 13.5px; color: rgba(255,255,255,0.7); }

.form-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--navy-950); }
.form-group input, .form-group textarea, .form-group select {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 14px; font-family: var(--font-body); font-size: 14.5px; background: var(--paper);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--amber-500); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Alerts ---------- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 20px; }
.alert-success { background: #e6f5ec; color: var(--success); border: 1px solid #b9e3c9; }
.alert-error { background: #fcecec; color: #b3261e; border: 1px solid #f3bcbc; }

/* ---------- Page header (interior pages) ---------- */
.page-head {
  background: var(--navy-950);
  padding: 56px 0 46px;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 54px, rgba(245,166,35,0.10) 54px, rgba(245,166,35,0.10) 88px);
}
.page-head .container { position: relative; }
.page-head .eyebrow { color: var(--amber-500); }
.page-head .eyebrow::before { background: var(--amber-500); }
.page-head h1 { color: var(--white); font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 10px; }
.breadcrumb { font-size: 13.5px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--amber-500); }

/* ---------- Fare table ---------- */
.fare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.fare-table th, .fare-table td { padding: 14px 18px; text-align: left; font-size: 14.5px; }
.fare-table th { background: var(--navy-950); color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; }
.fare-table tr:nth-child(even) td { background: var(--paper-dim); }
.fare-table td { border-bottom: 1px solid var(--line); color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item h4 { font-size: 16px; display: flex; gap: 10px; align-items: flex-start; margin-bottom: 8px; }
.faq-item h4::before { content: 'Q.'; color: var(--amber-600); flex-shrink: 0; }
.faq-item p { font-size: 14.5px; margin: 0 0 0 26px; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.68); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 { color: var(--white); font-size: 15px; margin-bottom: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-mark {
  width: 38px; height: 38px; background: var(--amber-500); color: var(--navy-950);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.footer-logo span { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--white); }
.footer-grid p { font-size: 13.5px; color: rgba(255,255,255,0.6); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.65); }
.footer-links a:hover { color: var(--amber-500); }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 10px; font-size: 13.5px; align-items: flex-start; }
.footer-contact .ico { color: var(--amber-500); margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.footer-social a:hover { background: var(--amber-500); border-color: var(--amber-500); color: var(--navy-950); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 12.5px; color: rgba(255,255,255,0.5);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 10px 24px rgba(37,211,102,0.45);
  transition: transform 0.18s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; background: var(--navy-950);
  z-index: 300; padding: 26px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav .mn-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav .mn-close { background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 26px; }
.mobile-nav a { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); }
.mobile-nav a:hover { color: var(--amber-500); }
.mobile-nav .mn-phone { margin-top: 40px; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
@media (max-width: 700px) { .hide-mobile { display: none !important; } }
