/* ============================================================
   HOLT CAR — Design System
   Location de voitures à Oujda, Maroc
   ============================================================ */

:root {
  /* Couleurs */
  --c-primary: #0B1F3A;        /* bleu marine profond */
  --c-primary-700: #102A4D;
  --c-primary-50: #EEF2F8;
  --c-accent: #FF8A00;          /* orange ambre */
  --c-accent-600: #E67700;
  --c-accent-50: #FFF4E5;
  --c-success: #16A34A;         /* WhatsApp */
  --c-success-600: #15803D;
  --c-bg: #FFFFFF;
  --c-bg-soft: #F8FAFC;
  --c-bg-muted: #F1F5F9;
  --c-border: #E2E8F0;
  --c-text: #0F172A;
  --c-text-soft: #475569;
  --c-text-muted: #64748B;
  --c-star: #FACC15;

  /* Typographie */
  --ff-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ff-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  /* Espacements */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;

  /* Radius */
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-2xl: 28px;

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .12);

  /* Container */
  --container: 1200px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
}

/* Reset léger */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* Typographie */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.2; margin: 0 0 var(--s-4); letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 4vw + .5rem, 3.5rem); }
h2 { font-size: clamp(1.6rem, 2.5vw + .5rem, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1.2vw + .8rem, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 var(--s-4); color: var(--c-text-soft); }
.lead { font-size: 1.125rem; color: var(--c-text-soft); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 var(--s-5); }

/* Sections */
section { padding: var(--s-16) 0; }
@media (min-width: 768px) { section { padding: var(--s-20) 0; } }
.section-soft { background: var(--c-bg-soft); }
.section-dark { background: var(--c-primary); color: #fff; }
.section-dark p, .section-dark .lead { color: #cbd5e1; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto var(--s-10); }
.section-header .eyebrow { color: var(--c-accent); font-weight: 600; font-size: .875rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--s-2); }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 14px 22px;
  font-weight: 600; font-size: .95rem;
  border-radius: var(--r-md);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.btn-primary { background: var(--c-accent); color: #fff; box-shadow: 0 6px 16px rgba(255, 138, 0, .35); }
.btn-primary:hover { background: var(--c-accent-600); transform: translateY(-1px); }
.btn-dark { background: var(--c-primary); color: #fff; }
.btn-dark:hover { background: var(--c-primary-700); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--c-primary); color: var(--c-primary); }
.btn-outline:hover { background: var(--c-primary); color: #fff; }
.btn-whatsapp { background: var(--c-success); color: #fff; }
.btn-whatsapp:hover { background: var(--c-success-600); transform: translateY(-1px); }
.btn-ghost { color: var(--c-primary); }
.btn-ghost:hover { background: var(--c-primary-50); }
.btn-lg { padding: 18px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-3) 0;
  gap: var(--s-6);
}
.logo {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--ff-display); font-weight: 800; font-size: 1.35rem;
  color: var(--c-primary); letter-spacing: -.02em;
}
.logo-mark {
  height: 40px; width: auto;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-primary), #1E3A8A);
  color: #fff; font-weight: 800;
  box-shadow: var(--shadow-sm);
  padding: 0 8px; min-width: 40px;
}
.logo-mark span { font-size: 1rem; }
.logo-img {
  height: 52px; width: auto; display: block;
  border-radius: 8px;
  object-fit: contain;
}
.header .logo-img { background: #000; padding: 4px 8px; }
.footer .logo-img { background: transparent; }
.mobile-nav .logo-img { height: 44px; }
@media (max-width: 768px) {
  .header .logo-img { height: 44px; }
}
.logo strong { color: var(--c-accent); }

.nav { display: none; gap: var(--s-6); align-items: center; }
.nav a { color: var(--c-text); font-weight: 500; font-size: .95rem; padding: 8px 0; border-bottom: 2px solid transparent; transition: color var(--t-fast), border-color var(--t-fast); }
.nav a:hover, .nav a.is-active { color: var(--c-primary); border-bottom-color: var(--c-accent); }
.nav .dropdown { position: relative; }
.nav .dropdown > a::after { content: "▾"; margin-left: 4px; font-size: .7em; opacity: .6; }
.nav .dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 240px;
  border: 1px solid var(--c-border); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: var(--s-2); display: none;
}
.nav .dropdown:hover .dropdown-menu { display: block; }
.nav .dropdown-menu a { display: block; padding: 10px 12px; border-radius: var(--r-sm); border-bottom: 0; }
.nav .dropdown-menu a:hover { background: var(--c-bg-soft); }

.header-cta { display: flex; gap: var(--s-2); align-items: center; }
.header-tel {
  display: none;
  align-items: center; gap: var(--s-2);
  color: var(--c-primary); font-weight: 700;
  padding: 8px 12px; border-radius: var(--r-md);
  background: var(--c-primary-50);
}
.menu-toggle {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); color: var(--c-primary);
}
.menu-toggle:hover { background: var(--c-primary-50); }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .header-tel { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; top: 65px;
  background: #fff; padding: var(--s-6) var(--s-5);
  transform: translateX(100%); transition: transform var(--t-base);
  overflow-y: auto; z-index: 99;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--s-1); }
