/* ═══════════════════════════════════════════════════
   ENROUTE SHUTTLE & TOURS — PREMIUM MONOCHROME EDITION
   Black / white / grayscale. Built for a precision
   transport operator, not a generic SaaS template.
   ═══════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --paper: #ffffff;
  --bone: #f4f3f0;
  --graphite: #54534c;
  --steel: #d9d7d0;
  --mist: rgba(10, 10, 10, 0.045);

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgba(10, 10, 10, 0.05);
  --shadow-hover: 0 20px 48px rgba(10, 10, 10, 0.14);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --focus: var(--ink);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--ink); color: var(--paper); }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

/* All photography ships in grayscale by default. Fleet & service
   shots bloom into full color on hover — see their sections below. */
/*img {
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.5s ease, transform 0.5s ease;
}*/

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── SHARED LAYOUT ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 16px;
}

.section-label::before {
  content: "— ";
  color: var(--ink);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1rem;
  color: var(--graphite);
  max-width: 560px;
  margin: 0 auto;
}

/* ── BUTTONS ──
   Shared language across the site: solid fill, inverts to its
   own outline on hover. WhatsApp is the one exception — it stays
   solid and lifts, since it's the primary conversion channel. */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius);
  margin-top: 24px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-whatsapp:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.top-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 9px 0;
  --focus: var(--paper);
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-left span,
.top-bar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.whatsapp-top {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--paper);
  font-weight: 600;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
  transition: border-color var(--transition), background var(--transition);
}

.whatsapp-top:hover { border-color: var(--paper); background: rgba(255, 255, 255, 0.08); }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--steel);
  z-index: 1000;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.2;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links li a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-links li a:hover {
  background: var(--mist);
}

.nav-links a.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 22px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-sm);
  margin-left: 6px;
}

.nav-links a.nav-cta:hover {
  background: var(--paper);
  color: var(--ink);
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 76px;
    right: -100%;
    width: 260px;
    height: calc(100vh - 76px);
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 4px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-links.show { right: 0; }

  .nav-links li { width: 100%; }
  .nav-links li a { display: block; width: 100%; }
  .nav-links a.nav-cta { margin-left: 0; text-align: center; }
}

/* ══════════════════════════════════════
   HERO
   Background photo is desaturated via filter on the section
   itself — safe because every child color in this design is
   already neutral, so nothing else is affected.
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 620px;
  background: url('back2.jpg') center/cover no-repeat;
  filter: grayscale(1) contrast(1.15) brightness(0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
  --focus: var(--paper);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  /* Undo the parent's grayscale filter for the text layer so
     pure white/black values render crisp, not filter-softened. */
  filter: grayscale(0) contrast(1) brightness(1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeRiseIn 0.6s ease 0.05s both;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1.08;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeRiseIn 0.6s ease 0.18s both;
}

.hero-content h1 strong {
  font-weight: 800;
  position: relative;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeRiseIn 0.6s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeRiseIn 0.6s ease 0.42s both;
}

.hero .btn-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.hero .btn-primary:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--paper);
}

@keyframes fadeRiseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--ink);
  padding: 32px 0;
  --focus: var(--paper);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 40px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item strong {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 700;
  color: var(--paper);
}

.stat-item span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stat-item { padding: 12px 24px; }
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services {
  padding: 88px 0;
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card:hover img {
  filter: grayscale(0) contrast(1.02);
  transform: scale(1.04);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding: 22px 24px 6px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--graphite);
  padding: 0 24px 28px;
}

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
.why-us {
  padding: 88px 0;
  background: var(--bone);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-text .section-label { margin-bottom: 14px; }

.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}

.why-text > p {
  color: var(--graphite);
  margin-bottom: 32px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list li div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.why-list li div p {
  font-size: 14px;
  color: var(--graphite);
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--steel);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-image { min-height: 280px; }
  .why-image img { min-height: 280px; }
}

/* ══════════════════════════════════════
   FLEET
   Signature interaction: every vehicle ships grayscale, like
   a logged unit on a manifest — full color surfaces on hover.
══════════════════════════════════════ */
.fleet {
  padding: 88px 0;
  background: var(--paper);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  counter-reset: fleet-unit;
}

.fleet-card {
  background: var(--paper);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  counter-increment: fleet-unit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fleet-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.fleet-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: transparent;
  transform: translateY(-4px);
}

.fleet-card::before {
  content: "UNIT " counter(fleet-unit, decimal-leading-zero);
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  z-index: 1;
}

.fleet-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  z-index: 1;
}

.fleet-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

.fleet-card:hover img {
  filter: grayscale(0) contrast(1.02);
  transform: scale(1.04);
}

.fleet-card--extra {
  border: 1.5px dashed var(--steel);
}

.fleet-info {
  padding: 16px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fleet-info h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.book-btn {
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.book-btn:hover {
  background: var(--paper);
  color: var(--ink);
  transform: scale(1.04);
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials {
  padding: 88px 0;
  background: var(--ink);
  --focus: var(--paper);
}

.testimonials .section-label,
.testimonials .section-label::before {
  color: rgba(255, 255, 255, 0.6);
}

.testimonials .section-header h2 {
  color: var(--paper);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(16px);
}

.testi-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.32);
}

.stars {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.stars span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

.testi-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.testi-card strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact {
  padding: 88px 0;
  background: var(--bone);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-label { margin-bottom: 14px; }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}

.contact-info > p {
  color: var(--graphite);
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}

.contact-item svg { color: var(--ink); flex-shrink: 0; }

.contact-form {
  background: var(--paper);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--steel);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--steel);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--paper);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.08);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 16px;
  margin-top: 4px;
}

.form-status {
  display: none;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink);
  padding-left: 14px;
  border-left: 2px solid var(--ink);
}

.form-status.is-visible { display: block; }

.form-status--error {
  border-left-style: dashed;
  color: var(--graphite);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
  --focus: var(--paper);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.footer-brand p {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--paper);
  margin-bottom: 8px;
}

.footer-brand small {
  font-size: 13px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--paper);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li,
.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--paper); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: var(--paper);
  font-weight: 600;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-brand { grid-column: 1; }
}

/* ══════════════════════════════════════
   WHATSAPP FLOAT BUTTON
══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 6px 24px rgba(10, 10, 10, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  animation: pulseRing 2.4s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.38);
}

.wh-label {
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 500px) {
  .whatsapp-float { padding: 14px 16px; }
  .wh-label { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — GENERAL
══════════════════════════════════════ */
@media (max-width: 768px) {
  .top-bar-inner { justify-content: center; }
  .top-bar-left { flex-direction: column; gap: 6px; align-items: center; }

  .section-header h2 { font-size: 1.6rem; }

  .hero { min-height: 520px; }

  .stats-inner { gap: 0; }

  .fleet-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
  .fleet-card img { height: 140px; }
  .fleet-info { flex-direction: column; align-items: flex-start; }
  .book-btn { width: 100%; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}
