/* ============================================================
   AVANTGARDE TRANSFERS — MILANCABS.COM
   Design: Premium dark luxury + orange brand
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --black:     #0a0a0a;
  --dark:      #111111;
  --dark2:     #1a1a1a;
  --dark3:     #222222;
  --white:     #ffffff;
  --off-white: #f4f4f0;
  --orange:    #f5a623;
  --orange-dk: #e08800;
  --red:       #e63c1e;
  --gray:      #888888;
  --gray-lt:   #cccccc;
  --border:    rgba(245,166,35,0.2);

  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius:    4px;
  --radius-lg: 12px;
  --shadow:    0 8px 40px rgba(0,0,0,0.4);
  --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; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }
.accent { color: var(--orange); }
.accent-red { color: var(--red); }

/* ── Utilities ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-orange {
  background: var(--orange); color: var(--dark);
}
.btn-orange:hover { background: var(--orange-dk); transform: translateY(-2px); }

.btn-red {
  background: var(--red); color: var(--white);
}
.btn-red:hover { background: #c5300f; transform: translateY(-2px); }

.btn-dark {
  background: var(--dark); color: var(--white);
  border: 1px solid var(--border);
}
.btn-dark:hover { border-color: var(--orange); color: var(--orange); }

.btn-outline {
  background: transparent; color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--dark); }

/* ── Header / Nav ───────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--orange); }
.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex; align-items: center; gap: 16px;
}

/* Language switcher */
.lang-switcher {
  position: relative;
}
.lang-current {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.lang-current:hover { border-color: var(--orange); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 130px;
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.lang-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--gray-lt);
  transition: background var(--transition);
}
.lang-dropdown a:hover { background: rgba(245,166,35,0.1); color: var(--orange); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-lt);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile .lang-mobile {
  display: flex; gap: 12px; padding-top: 16px;
}
.nav-mobile .lang-mobile a {
  border: none; padding: 0;
  font-size: 0.85rem; color: var(--gray);
}
.nav-mobile .lang-mobile a.active { color: var(--orange); }

/* ── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.8) 40%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 80px 24px;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease both;
}
.hero-content .hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-ctas .btn-red { font-size: 0.95rem; padding: 16px 32px; }
.hero-ctas .btn-orange { font-size: 0.95rem; padding: 16px 32px; }

.hero-box {
  background: rgba(10,10,10,0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  animation: fadeUp 0.8s 0.45s ease both;
  backdrop-filter: blur(8px);
}
.hero-box h3 {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.hero-box-divider {
  width: 32px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 16px;
}
.hero-box p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── Services ───────────────────────────────────────────── */
#services { background: var(--dark); }

.services-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.svc-icon-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 32px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.svc-icon-card:hover { border-color: var(--orange); background: rgba(245,166,35,0.05); }
.svc-icon-card i { font-size: 2.2rem; color: var(--orange); }
.svc-icon-card span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange);
  line-height: 1.3;
}

.services-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 48px;
}

.service-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-img-wrap {
  width: 260px; height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  flex-shrink: 0;
}
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.service-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-text .tag {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.5;
}
.service-text p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; }

/* ── CTA Band ───────────────────────────────────────────── */
#cta-band {
  background: var(--orange);
  padding: 64px 0;
  text-align: center;
}
#cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
#cta-band h2 a { color: var(--dark); text-decoration: underline; }
.cta-band-body {
  max-width: 800px; margin: 24px auto 0;
  text-align: left;
}
.cta-band-body h4 { font-size: 1rem; color: var(--dark); margin: 16px 0 6px; }
.cta-band-body p { font-size: 0.9rem; color: rgba(0,0,0,0.75); line-height: 1.6; }
#cta-band .btn-dark { margin-top: 28px; }

/* ── About ──────────────────────────────────────────────── */
#about { background: var(--dark); }
.about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 32px;
  font-weight: 800;
}
.about-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 800px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.about-points { display: flex; flex-direction: column; gap: 20px; }
.about-point { }
.about-point strong {
  color: var(--orange);
  font-weight: 700;
}
.about-point span { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ── Fleet ──────────────────────────────────────────────── */
#fleet { background: var(--white); }
.fleet-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.fleet-hero-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.fleet-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.fleet-hero-img:hover img { transform: scale(1.04); }
.fleet-hero-caption {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 40%, transparent);
  display: flex; align-items: flex-end;
  padding: 24px;
}
.fleet-hero-caption p {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1.3;
}

.fleet-section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 48px;
}
.fleet-divider {
  width: 48px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 16px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
  margin-bottom: 48px;
}
.fleet-card { text-align: center; }
.fleet-card-img {
  width: 100%; max-width: 300px;
  margin: 0 auto 16px;
}
.fleet-card-img img { width: 100%; height: auto; }
.fleet-card-name {
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}
.fleet-check { color: var(--red); font-size: 1.2rem; }