.mobile-nav a { display: block; padding: 14px 12px; border-bottom: 1px solid var(--c-border); font-weight: 500; }
.mobile-nav .btn { margin-top: var(--s-4); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--c-primary) 0%, #102A4D 100%);
  color: #fff; overflow: hidden;
  padding: var(--s-16) 0 var(--s-20);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 138, 0, .15), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(30, 58, 138, .4), transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; gap: var(--s-10); align-items: center; }
@media (min-width: 992px) { .hero-inner { grid-template-columns: 1.1fr .9fr; gap: var(--s-16); } }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--c-accent); }
.hero p { color: #cbd5e1; font-size: 1.125rem; max-width: 540px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: rgba(255, 138, 0, .15); color: var(--c-accent);
  padding: 8px 14px; border-radius: 999px;
  font-size: .85rem; font-weight: 600; margin-bottom: var(--s-5);
  border: 1px solid rgba(255, 138, 0, .3);
}
.hero-badge::before { content: "★"; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.hero-trust {
  margin-top: var(--s-8);
  display: flex; flex-wrap: wrap; gap: var(--s-6);
  font-size: .9rem; color: #cbd5e1;
}
.hero-trust div { display: flex; align-items: center; gap: var(--s-2); }
.hero-trust svg { color: var(--c-accent); flex-shrink: 0; }

/* Booking form (hero) */
.booking-form {
  background: #fff; color: var(--c-text);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  border: 1px solid var(--c-border);
}
.booking-form h3 { margin-bottom: var(--s-4); font-size: 1.25rem; }
.booking-form .field { margin-bottom: var(--s-4); }
.booking-form label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--c-text-muted); text-transform: uppercase;
  letter-spacing: .04em; margin-bottom: 6px;
}
.booking-form input, .booking-form select {
  width: 100%; padding: 12px 14px; font-size: .95rem;
  border: 1px solid var(--c-border); border-radius: var(--r-md);
  background: var(--c-bg-soft); color: var(--c-text);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.booking-form input:focus, .booking-form select:focus {
  outline: none; border-color: var(--c-accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 138, 0, .15);
}
.booking-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }

/* ============================================================
   CARDS / VÉHICULES
   ============================================================ */
.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.car-card { display: flex; flex-direction: column; height: 100%; }
.car-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--c-bg-soft), var(--c-bg-muted));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.car-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: var(--s-4);
  transition: transform var(--t-base);
}
.car-card:hover .car-img img { transform: scale(1.04); }
.car-img.car-img-large { aspect-ratio: 4 / 3; }
.car-img.car-img-large img { padding: var(--s-6); }
.car-img .badge-pop {
  position: absolute; top: 12px; left: 12px;
  background: var(--c-accent); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
}
.car-body { padding: var(--s-5); flex: 1; display: flex; flex-direction: column; }
.car-body h3 { font-size: 1.2rem; margin-bottom: var(--s-2); }
.car-meta {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  font-size: .85rem; color: var(--c-text-muted);
  margin-bottom: var(--s-4); padding-bottom: var(--s-4);
  border-bottom: 1px dashed var(--c-border);
}
.car-meta span { display: inline-flex; align-items: center; gap: 4px; }
.car-price {
  margin-top: auto; display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: var(--s-4);
}
.car-price strong { font-size: 1.6rem; font-weight: 800; color: var(--c-primary); font-family: var(--ff-display); }
.car-price span { color: var(--c-text-muted); font-size: .9rem; }
.car-price .mad { font-size: .85rem; color: var(--c-accent); font-weight: 600; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { display: grid; gap: var(--s-6); }
.feature {
  padding: var(--s-6); border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--c-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--c-accent-50); color: var(--c-accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4); font-size: 1.4rem;
}
.feature h3 { font-size: 1.1rem; margin-bottom: var(--s-2); }
.feature p { font-size: .95rem; margin: 0; }

/* Steps */
.steps { display: grid; gap: var(--s-6); counter-reset: step; }
.step { position: relative; padding-left: 72px; counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 800; font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(11, 31, 58, .25);
}
.step h3 { margin-bottom: var(--s-2); }
.step p { margin: 0; }

/* ============================================================
   AVIS / RATING
   ============================================================ */
.rating-block { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); }
.stars { color: var(--c-star); font-size: 1.1rem; letter-spacing: 2px; }
.rating-num { font-weight: 700; font-size: 1.1rem; }

