/* ═══════════════════════════════════════════════════
   ASNAUTOSERVICE – style.css v3
   Theme: Navy & Silver — BMW/Mercedes Luxury
═══════════════════════════════════════════════════ */

:root {
  --navy:         #0D1B2A;
  --navy-mid:     #1B2D42;
  --navy-light:   #243447;
  --silver:       #C0C8D2;
  --silver-light: #E8ECF0;
  --white:        #F8F9FA;
  --pure-white:   #ffffff;
  --muted:        #7A8A9A;
  --accent:       #4A90C4;
  --accent-hover: #3A7DB0;
  --accent-light: rgba(74,144,196,0.12);
  --border:       rgba(192,200,210,0.15);
  --border-light: #DDE3EA;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Lato', sans-serif;
  --max-width:    1280px;
  --radius:       3px;
  --transition:   0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--silver-light); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

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

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

/* ── UTILITY ── */
.label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.5px; color: var(--navy); margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--muted); max-width: 540px; line-height: 1.7; }
.divider { width: 48px; height: 3px; background: var(--accent); margin: 20px 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  border: 2px solid var(--navy);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover, .btn-primary:active { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn-accent {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  border: 2px solid var(--accent);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.btn-accent:hover, .btn-accent:active { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent; color: var(--navy);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  border: 2px solid var(--navy);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.45);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.9); }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 76px; background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}
nav.scrolled {
  height: 64px;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-badge {
  width: 40px; height: 40px; background: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 14px; color: #fff;
  flex-shrink: 0;
}
.nav-logo-words { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-words strong {
  font-family: var(--font-display); font-weight: 900;
  font-size: 18px; color: #fff; letter-spacing: 2px;
}
.nav-logo-words span { font-size: 9px; color: var(--silver); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 600;
  font-size: 13px; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.75); transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone-link {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: rgba(255,255,255,0.88);
  display: flex; align-items: center; gap: 7px;
  transition: color var(--transition);
}
.nav-phone-link:hover { color: #fff; }
.nav-wa-btn {
  width: 38px; height: 38px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-wa-btn:hover { transform: scale(1.1); box-shadow: 0 4px 16px rgba(37,211,102,0.4); }

.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px; padding: 8px;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 1px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
  background: var(--navy); border-bottom: 1px solid var(--border);
  padding: 20px 20px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  flex-direction: column; gap: 0;
  overflow-y: auto; max-height: calc(100vh - 64px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); padding: 16px 0;
  border-bottom: 1px solid var(--border); display: block;
  touch-action: manipulation;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .m-ctas { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.mobile-nav .m-ctas .btn-accent,
.mobile-nav .m-ctas .btn-outline-white { flex: 1; min-width: 140px; font-size: 12px; padding: 13px 16px; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 560px; max-height: 900px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486006920555-c77dcf18193c?w=1800&q=85');
  background-size: cover; background-position: center 40%;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.5) 50%, rgba(13,27,42,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 40px 72px; width: 100%;
}
.hero-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px; opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px); font-weight: 900; line-height: 0.95;
  letter-spacing: -1px; color: #fff; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: clamp(15px, 2vw, 17px); color: rgba(255,255,255,0.75);
  max-width: 480px; line-height: 1.65; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.7s ease 0.6s forwards;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s ease 0.8s forwards;
}

/* Stats bar */
.hero-stats { background: var(--navy); border-top: 3px solid var(--accent); }
.hero-stats-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 24px 20px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-weight: 900; font-size: clamp(26px, 3vw, 36px); color: var(--accent); line-height: 1; }
.stat-label { font-size: 13px; color: var(--silver); }

/* ══════════════════════════════════════
   OVER ONS
══════════════════════════════════════ */
.about { padding: 90px 0; background: var(--pure-white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); }
.about-image-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 140px; height: 140px; background: var(--accent);
  border-radius: var(--radius); z-index: -1;
}
.about-badge {
  position: absolute; top: 28px; left: -18px;
  background: var(--navy); color: #fff;
  padding: 16px 20px; border-radius: var(--radius); text-align: center;
  box-shadow: 0 8px 32px rgba(13,27,42,0.35);
}
.about-badge strong { font-family: var(--font-display); font-size: 34px; font-weight: 900; color: var(--accent); display: block; line-height: 1; }
.about-badge span { font-size: 11px; color: var(--silver); letter-spacing: 1px; }
.about-text { padding-left: 12px; }
.about-text .section-sub { margin-bottom: 24px; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--white);
  border-radius: var(--radius); border-left: 3px solid var(--accent);
}
.about-feature i { color: var(--accent); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.about-feature-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.about-feature-text span { font-size: 13px; color: var(--muted); }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services { padding: 90px 0; background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.service-card {
  position: relative; overflow: hidden; background: var(--pure-white);
  border-radius: var(--radius); cursor: pointer;
  box-shadow: 0 2px 16px rgba(13,27,42,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  border: 1px solid var(--border-light);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(13,27,42,0.16); }
.service-card:active { transform: translateY(-2px); }

.service-img-wrap {
  width: 100%; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  position: relative;
}
/* Show icon when image fails */
.service-img-wrap::before {
  content: '\f1b9';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: rgba(255,255,255,0.15);
  z-index: 0;
}
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.service-card:hover .service-img { transform: scale(1.05); }

.service-body { padding: 20px 22px 24px; border-top: 3px solid transparent; transition: border-color var(--transition); }
.service-card:hover .service-body { border-color: var(--accent); }
.service-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--navy); margin-bottom: 6px; }
.service-short { font-size: 13px; color: var(--muted); line-height: 1.5; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent);
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 13px; }