/* ── Booking Form ───────────────────────────────────────── */
#booking { background: var(--dark); }
.booking-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  max-width: 700px;
  line-height: 1.3;
  margin-bottom: 48px;
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
}
.booking-form .full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group select option { background: var(--dark2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.phone-group { display: flex; gap: 8px; }
.phone-group select { flex: 0 0 120px; }
.phone-group input { flex: 1; }

/* Honeypot */
.hp-field { display: none !important; }

.form-privacy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: flex-start; gap: 10px;
  padding-top: 4px;
}
.form-privacy input[type=checkbox] { margin-top: 3px; flex-shrink: 0; }
.form-privacy a { color: var(--orange); text-decoration: underline; }

.form-submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-message {
  font-size: 0.9rem; font-weight: 600;
  padding: 10px 16px; border-radius: var(--radius);
  display: none;
}
.form-message.success { background: rgba(34,197,94,0.15); color: #4ade80; display: block; }
.form-message.error   { background: rgba(239,68,68,0.15); color: #f87171; display: block; }

/* CF Turnstile */
.cf-turnstile { margin-top: 4px; }

/* ── Stats ──────────────────────────────────────────────── */
#stats { background: var(--white); padding: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.stat-card {
  padding: 64px 48px;
}
.stat-card:nth-child(1) { background: var(--red); }
.stat-card:nth-child(2) { background: var(--orange); }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.stat-desc { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* Payments */
.payments-bar {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.payments-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.payments-logos img { height: 28px; width: auto; filter: grayscale(1); opacity: 0.5; transition: var(--transition); }
.payments-logos img:hover { filter: none; opacity: 1; }

/* ── Blog ───────────────────────────────────────────────── */
#blog { background: var(--off-white); }
.blog-section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 48px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-card-cat {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange); margin-bottom: 8px;
}
.blog-card-title {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--dark);
  line-height: 1.4; margin-bottom: 12px;
}
.blog-card-meta {
  font-size: 0.8rem; color: var(--gray);
  display: flex; align-items: center; gap: 8px;
}
.blog-card-meta span { color: var(--orange); }

/* ── Footer ─────────────────────────────────────────────── */
#footer-cta {
  background: var(--white);
  padding: 64px 0;
  border-top: 4px solid var(--orange);
}
.footer-cta-divider {
  width: 32px; height: 4px;
  background: var(--orange);
  margin-bottom: 24px;
}
.footer-cta-text {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  max-width: 600px;
  line-height: 1.3;
  margin-bottom: 32px;
}
.footer-cta-info {
  display: flex; gap: 48px; flex-wrap: wrap;
}
.footer-cta-company { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.footer-cta-phone {
  display: flex; align-items: center; gap: 12px;
}
.footer-cta-phone i { color: var(--orange); font-size: 1.2rem; }
.footer-cta-phone a {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  transition: color var(--transition);
}
.footer-cta-phone a:hover { color: var(--orange); }

footer {
  background: var(--dark);
  color: var(--gray);
  padding: 24px 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--gray); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--gray-lt);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245,166,35,0.1);
}
.footer-links-list { display: flex; gap: 20px; flex-wrap: wrap; }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 24px; left: 24px;
  z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-float i { font-size: 1.3rem; }

/* Back to top */
.back-top {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Blog page ──────────────────────────────────────────── */
.blog-page-hero {
  background: var(--dark);
  padding: 120px 0 60px;
  text-align: center;
}
.blog-page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.blog-full-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  padding: 60px 0;
}
.post-hero {
  background: var(--dark);
  padding: 120px 0 40px;
}
.post-hero .container { max-width: 820px; }
.post-cat { color: var(--orange); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.post-title { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.post-meta { color: var(--gray); font-size: 0.85rem; }
.post-content { max-width: 820px; margin: 0 auto; padding: 48px 24px; }
.post-content h2 { font-size: 1.5rem; color: var(--dark); margin: 32px 0 12px; }
.post-content p { color: #444; line-height: 1.8; margin-bottom: 16px; }
.post-content ul { padding-left: 20px; margin-bottom: 16px; }
.post-content li { color: #444; line-height: 1.8; margin-bottom: 6px; }
.post-img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 40px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-icons { grid-template-columns: repeat(2,1fr); }
  .fleet-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .blog-full-grid { grid-template-columns: repeat(2,1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-box { display: none; }
}
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-hamburger { display: flex; }
  .service-row { grid-template-columns: 1fr; }
  .service-img-wrap { margin: 0 auto; }
  .service-row.reverse { direction: ltr; }
  .fleet-hero { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .blog-grid, .blog-full-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-cta-info { flex-direction: column; gap: 20px; }
  .stat-card { padding: 40px 24px; }
  .hero-inner { padding: 60px 24px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .services-icons { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .wa-float span { display: none; }
  .wa-float { border-radius: 50%; width: 52px; height: 52px; padding: 0; justify-content: center; }
}

/* ── Privacy / Cookie pages ─────────────────────────────── */
.legal-page {
  padding: 120px 0 80px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-page h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-page .updated { color: var(--gray); font-size: 0.85rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--dark); }
.legal-page p, .legal-page li { color: #555; line-height: 1.8; font-size: 0.95rem; }
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