.testimonial {
  background: #fff; padding: var(--s-6);
  border-radius: var(--r-lg); border: 1px solid var(--c-border);
  position: relative;
}
.testimonial::before {
  content: "\201C"; position: absolute; top: -10px; left: 16px;
  font-size: 4rem; color: var(--c-accent); line-height: 1;
  font-family: Georgia, serif;
}
.testimonial p { font-style: italic; margin-bottom: var(--s-4); color: var(--c-text); }
.testimonial-author { display: flex; align-items: center; gap: var(--s-3); }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial-author strong { display: block; font-size: .95rem; }
.testimonial-author small { color: var(--c-text-muted); font-size: .8rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-md); margin-bottom: var(--s-3);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  padding: var(--s-5) var(--s-6);
  font-weight: 600; font-size: 1.05rem; color: var(--c-text);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-4);
}
.faq-q::after {
  content: "+"; font-size: 1.5rem; color: var(--c-accent);
  flex-shrink: 0; transition: transform var(--t-base);
  font-weight: 300; line-height: 1;
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 var(--s-6);
  transition: max-height var(--t-base), padding var(--t-base);
}
.faq-item.is-open .faq-a {
  max-height: 800px; padding: 0 var(--s-6) var(--s-5);
}
.faq-a p:last-child { margin-bottom: 0; }

/* ============================================================
   PRICE TABLE
   ============================================================ */
.price-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table th, .price-table td {
  padding: var(--s-4) var(--s-5);
  text-align: left; border-bottom: 1px solid var(--c-border);
}
.price-table th { background: var(--c-bg-soft); font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; color: var(--c-text-muted); font-weight: 700; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table .price { font-weight: 700; color: var(--c-primary); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--c-primary), #102A4D);
  color: #fff; padding: var(--s-12) 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 138, 0, .25), transparent 50%);
}
.cta-band > .container { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cbd5e1; max-width: 600px; margin: 0 auto var(--s-6); }
.cta-buttons { display: inline-flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #061226; color: #94a3b8;
  padding: var(--s-16) 0 var(--s-6);
}
.footer-grid {
  display: grid; gap: var(--s-8);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: var(--s-10);
}
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: var(--s-4); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col a { color: #94a3b8; font-size: .9rem; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--c-accent); }
.footer-brand p { color: #94a3b8; font-size: .9rem; max-width: 280px; }
.footer-social { display: flex; gap: var(--s-2); margin-top: var(--s-4); }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, .08); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
}
.footer-social a:hover { background: var(--c-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: var(--s-5);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3);
  font-size: .85rem;
}

/* ============================================================
   PAGE HEADER (sous-pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--c-primary), #102A4D);
  color: #fff; padding: var(--s-12) 0 var(--s-10);
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: var(--s-3); }
.page-header p { color: #cbd5e1; max-width: 700px; margin: 0 auto; }
.breadcrumb {
  font-size: .85rem; color: #94a3b8;
  margin-bottom: var(--s-4);
}
.breadcrumb a { color: var(--c-accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   ARTICLE / PROSE (blog, contenu long)
   ============================================================ */
.prose { max-width: 760px; margin: 0 auto; font-size: 1.05rem; }
.prose h2 { margin-top: var(--s-10); }
.prose h3 { margin-top: var(--s-8); }
.prose ul, .prose ol { margin: 0 0 var(--s-5); padding-left: var(--s-6); }
.prose ul li { list-style: disc; margin-bottom: var(--s-2); color: var(--c-text-soft); }
.prose ol li { list-style: decimal; margin-bottom: var(--s-2); color: var(--c-text-soft); }
.prose a { color: var(--c-accent); text-decoration: underline; }
.prose strong { color: var(--c-text); }
.prose img { border-radius: var(--r-md); margin: var(--s-6) 0; }
.prose blockquote {
  border-left: 4px solid var(--c-accent);
  padding: var(--s-4) var(--s-6); margin: var(--s-6) 0;
  background: var(--c-bg-soft); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--s-2); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-6 { margin-bottom: var(--s-6); }
.mb-8 { margin-bottom: var(--s-8); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }

.tag {
  display: inline-block;
  background: var(--c-bg-muted); color: var(--c-text-soft);
  padding: 4px 10px; border-radius: 999px;
  font-size: .75rem; font-weight: 600;
}
.tag-accent { background: var(--c-accent-50); color: var(--c-accent-600); }
.tag-success { background: #DCFCE7; color: var(--c-success-600); }

/* Floating WhatsApp */
.fab-whatsapp {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-success); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(22, 163, 74, .4);
  font-size: 1.6rem;
  transition: transform var(--t-fast);
}
.fab-whatsapp:hover { transform: scale(1.08); }
@media (min-width: 768px) {
  .fab-whatsapp { right: 24px; bottom: 24px; width: 60px; height: 60px; }
}

/* Local SEO box */
.local-box {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: var(--s-6);
  margin-bottom: var(--s-6);
}
.local-box h3 { color: var(--c-primary); font-size: 1.1rem; }
.local-box ul { display: grid; gap: var(--s-2); }
.local-box li { display: flex; gap: var(--s-2); align-items: flex-start; }
.local-box li::before { content: "→"; color: var(--c-accent); font-weight: 700; }

/* Accessibility */
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Print */
@media print {
  .header, .footer, .fab-whatsapp, .hero { display: none; }
}