/* Modal */
.service-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,27,42,0.8); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 16px;
}
.service-modal-overlay.open { display: flex; }
.service-modal {
  background: var(--pure-white); max-width: 600px; width: 100%;
  border-radius: 4px; overflow: hidden; position: relative;
  max-height: 90vh; overflow-y: auto; animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-img { width: 100%; height: 240px; object-fit: cover; }
.modal-body { padding: 28px 32px 32px; }
.modal-title { font-family: var(--font-display); font-weight: 900; font-size: 26px; color: var(--navy); margin-bottom: 10px; }
.modal-text { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.modal-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.modal-btns .btn-accent, .modal-btns .btn-outline { flex: 1; min-width: 140px; }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  background: rgba(13,27,42,0.6); border: none; border-radius: 50%;
  cursor: pointer; color: #fff; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); z-index: 10; touch-action: manipulation;
}
.modal-close:hover { background: var(--accent); }

/* ══════════════════════════════════════
   USPs
══════════════════════════════════════ */
.usps { padding: 80px 0; background: var(--navy); border-top: 3px solid var(--accent); }
.usps .section-title { color: #fff; }
.usps-header { text-align: center; margin-bottom: 56px; }
.usps-header .divider { margin: 18px auto; }
.usps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.usp-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 32px 24px; text-align: center; transition: var(--transition);
}
.usp-card:hover { background: rgba(74,144,196,0.12); border-color: rgba(74,144,196,0.35); }
.usp-icon {
  width: 54px; height: 54px; margin: 0 auto 18px;
  background: rgba(74,144,196,0.12); border: 1px solid rgba(74,144,196,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 20px; transition: var(--transition);
}
.usp-card:hover .usp-icon { background: var(--accent); color: #fff; }
.usp-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; margin-bottom: 8px; }
.usp-text { font-size: 13.5px; color: var(--silver); line-height: 1.6; }

/* ══════════════════════════════════════
   REVIEWS CARROUSEL
══════════════════════════════════════ */
.reviews { padding: 90px 0; background: var(--pure-white); overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 56px; }
.reviews-header .divider { margin: 18px auto; }
.reviews-header .section-sub { margin: 0 auto; text-align: center; }

.reviews-track-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  margin: 0 0 40px 0;
}
.reviews-track {
  display: flex; gap: 20px;
  animation: scrollLeft 70s linear infinite;
  width: max-content;
  padding: 8px 0;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.reviews-track:hover { animation-play-state: paused; }
/* Touch: pauzeer niet op mobiel aanraking, laat gewoon doorlopen */
@media (max-width: 640px) {
  .reviews-track { animation-duration: 55s; }
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 26px; border: 1px solid var(--border-light);
  border-bottom: 3px solid var(--accent);
  flex-shrink: 0; width: 300px;
  box-shadow: 0 2px 16px rgba(13,27,42,0.06);
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.12); }
.review-stars { color: #F5A623; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--navy); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.review-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 1px; color: var(--accent); }

/* ══════════════════════════════════════
   OPENINGSTIJDEN
══════════════════════════════════════ */
.hours-section { padding: 90px 0; background: var(--white); }
.hours-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.hours-table { width: 100%; margin-top: 28px; }
.hours-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0; border-bottom: 1px solid var(--border-light); font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 700; color: var(--navy); }
.hours-day.today { color: var(--accent); }
.hours-time { color: var(--muted); }
.hours-time.closed { color: #c0392b; font-weight: 600; }
.hours-cta-box { background: var(--navy); padding: 40px; border-radius: var(--radius); color: #fff; }
.hours-cta-box .label { color: var(--accent); }
.hours-cta-box h3 { font-family: var(--font-display); font-weight: 900; font-size: 28px; line-height: 1.1; margin-bottom: 12px; }
.hours-cta-box p { color: var(--silver); font-size: 14px; line-height: 1.65; margin-bottom: 26px; }
.wa-big-btn {
  display: flex; align-items: center; gap: 12px; background: #25d366; color: #fff;
  padding: 15px 24px; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: var(--transition); margin-bottom: 12px; touch-action: manipulation;
}
.wa-big-btn:hover { background: #1da855; }
.wa-big-btn i { font-size: 20px; }
.phone-big-btn {
  display: flex; align-items: center; gap: 12px; background: transparent; color: #fff;
  padding: 15px 24px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase; transition: var(--transition); touch-action: manipulation;
}
.phone-big-btn:hover { border-color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════
   CONTACT & MAP
══════════════════════════════════════ */
.contact { padding: 90px 0; background: var(--pure-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent-light); border: 1px solid rgba(74,144,196,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 17px;
}
.contact-item-body { display: flex; flex-direction: column; gap: 2px; }
.contact-item-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-item-value { font-size: 15px; color: var(--navy); font-weight: 600; line-height: 1.45; }
.contact-item-value a { color: inherit; transition: color var(--transition); }
.contact-item-value a:hover { color: var(--accent); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 40px rgba(13,27,42,0.12); height: 460px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--navy); color: var(--silver); padding: 56px 0 0; border-top: 3px solid var(--accent); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo-badge {
  width: 36px; height: 36px; background: var(--accent); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 13px; color: #fff;
}
.footer-logo-name { font-family: var(--font-display); font-weight: 900; font-size: 16px; color: #fff; letter-spacing: 2px; }
.footer-desc { font-size: 13px; line-height: 1.65; max-width: 240px; }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: var(--silver); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--accent); }
.hours-mini { display: flex; flex-direction: column; gap: 8px; }
.hours-mini-row { display: flex; justify-content: space-between; font-size: 12px; gap: 12px; }
.hours-mini-row span:first-child { color: rgba(255,255,255,0.38); }
.hours-mini-row span:last-child  { color: rgba(255,255,255,0.78); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* Floating WhatsApp */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 1500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.5s ease infinite;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.float-wa:hover, .float-wa:active { transform: scale(1.1); animation: none; box-shadow: 0 6px 32px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}
.float-wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff; font-family: var(--font-display);
  font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: var(--radius);
  white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity var(--transition);
}
.float-wa-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--navy);
}
.float-wa:hover .float-wa-tooltip { opacity: 1; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ══════════════════════════════════════
   RESPONSIVE TABLET (≤1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav-inner  { padding: 0 28px; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .nav-phone-link { display: none; }
  .hero-content { padding: 0 28px 60px; }
  .hero-stats-inner { padding: 0 28px; }
  .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-text  { padding-left: 0; }
  .about-image-accent { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .usps-grid    { grid-template-columns: repeat(2, 1fr); }
  .hours-inner  { grid-template-columns: 1fr; gap: 44px; }
  .contact-inner { grid-template-columns: 1fr; }
  .map-wrap     { height: 360px; }
  .footer-top   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-header { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════
   RESPONSIVE MOBILE (≤640px)
══════════════════════════════════════ */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .nav-inner  { padding: 0 16px; }
  nav { height: 62px; }
  nav.scrolled { height: 58px; }
  .mobile-nav { top: 58px; }

  .hero { height: 100svh; min-height: 500px; }
  .hero-content { padding: 0 16px 48px; }
  .hero-title { font-size: clamp(36px, 10vw, 52px); }
  .hero-sub   { font-size: 14px; max-width: 100%; }
  .hero-ctas  { flex-direction: column; gap: 10px; }
  .hero-ctas .btn-accent,
  .hero-ctas .btn-outline-white { width: 100%; justify-content: center; padding: 16px; }
  .hero-stats-inner { padding: 0; grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 18px 14px; }

  .about { padding: 56px 0; }
  .about-image-wrap img { height: 260px; }
  .about-badge { display: none; }

  .services { padding: 56px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-img-wrap { height: 130px; }
  .service-body { padding: 12px 12px 16px; }
  .service-title { font-size: 15px; }
  .service-short { font-size: 12px; }
  .service-link  { font-size: 11px; margin-top: 10px; }

  .modal-img { height: 180px; }
  .modal-body { padding: 20px 20px 24px; }
  .modal-title { font-size: 22px; }
  .modal-btns { flex-direction: column; }
  .modal-btns .btn-accent, .modal-btns .btn-outline { width: 100%; }

  .usps { padding: 56px 0; }
  .usps-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .usp-card { padding: 22px 14px; }
  .usp-title { font-size: 15px; }
  .usp-text  { font-size: 12px; }

  .reviews { padding: 56px 0; }
  .review-card { width: 240px; padding: 20px 18px; }
  .reviews-track { gap: 14px; }
  .reviews-track-wrap { margin: 0; }

  .hours-section { padding: 56px 0; }
  .hours-cta-box { padding: 24px 20px; }
  .hours-cta-box h3 { font-size: 22px; }
  .section-title { font-size: clamp(24px, 8vw, 36px); word-break: break-word; }
  #openingstijden .section-title { font-size: clamp(22px, 7vw, 32px); }

  .contact { padding: 56px 0; }
  .map-wrap { height: 280px; }

  footer { padding: 40px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .float-wa { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 24px; }
  .float-wa-tooltip { display: none; }
}

@media (max-width: 380px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .service-img-wrap { height: 110px; }
  .hero-title { font-size: 34px; }
}

/* ══════════════════════════════════════
   PRELOADER
══════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 32px; }
.preloader-badge {
  width: 52px; height: 52px; background: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 18px; color: #fff;
  animation: preloaderPulse 1.2s ease infinite;
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}
.preloader-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 28px; color: #fff; letter-spacing: 3px;
}
.preloader-bar {
  width: 200px; height: 3px; background: rgba(255,255,255,0.15);
  border-radius: 2px; overflow: hidden; margin: 0 auto 12px;
}
.preloader-fill {
  height: 100%; width: 0%; background: var(--accent);
  border-radius: 2px;
  animation: preloaderBar 1.8s ease forwards;
}
@keyframes preloaderBar { to { width: 100%; } }
.preloader-text {
  font-family: var(--font-display); font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════
   WHATSAPP BANNER
══════════════════════════════════════ */
.wa-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.wa-banner.visible { transform: translateY(0); }
.wa-banner-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
  height: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  overflow: hidden;
}
.wa-banner-left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.wa-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--muted); flex-shrink: 0;
  transition: background 0.3s;
}
.wa-status-dot.open  { background: #25d366; box-shadow: 0 0 0 3px rgba(37,211,102,0.2); animation: dotPulse 2s ease infinite; }
.wa-status-dot.closed { background: #e74c3c; }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,211,102,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(37,211,102,0.08); }
}
.wa-status-text {
  font-family: var(--font-display); font-size: 13px;
  color: rgba(255,255,255,0.80); letter-spacing: 0.5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wa-banner-btn {
  display: flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--radius);
  transition: var(--transition); white-space: nowrap; flex-shrink: 0;
  touch-action: manipulation;
}
.wa-banner-btn:hover { background: #1da855; }
.wa-banner-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.45); font-size: 14px;
  padding: 6px 4px; transition: color var(--transition);
  touch-action: manipulation; flex-shrink: 0;
}
.wa-banner-close:hover { color: #fff; }

/* Push nav down when banner is visible */
body.banner-visible nav { top: 44px; }
body.banner-visible .mobile-nav { top: calc(44px + 58px); }

/* Mobile banner: compact single line */
@media (max-width: 640px) {
  .wa-banner-inner { padding: 0 14px; height: 40px; gap: 10px; }
  .wa-status-text-long { display: none; } /* hide long text on mobile */
  .wa-banner-btn span { display: none; } /* show only WA icon on very small */
  .wa-banner-btn { padding: 7px 14px; font-size: 11px; }
  .wa-banner-btn i { font-size: 16px; }
  body.banner-visible nav { top: 40px; }
  body.banner-visible .mobile-nav { top: calc(40px + 58px); }
}

/* ══════════════════════════════════════
   LOGO ANIMATION
══════════════════════════════════════ */
.nav-logo-badge {
  display: flex; align-items: center; justify-content: center;
  gap: 0; overflow: hidden;
  background: var(--accent); border-radius: var(--radius);
  width: 40px; height: 40px; flex-shrink: 0;
}
.logo-letter {
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; color: #fff;
  display: inline-block;
  animation: logoFloat 3s ease infinite;
}
.logo-letter:nth-child(1) { animation-delay: 0s; }
.logo-letter:nth-child(2) { animation-delay: 0.15s; }
.logo-letter:nth-child(3) { animation-delay: 0.3s; }
@keyframes logoFloat {
  0%, 60%, 100% { transform: translateY(0); }
  30%            { transform: translateY(-3px); }
}

/* Nav entrance animation */
nav { animation: navSlideDown 0.6s ease 1.9s both; }
@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* ══════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 92px; right: 24px; z-index: 1400;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(13,27,42,0.3);
  touch-action: manipulation;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

/* ══════════════════════════════════════
   SERVICE PAGE (services/*.html)
══════════════════════════════════════ */
.service-page-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.service-page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,144,196,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.service-page-hero .container { position: relative; z-index: 1; }
.service-breadcrumb {
  font-family: var(--font-display); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 16px;
}
.service-breadcrumb a { color: var(--accent); }
.service-breadcrumb a:hover { color: #fff; }
.service-page-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 6vw, 72px); color: #fff;
  line-height: 1; margin-bottom: 16px; letter-spacing: -1px;
}
.service-page-sub { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 500px; line-height: 1.65; }

.service-page-body { padding: 80px 0; background: var(--pure-white); }
.service-page-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.service-page-img { width: 100%; border-radius: var(--radius); box-shadow: 0 8px 40px rgba(13,27,42,0.15); }
.service-page-content .label { margin-bottom: 12px; }
.service-page-content h2 { font-family: var(--font-display); font-weight: 900; font-size: 32px; color: var(--navy); margin-bottom: 16px; }
.service-page-content p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.service-page-content ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-page-content ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--dark);
}
.service-page-content ul li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: var(--accent); font-size: 13px; margin-top: 2px; flex-shrink: 0;
}
.service-cta-block { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

@media (max-width: 768px) {
  .service-page-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-page-hero  { padding-top: 90px; padding-bottom: 40px; }
  .wa-banner-inner { padding: 0 16px; }
  .back-to-top { bottom: 84px; right: 16px; width: 40px; height: 40px; font-size: 14px; }
}

/* Banner tekst: desktop vs mobiel */
.wa-status-text-short { display: none; }
.wa-status-text-long  { display: inline; }

@media (max-width: 640px) {
  .wa-status-text-short { display: inline; font-family: var(--font-display); font-size: 13px; color: rgba(255,255,255,0.85); }
  .wa-status-text-long  { display: none; }
  .wa-banner-btn span   { display: inline; font-size: 11px; letter-spacing: 1px; }
  .float-wa { bottom: 20px; right: 16px; width: 50px; height: 50px; font-size: 22px; }
  .back-to-top { bottom: 82px; right: 16px; width: 40px; height: 40px; font-size: 14px; }
}

/* ══════════════════════════════════════
   HERO ROTATING TEXT
══════════════════════════════════════ */
.hero-rotating-wrap {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s ease 0.7s forwards;
}
.hero-rotating-prefix { color: var(--accent); font-size: 16px; flex-shrink: 0; }
.hero-rotating-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity 0.4s ease;
  min-height: 26px; display: inline-block;
}
.hero-rotating-text.fade { opacity: 0; }

/* ══════════════════════════════════════
   WIJ REGELEN MEER
══════════════════════════════════════ */
.extra-services {
  padding: 90px 0;
  background: var(--off-white);
}
.extra-services .section-title { color: var(--navy); }
.extra-services .section-sub   { color: var(--muted); }
.extra-header { margin-bottom: 56px; }

.extra-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.extra-card {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(13,27,42,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 1 !important;
  transform: none !important;
}
.extra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(13,27,42,0.14);
}
.extra-img-wrap {
  width: 100%; height: 190px; overflow: hidden;
  background: var(--silver-light); position: relative;
}
.extra-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.extra-card:hover .extra-img { transform: scale(1.05); }
.extra-body { padding: 22px 26px 26px; border-top: 3px solid transparent; transition: border-color var(--transition); }
.extra-card:hover .extra-body { border-color: var(--accent); }
.extra-header-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.extra-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--accent-light);
  border: 1px solid rgba(74,144,196,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 17px;
  transition: var(--transition);
}
.extra-card:hover .extra-icon { background: var(--accent); color: #fff; }
.extra-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; color: var(--navy); letter-spacing: 0.3px;
}
.extra-short { font-size: 13px; color: var(--muted); margin-bottom: 10px; line-height: 1.5; }
.extra-desc  { font-size: 14px; color: var(--dark); line-height: 1.7; margin-bottom: 16px; }
.extra-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); transition: gap var(--transition);
}
.extra-card:hover .extra-cta { gap: 13px; }

/* ══════════════════════════════════════
   NOODGEVAL BLOK
══════════════════════════════════════ */
.emergency-block {
  margin-top: 28px;
  background: rgba(213,0,28,0.09);
  border: 1px solid rgba(213,0,28,0.28);
  border-left: 4px solid #d5001c;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.emergency-text strong { color: #d5001c; }
.emergency-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(213,0,28,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #d5001c; font-size: 18px;
  animation: emergencyPulse 2s ease infinite;
}
@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(213,0,28,0.2); }
  50%       { box-shadow: 0 0 0 8px rgba(213,0,28,0); }
}
.emergency-text { flex: 1; min-width: 160px; }
.emergency-text strong { display: block; font-size: 14px; font-weight: 700; color: #d5001c; margin-bottom: 3px; }
.emergency-text span   { font-size: 13px; color: var(--muted); }
.emergency-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.emergency-btns .btn-accent,
.emergency-btns .btn-outline { padding: 10px 18px; font-size: 12px; }

/* Mobile extra services */
@media (max-width: 768px) {
  .extra-grid { grid-template-columns: 1fr; gap: 14px; }
  .extra-img-wrap { height: 160px; }
  .extra-body { padding: 18px 18px 22px; }
  .emergency-block { flex-direction: column; align-items: flex-start; }
  .hero-rotating-text { font-size: 15px; }
}

/* Banner phone button (alleen bij gesloten) */
.wa-banner-phone-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius);
  transition: var(--transition); white-space: nowrap; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
}
.wa-banner-phone-btn:hover { background: rgba(255,255,255,0.2); }
.wa-banner-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

@media (max-width: 640px) {
  .wa-banner-phone-btn span { display: none; }
  .wa-banner-phone-btn { padding: 7px 10px; }
  .wa-banner-actions { gap: 6px; }
}

/* ══════════════════════════════════════
   MOBIEL FIXES v5
══════════════════════════════════════ */

/* 1. Roterende tekst — zichtbaar op mobiel */
@media (max-width: 640px) {
  .hero-rotating-wrap {
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .hero-rotating-text {
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: normal;
    word-break: break-word;
  }
  .hero-rotating-prefix { font-size: 14px; }
}

/* 2. Noodgeval blok — rood op mobiel */
@media (max-width: 640px) {
  .emergency-block {
    background: rgba(213,0,28,0.1);
    border-left-color: #d5001c;
    border-color: rgba(213,0,28,0.3);
  }
  .emergency-text strong { color: #d5001c; }
  .emergency-icon { color: #d5001c; background: rgba(213,0,28,0.15); }
  .emergency-btns { width: 100%; }
  .emergency-btns .btn-accent,
  .emergency-btns .btn-outline { flex: 1; justify-content: center; }
}

/* 3. Wij Regelen Meer — kaarten op mobiel */
@media (max-width: 640px) {
  .extra-services { padding: 56px 0; }
  .extra-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .extra-card { display: block; }
  .extra-img-wrap { height: 170px; }
  .extra-body { padding: 18px 18px 22px; }
  .extra-header-row { gap: 12px; margin-bottom: 8px; }
  .extra-title { font-size: 18px; }
  .extra-desc { font-size: 13px; }
}

/* 4. Banner gesloten tekst mobiel */
@media (max-width: 640px) {
  .wa-status-text-short {
    font-size: 12px;
    line-height: 1.3;
  }
}
