/* =========================================================================
   Tractări Auto Oradea — Static Site Stylesheet
   Pure CSS3. No build step required.
   ========================================================================= */

/* --- Reset & base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; margin: 0; line-height: 1.15; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

:root {
  --brand-blue: #013295;
  --brand-blue-dark: #001f5e;
  --brand-yellow: #ffc308;
  --brand-yellow-dark: #d9a300;
  --whatsapp: #25D366;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --surface: #f5f5f5;
}

.container-x { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container-x { padding: 0 32px; } }
.section-pad { padding: 64px 0; }
@media (min-width: 768px) { .section-pad { padding: 96px 0; } }

/* --- Buttons ------------------------------------------------------------ */
.btn-primary, .btn-outline-white, .btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 22px; border-radius: 9999px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-yellow); color: var(--brand-blue);
  box-shadow: 0 8px 20px rgba(255,195,8,0.35);
}
.btn-primary:hover { background: var(--brand-yellow-dark); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent; color: #fff; border: 2px solid #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--brand-blue); }
.btn-whatsapp {
  background: var(--whatsapp); color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* --- Navbar ------------------------------------------------------------- */
.site-navbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--brand-blue);
  transition: box-shadow .3s ease;
}
.site-navbar.scrolled { box-shadow: 0 6px 22px rgba(0,0,0,0.18); }
.nav-wrap {
  max-width: 1700px; margin: 0 auto;
  padding: 0 12px;
  display: flex; align-items: center; height: 64px; gap: 8px;
}
@media (min-width: 1024px) { .nav-wrap { height: 80px; padding: 0 20px; gap: 12px; } }
.nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; margin-left: 8px; }
.nav-logo img { height: 45px; width: auto; max-height: 55px; object-fit: contain; }
@media (min-width: 1024px) { .nav-logo img { height: 55px; } }

.nav-links { display: none; flex: 1; justify-content: space-evenly; align-items: center; min-width: 0; padding: 0 16px; }
@media (min-width: 1280px) { .nav-links { display: flex; } }
.nav-link {
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding-bottom: 4px; position: relative; white-space: nowrap;
  transition: color .15s ease;
}
.nav-link:hover { color: #fff; }
.nav-link.active {
  color: var(--brand-yellow);
}
.nav-link.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--brand-yellow);
}

.nav-cta { display: none; align-items: center; gap: 8px; flex-shrink: 0; }
@media (min-width: 1024px) { .nav-cta { display: flex; } }
.nav-cta .btn-primary, .nav-cta .btn-whatsapp { padding: 8px 16px; font-size: 13px; }

.nav-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-left: auto;
  color: #fff; border-radius: 8px;
}
@media (min-width: 1280px) { .nav-burger { display: none; } }
.nav-burger i { font-size: 22px; }

.mobile-menu {
  display: none; background: var(--brand-blue);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu .container-x { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  color: rgba(255,255,255,0.9);
  font-family: 'Outfit', sans-serif; font-weight: 500;
  padding: 10px 4px; font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a.active { color: var(--brand-yellow); }
.mobile-menu .mobile-cta { display: flex; gap: 10px; margin-top: 12px; }
.mobile-menu .mobile-cta a { flex: 1; border: 0; }

/* --- Page Hero (inner pages) ------------------------------------------- */
.page-hero {
  background: var(--brand-blue);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 12px);
  color: #fff;
  padding: 72px 0 88px;
  position: relative;
}
.page-hero .crumbs {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 16px;
}
.page-hero .crumbs a:hover { color: var(--brand-yellow); }
.page-hero .crumbs .sep { color: rgba(255,255,255,0.5); }
.page-hero .crumbs .current { color: var(--brand-yellow); }
.page-hero h1 {
  font-weight: 800; font-size: clamp(28px, 4.5vw, 56px); letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.page-hero p {
  margin-top: 16px; max-width: 760px; color: rgba(255,255,255,0.88);
  font-size: 16px; line-height: 1.55;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* --- Home hero ---------------------------------------------------------- */
.home-hero {
  position: relative; overflow: hidden; background: var(--brand-blue); color: #fff;
}
.home-hero .slides { position: absolute; inset: 0; z-index: 0; }
.home-hero .slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease-in-out;
}
.home-hero .slide.active { opacity: 1; }
.home-hero .slide-overlay {
  position: absolute; inset: 0; background-color: rgba(1,50,149,0.28);
}
.home-hero .pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 12px);
  opacity: 0.6;
}
.home-hero .gradient {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(1,50,149,0.2), transparent 30%, rgba(0,31,94,0.6));
}
.home-hero .hero-inner { position: relative; z-index: 2; padding: 64px 0 80px; }
@media (min-width: 768px) { .home-hero .hero-inner { padding: 96px 0 112px; } }
.home-hero .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px; border-radius: 9999px;
  background: rgba(255,195,8,0.15); border: 1px solid rgba(255,195,8,0.3);
  color: var(--brand-yellow);
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px;
}
.home-hero .badge .dot {
  width: 8px; height: 8px; border-radius: 9999px; background: var(--brand-yellow);
  animation: pulse 2s ease-in-out infinite;
}
.home-hero h1 {
  font-weight: 800; font-size: clamp(28px, 5vw, 60px); line-height: 1.08;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  max-width: 960px;
}
.home-hero h1 .accent { color: var(--brand-yellow); }
.home-hero p.lead {
  margin-top: 20px; color: rgba(255,255,255,0.85); font-size: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6); max-width: 760px;
}
@media (min-width: 768px) { .home-hero p.lead { font-size: 18px; } }
.home-hero .cta-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

.home-hero .counters {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 768px) { .home-hero .counters { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.home-hero .counter-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px); border-radius: 18px; padding: 16px;
}
@media (min-width: 768px) { .home-hero .counter-card { padding: 20px; } }
.home-hero .counter-card .num {
  font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--brand-yellow);
  font-size: 24px; line-height: 1;
}
@media (min-width: 768px) { .home-hero .counter-card .num { font-size: 40px; } }
.home-hero .counter-card .lbl { color: rgba(255,255,255,0.7); margin-top: 6px; font-size: 12px; }
@media (min-width: 768px) { .home-hero .counter-card .lbl { font-size: 14px; } }

/* --- Why us / cards ---------------------------------------------------- */
.section-eyebrow {
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-blue);
}
.section-title {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  color: var(--brand-blue); font-size: clamp(28px, 4vw, 44px); margin-top: 8px;
  line-height: 1.15;
}
.section-sub { color: var(--slate-500); margin-top: 12px; font-size: 15px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 672px; }
.max-w-4xl { max-width: 896px; }
.max-w-5xl { max-width: 1024px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }

.grid-4 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: #fff; border: 1px solid var(--slate-100); border-radius: 18px;
  padding: 22px; box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: box-shadow .25s ease, transform .25s ease;
  height: 100%;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.feature-card .icon-box {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(1,50,149,0.1); color: var(--brand-blue); margin-bottom: 16px;
  font-size: 22px;
}
.feature-card .icon-box.yellow { background: rgba(255,195,8,0.2); color: var(--brand-blue); }
.feature-card h3 { font-weight: 700; font-size: 18px; color: var(--brand-blue); }
.feature-card p { color: var(--slate-500); font-size: 14px; margin-top: 8px; line-height: 1.55; }
.feature-card .more {
  margin-top: 16px; color: var(--brand-blue); font-family: 'Outfit'; font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px; font-size: 14px;
}

.section-bg-surface { background: var(--surface); }

/* --- How it works ------------------------------------------------------ */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  position: relative; background: #fff; border: 1px solid var(--slate-100);
  border-radius: 18px; padding: 28px; text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.step-card .num {
  margin: 0 auto 16px; width: 56px; height: 56px; border-radius: 9999px;
  background: var(--brand-yellow); color: var(--brand-blue);
  font-family: 'Outfit'; font-weight: 800; font-size: 22px;
  display: grid; place-items: center; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.step-card h3 { font-weight: 700; font-size: 18px; color: var(--brand-blue); }
.step-card p { color: var(--slate-500); font-size: 14px; margin-top: 8px; }

/* --- SEO long content --------------------------------------------------- */
.seo-content { max-width: 896px; margin: 0 auto; }
.seo-content section + section { margin-top: 48px; }
.seo-content h2 {
  font-weight: 800; font-size: clamp(24px, 3.2vw, 36px); color: var(--brand-blue);
  line-height: 1.15; margin-bottom: 20px;
}
.seo-content h3 {
  font-weight: 800; font-size: clamp(20px, 2.6vw, 28px); color: var(--brand-blue);
  margin: 32px 0 12px;
}
.seo-content h4 { font-weight: 700; font-size: 18px; color: var(--brand-blue); margin: 24px 0 8px; }
.seo-content p { color: var(--slate-700); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.seo-content a { color: var(--brand-blue); text-decoration: underline; text-underline-offset: 3px; }
.seo-content a:hover { color: var(--brand-blue-dark); }
.seo-content strong { color: var(--brand-blue-dark); }
.seo-content ul { margin: 12px 0; }
.seo-content ul li {
  position: relative; padding-left: 22px; color: var(--slate-700); font-size: 15px;
  margin-bottom: 6px;
}
.seo-content ul li::before {
  content: "›"; position: absolute; left: 4px; top: 0;
  color: var(--brand-yellow); font-weight: 800; font-size: 18px;
}
.seo-content ol { counter-reset: step; margin: 12px 0; padding-left: 22px; list-style: decimal; }
.seo-content ol li { color: var(--slate-700); padding-left: 6px; margin-bottom: 8px; font-size: 15px; }
.seo-content .callout {
  margin: 24px 0; padding: 18px 22px;
  background: rgba(255,195,8,0.15); border-left: 4px solid var(--brand-yellow);
  border-radius: 0 12px 12px 0;
}
.seo-content .callout p { color: var(--brand-blue); font-weight: 600; margin: 0; }

/* --- FAQ Accordion ------------------------------------------------------ */
.faq-block { margin-top: 56px; }
.faq-block h2 { margin-bottom: 24px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--slate-200); border-radius: 12px;
  padding: 4px 20px; margin-bottom: 10px;
  transition: background .2s ease;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 16px 0; font-family: 'Outfit'; font-weight: 700; color: var(--brand-blue);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "›"; font-size: 24px; transform: rotate(90deg);
  transition: transform .2s ease; color: var(--brand-blue);
}
.faq-item[open] summary::after { transform: rotate(-90deg); }
.faq-item .answer { padding: 0 0 16px; color: var(--slate-700); line-height: 1.65; }
.faq-item .answer a { color: var(--brand-blue); text-decoration: underline; }

/* --- Gallery & Lightbox ------------------------------------------------- */
.gallery { margin: 40px 0; }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.gallery-item {
  position: relative; overflow: hidden; border-radius: 8px;
  background: var(--slate-100); aspect-ratio: 4/3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow .3s ease; cursor: pointer; width: 100%;
}
.gallery-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.9);
  align-items: center; justify-content: center;
  animation: lb-fade .25s ease-out;
}
.lightbox.open { display: flex; }
.lightbox img.lb-img {
  max-width: 92vw; max-height: 86vh; object-fit: contain;
  border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: lb-fade .3s ease-out;
}
.lb-btn {
  background: rgba(0,0,0,0.4); color: #fff; border: 0;
  width: 52px; height: 52px; border-radius: 9999px;
  font-size: 28px; line-height: 1; display: flex; align-items: center; justify-content: center;
  position: absolute; transition: background .2s, transform .2s;
}
.lb-btn:hover { background: rgba(0,0,0,0.7); transform: scale(1.08); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.08); }
.lb-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: 14px; letter-spacing: .5px;
  background: rgba(0,0,0,0.4); padding: 6px 14px; border-radius: 9999px;
}
@media (max-width: 640px) {
  .lb-btn { width: 44px; height: 44px; font-size: 24px; }
  .lb-close { top: 12px; right: 12px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}

/* --- Contact page ------------------------------------------------------- */
.contact-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 28px; box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  padding: 28px;
}
@media (min-width: 768px) { .contact-card { padding: 48px; } }
.contact-cta-row { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
@media (min-width: 640px) { .contact-cta-row { flex-direction: row; } }
.contact-cta-row .btn-primary,
.contact-cta-row .btn-whatsapp { padding: 14px 28px; font-size: 16px; }
@media (min-width: 640px) { .contact-cta-row .btn-primary,
  .contact-cta-row .btn-whatsapp { min-width: 260px; } }
.contact-info-grid {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--surface); border: 1px solid var(--slate-200);
  border-radius: 16px; padding: 20px;
  transition: background .2s, border-color .2s;
}
a.contact-info-card:hover { background: rgba(255,195,8,0.1); border-color: var(--brand-yellow); }
.contact-info-card .icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 20px;
}
.contact-info-card .icon.blue { background: var(--brand-blue); color: var(--brand-yellow); }
.contact-info-card .icon.yellow { background: var(--brand-yellow); color: var(--brand-blue); }
.contact-info-card .icon.whatsapp { background: var(--whatsapp); color: #fff; }
.contact-info-card .lbl {
  font-family: 'Outfit'; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-500);
}
.contact-info-card .val { font-family: 'Outfit'; font-weight: 800; font-size: 18px; color: var(--brand-blue); word-break: break-all; }
.contact-info-card.program { grid-column: 1 / -1; background: var(--brand-blue); color: #fff; }
.contact-info-card.program .lbl { color: var(--brand-yellow); }
.contact-info-card.program .val { color: #fff; }
.contact-info-card.program .sub { color: rgba(255,255,255,0.75); font-size: 14px; margin-top: 4px; }
.zones-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 16px;
}
@media (min-width: 640px) { .zones-grid { grid-template-columns: repeat(4, 1fr); } }
.zone-pill {
  background: #fff; border: 1px solid var(--slate-200); border-radius: 12px;
  padding: 10px 12px; text-align: center; font-family: 'Outfit'; font-weight: 700;
  color: var(--brand-blue); font-size: 14px;
}
.map-wrap {
  border-radius: 24px; overflow: hidden; border: 4px solid var(--brand-yellow);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1); background: var(--slate-100);
  aspect-ratio: 16/9;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --- Coverage teaser / Emergency CTA ----------------------------------- */
.coverage-bar {
  background: var(--brand-blue); color: #fff; padding: 48px 0;
}
.coverage-bar .inner {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .coverage-bar .inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.coverage-bar p { font-family: 'Outfit'; font-weight: 700; font-size: 18px; }

.emergency-cta {
  background: var(--brand-blue);
  background-image:
    radial-gradient(rgba(255,195,8,0.15) 1.2px, transparent 1.2px),
    radial-gradient(rgba(255,195,8,0.1) 1.2px, transparent 1.2px);
  background-size: 22px 22px, 44px 44px;
  color: #fff; padding: 64px 0;
}
.emergency-cta .inner { display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; }
@media (min-width: 768px) { .emergency-cta .inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.emergency-cta h2 { font-family: 'Outfit'; font-weight: 800; font-size: clamp(24px, 3vw, 36px); }
.emergency-cta p { color: rgba(255,255,255,0.85); margin-top: 8px; font-size: 16px; }
.emergency-cta .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--brand-blue-dark); color: #fff;
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo img { height: 50px; width: auto; object-fit: contain; }
.footer-tagline { color: rgba(255,255,255,0.75); font-size: 14px; margin-top: 12px; line-height: 1.55; }
.footer h4 {
  font-family: 'Outfit'; font-weight: 700; color: var(--brand-yellow);
  letter-spacing: 0.05em; text-transform: uppercase; font-size: 14px; margin-bottom: 16px;
}
.footer ul li { margin-bottom: 8px; }
.footer ul li a {
  color: rgba(255,255,255,0.8); font-size: 14px; transition: color .15s;
}
.footer ul li a:hover { color: var(--brand-yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px; padding-top: 20px;
  text-align: center; color: rgba(255,255,255,0.6); font-size: 13px;
}

/* --- Floating buttons --------------------------------------------------- */
.floating-cta {
  position: fixed; right: 16px; bottom: 16px; z-index: 100;
  display: flex; flex-direction: column; gap: 12px;
}
.floating-btn {
  width: 56px; height: 56px; border-radius: 9999px;
  display: grid; place-items: center; color: #fff; font-size: 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  position: relative; transition: transform .2s ease;
}
.floating-btn:hover { transform: scale(1.08); }
.floating-btn.call { background: var(--brand-yellow); color: var(--brand-blue); }
.floating-btn.wa { background: var(--whatsapp); color: #fff; }
.floating-btn::before {
  content: ""; position: absolute; inset: -4px; border-radius: 9999px;
  background: inherit; opacity: 0.5; animation: pulse 2s ease-in-out infinite;
  z-index: -1;
}

/* Mobile bottom bar (under floating CTA visibility on small) */
.mobile-bottom-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--brand-blue); padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -6px 22px rgba(0,0,0,0.18);
}
@media (max-width: 1023px) {
  .mobile-bottom-bar { display: flex; gap: 8px; }
  body { padding-bottom: 72px; }
  .floating-cta { display: none; }
}
.mobile-bottom-bar a { flex: 1; padding: 12px; font-size: 14px; }

/* --- Reveal animations -------------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Keyframes ---------------------------------------------------------- */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 0.3; }
}
@keyframes lb-fade {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up .7s ease both; }

/* Utility */
.flex { display: flex; } .items-center { align-items: center; } .gap-3 { gap: 12px; }
.mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; }

/* =========================================================================
   REDESIGNED HOME MIDDLE SECTION (rd-* classes)
   ========================================================================= */
.rd-narrow { max-width: 896px; margin-left: auto; margin-right: auto; }
.rd-wide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.sd-wrap { width: 100%; line-height: 0; }
.sd { width: 100%; height: 36px; display: block; }
@media (min-width: 768px) { .sd { height: 60px; } }
.text-center { text-align: center; }

/* Headings & accents */
.rd-h2 {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  color: var(--brand-blue); font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12; letter-spacing: -0.01em;
}
.rd-h2-light { color: #fff; }
.rd-h3 { font-family: 'Outfit'; font-weight: 800; color: var(--brand-blue); font-size: clamp(22px, 2.8vw, 32px); line-height: 1.18; }
.rd-h3-light { color: #fff; }
.rd-title-wrap { margin-bottom: 18px; }
.rd-title-wrap-sm { margin-bottom: 14px; }
.rd-accent-line { display: block; width: 40px; height: 3px; background: var(--brand-yellow); border-radius: 9999px; margin-top: 10px; }
.rd-accent-center { margin-left: auto; margin-right: auto; }
.rd-section-title { margin-bottom: 40px; }
.rd-section-title-light { margin-bottom: 40px; }
.rd-section-title .rd-h2, .rd-section-title-light .rd-h2 { margin: 0; }

/* Prose */
.rd-p {
  color: var(--slate-700); font-size: 16px; line-height: 1.8; margin: 0 0 14px;
}
@media (min-width: 768px) { .rd-p { font-size: 17px; } }
.rd-p strong { color: var(--brand-blue-dark); font-weight: 700; }
.rd-p a { color: var(--brand-blue); text-decoration: underline; text-underline-offset: 3px; }
.rd-p a:hover { color: var(--brand-blue-dark); }
.rd-p-light { color: rgba(255,255,255,0.88); }
.rd-p-light a { color: var(--brand-yellow); }
.rd-quote {
  border-left: 3px solid rgba(1,50,149,0.2); padding-left: 14px; font-style: italic;
  color: var(--slate-700); margin-top: 12px;
}

.rd-list { margin: 14px 0; padding: 0; list-style: none; }
.rd-list li {
  position: relative; padding-left: 22px; color: var(--slate-700);
  font-size: 15px; line-height: 1.7; margin-bottom: 6px;
}
.rd-list li::before {
  content: "›"; position: absolute; left: 4px; top: -1px;
  color: var(--brand-yellow); font-weight: 800; font-size: 20px;
}
.rd-list a { color: var(--brand-blue); text-decoration: underline; }
.rd-list-sm li { font-size: 14px; }
.rd-list-light li { color: rgba(255,255,255,0.92); }

.rd-more {
  display: inline-block; margin-top: 16px;
  color: var(--brand-blue); font-family: 'Outfit'; font-weight: 700;
  font-size: 14px; transition: color .2s ease;
}
.rd-more:hover { color: var(--brand-yellow-dark); }

/* IntroBlock */
.rd-intro { background: #fff; border-left: 4px solid var(--brand-yellow); padding: 8px 0 8px 24px; }
@media (min-width: 768px) { .rd-intro { padding-left: 32px; } }

/* Feature block layout */
.rd-features-section { padding: 64px 0; background: #f8f9fa; }
@media (min-width: 768px) { .rd-features-section { padding: 96px 0; } }
.rd-fb {
  display: flex; flex-direction: column;
  gap: 32px; align-items: stretch; margin-bottom: 64px;
}
.rd-fb:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .rd-fb { flex-direction: row; gap: 48px; margin-bottom: 80px; }
  .rd-fb-right { flex-direction: row-reverse; }
}
.rd-fb-text { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.rd-fb-img { flex: 1; position: relative; }
.rd-fb-img-frame {
  position: relative; aspect-ratio: 4/3; border-radius: 18px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12); border: 1px solid rgba(0,0,0,0.06);
}
.rd-fb-img-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.rd-fb:hover .rd-fb-img-frame img { transform: scale(1.04); }
.rd-deco { position: absolute; display: none; pointer-events: none; }
@media (min-width: 768px) {
  .rd-deco { display: block; }
  .rd-deco-yellow {
    width: 64px; height: 64px; border-radius: 9999px;
    background: rgba(255,195,8,0.9); bottom: -12px; left: -12px;
  }
  .rd-deco-blue {
    width: 40px; height: 40px; border-radius: 9999px;
    border: 4px solid var(--brand-blue); top: -12px; right: -12px;
  }
}

/* Why strip (blue background) */
.rd-why-strip { background: var(--brand-blue); padding: 64px 0; position: relative; }
@media (min-width: 768px) { .rd-why-strip { padding: 80px 0; } }
.rd-why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (min-width: 1024px) { .rd-why-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.rd-why-card {
  position: relative; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 18px;
  padding: 20px; text-align: center;
  transition: transform .25s ease, background .25s ease;
}
@media (min-width: 768px) { .rd-why-card { padding: 24px; text-align: left; } }
.rd-why-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.rd-why-top {
  position: absolute; top: 0; left: 16px; right: 16px; height: 3px;
  background: var(--brand-yellow); border-radius: 0 0 9999px 9999px;
}
.rd-why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,195,8,0.2); color: var(--brand-yellow);
  display: grid; place-items: center; font-size: 22px;
  margin: 0 auto 16px;
}
@media (min-width: 768px) { .rd-why-icon { margin: 0 0 16px; } }
.rd-why-card h3 { font-family: 'Outfit'; font-weight: 800; color: #fff; font-size: 18px; }
.rd-why-card p { color: rgba(255,255,255,0.75); font-size: 14px; margin-top: 8px; line-height: 1.55; }

/* Vehicle icon grid */
.rd-veh-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 48px;
}
@media (min-width: 768px) { .rd-veh-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; } }
.rd-veh-card {
  background: #fff; border: 1px solid rgba(1,50,149,0.15);
  border-radius: 16px; padding: 16px; text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
@media (min-width: 768px) { .rd-veh-card { padding: 20px; } }
.rd-veh-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px);
  border-color: rgba(1,50,149,0.4);
}
.rd-veh-icon { font-size: 30px; margin-bottom: 8px; }
@media (min-width: 768px) { .rd-veh-icon { font-size: 36px; } }
.rd-veh-label { font-family: 'Outfit'; font-weight: 700; color: var(--brand-blue); font-size: 14px; }
@media (min-width: 768px) { .rd-veh-label { font-size: 15px; } }

.rd-veh-details {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 768px) { .rd-veh-details { grid-template-columns: repeat(2, 1fr); } }
.rd-veh-detail {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 16px; padding: 22px; height: 100%;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.rd-veh-detail:hover { border-color: rgba(255,195,8,0.6); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.rd-veh-detail-h { font-family: 'Outfit'; font-weight: 700; color: var(--brand-blue); font-size: 18px; }
@media (min-width: 768px) { .rd-veh-detail-h { font-size: 20px; } }
.rd-veh-detail .rd-accent-line { margin-top: 8px; margin-bottom: 12px; }

.rd-chip-list { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; }
.rd-chip {
  background: var(--surface); color: var(--brand-blue);
  font-family: 'Outfit'; font-weight: 700; font-size: 12px;
  padding: 4px 12px; border-radius: 9999px;
  border: 1px solid var(--slate-200);
}
@media (min-width: 768px) { .rd-chip { font-size: 13px; } }

/* Gallery strip */
.rd-gallery-section { background: #f8f9fa; padding: 64px 0; }
@media (min-width: 768px) { .rd-gallery-section { padding: 80px 0; } }
.rd-gal-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
@media (min-width: 768px) { .rd-gal-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1024px) { .rd-gal-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.rd-gal-grid .gallery-item {
  aspect-ratio: 1/1; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.rd-gallery-link {
  display: inline-block; margin-top: 24px;
  color: var(--brand-blue); font-family: 'Outfit'; font-weight: 700;
  font-size: 15px; transition: color .2s ease;
}
.rd-gallery-link:hover { color: var(--brand-yellow-dark); }

/* Coverage block (Bihor + Debrecen) */
.rd-coverage-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 1024px) { .rd-coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.rd-coverage-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 18px; padding: 24px; height: 100%;
}
@media (min-width: 768px) { .rd-coverage-card { padding: 32px; } }
.rd-coverage-blue { background: var(--brand-blue); color: #fff; border-color: transparent; }
.rd-coverage-blue .rd-h3 { color: #fff; }
.rd-coverage-blue .rd-p { color: rgba(255,255,255,0.88); }
.rd-coverage-blue .rd-p a { color: var(--brand-yellow); }
.rd-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.rd-chip-pill {
  background: rgba(1,50,149,0.05); color: var(--brand-blue);
  border: 1px solid rgba(1,50,149,0.15); border-radius: 9999px;
  font-family: 'Outfit'; font-weight: 700; font-size: 12px;
  padding: 6px 14px;
}
@media (min-width: 768px) { .rd-chip-pill { font-size: 14px; } }
.rd-chip-yellow {
  background: rgba(255,195,8,0.15); color: var(--brand-blue);
  border-color: rgba(255,195,8,0.4);
}

/* Detail card grid */
.rd-details-section { background: #f8f9fa; padding: 64px 0; }
@media (min-width: 768px) { .rd-details-section { padding: 96px 0; } }
.rd-detail-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 768px) { .rd-detail-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.rd-detail-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 18px; padding: 24px; height: 100%;
  transition: border-color .25s ease, box-shadow .25s ease;
}
@media (min-width: 768px) { .rd-detail-card { padding: 28px; } }
.rd-detail-card:hover {
  border-color: rgba(1,50,149,0.3); box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.rd-detail-h {
  font-family: 'Outfit'; font-weight: 800; color: var(--brand-blue);
  font-size: 20px; line-height: 1.2;
}
@media (min-width: 768px) { .rd-detail-h { font-size: 24px; } }
.rd-detail-card .rd-accent-line { margin-top: 8px; margin-bottom: 14px; }

/* Final section */
.rd-final-section { background: #f8f9fa; padding: 64px 0; }
@media (min-width: 768px) { .rd-final-section { padding: 80px 0; } }
.rd-final-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 24px; padding: 28px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}
@media (min-width: 768px) { .rd-final-card { padding: 40px; } }
.rd-final-grid {
  display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 20px;
}
@media (min-width: 640px) { .rd-final-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .rd-final-grid { grid-template-columns: repeat(3, 1fr); } }
.rd-final-pill {
  display: flex; align-items: flex-start; gap: 8px;
  background: var(--surface); border: 1px solid var(--slate-200);
  border-radius: 12px; padding: 12px;
}
.rd-final-pill i { color: var(--brand-yellow); margin-top: 4px; flex-shrink: 0; font-size: 12px; }
.rd-final-pill span { color: var(--slate-700); font-size: 14px; line-height: 1.5; }
@media (min-width: 768px) { .rd-final-pill span { font-size: 15px; } }

/* =========================================================================
   INNER PAGE REDESIGN (rd-page-hero, alternating sections, emergency banner)
   ========================================================================= */
.rd-page-hero {
  position: relative; background: var(--brand-blue); color: #fff;
  padding: 80px 0 96px; overflow: hidden;
}
.rd-page-hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
  opacity: 0.85;
}
.rd-page-hero-inner { position: relative; max-width: 1200px; }
.rd-breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 14px;
  color: rgba(255,255,255,0.8); margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
}
.rd-breadcrumb a { color: rgba(255,255,255,0.85); transition: color .15s ease; }
.rd-breadcrumb a:hover { color: var(--brand-yellow); }
.rd-breadcrumb .sep { color: rgba(255,255,255,0.5); }
.rd-breadcrumb .current { color: var(--brand-yellow); font-weight: 600; }
.rd-page-hero-h1 {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: clamp(28px, 5vw, 56px); line-height: 1.08; letter-spacing: -0.01em;
  color: #fff; max-width: 980px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.rd-page-hero-accent {
  display: block; width: 60px; height: 3px;
  background: var(--brand-yellow); border-radius: 9999px;
  margin: 18px 0 20px;
  animation: rd-accent-pulse 2.4s ease-in-out infinite;
}
@keyframes rd-accent-pulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(1.5); opacity: 0.7; }
}
.rd-page-hero-sub {
  color: rgba(255,255,255,0.88); max-width: 800px;
  font-size: 16px; line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
@media (min-width: 768px) { .rd-page-hero-sub { font-size: 18px; } }
.rd-page-hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px;
}

/* Feature block section wrappers */
.rd-fb-section { padding: 56px 0; }
@media (min-width: 768px) { .rd-fb-section { padding: 80px 0; } }
.rd-fb-white { background: #fff; }
.rd-fb-grey { background: #f8f9fa; }

/* Hidden-by-default alternating side reveal */
.rd-fb.reveal .rd-fb-text { opacity: 0; transform: translateX(-24px); transition: opacity .7s ease, transform .7s ease; }
.rd-fb.reveal .rd-fb-img { opacity: 0; transform: translateX(24px); transition: opacity .7s ease, transform .7s ease; }
.rd-fb.rd-fb-right.reveal .rd-fb-text { transform: translateX(24px); }
.rd-fb.rd-fb-right.reveal .rd-fb-img { transform: translateX(-24px); }
.rd-fb.reveal.visible .rd-fb-text,
.rd-fb.reveal.visible .rd-fb-img { opacity: 1; transform: translateX(0); }

/* Left blue border accent on text column */
.rd-fb-text { border-left: 3px solid rgba(1,50,149,0.15); padding-left: 18px; }
@media (min-width: 768px) { .rd-fb-text { padding-left: 24px; } }

/* Inline H3/H4 (inside feature blocks) */
.rd-inline-h3 {
  font-family: 'Outfit'; font-weight: 800; color: var(--brand-blue);
  font-size: 20px; margin: 18px 0 10px; line-height: 1.25;
}
@media (min-width: 768px) { .rd-inline-h3 { font-size: 22px; } }
.rd-inline-h4 {
  font-family: 'Outfit'; font-weight: 700; color: var(--brand-blue);
  font-size: 17px; margin: 14px 0 8px;
}
.rd-ol { padding-left: 22px; margin: 14px 0; color: var(--slate-700); }
.rd-ol li { font-size: 15px; line-height: 1.7; margin-bottom: 6px; }

/* Icon card grid (services / vehicle types) */
.rd-iconsec { background: #fff; }
.rd-iconcard-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 768px) { .rd-iconcard-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
@media (min-width: 1280px) {
  .rd-iconcard-grid { grid-template-columns: repeat(5, 1fr); }
}
.rd-iconcard {
  position: relative; background: #fff; border: 1px solid var(--slate-200);
  border-top: 4px solid var(--brand-blue);
  border-radius: 14px; padding: 18px 14px; text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
@media (min-width: 768px) { .rd-iconcard { padding: 24px 18px; } }
.rd-iconcard:hover {
  transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-top-color: var(--brand-yellow);
}
.rd-iconcard-emoji { font-size: 34px; margin-bottom: 8px; line-height: 1; }
@media (min-width: 768px) { .rd-iconcard-emoji { font-size: 40px; } }
.rd-iconcard-label {
  font-family: 'Outfit'; font-weight: 700; color: var(--brand-blue);
  font-size: 13px; line-height: 1.35;
}
@media (min-width: 768px) { .rd-iconcard-label { font-size: 14px; } }

/* FAQ section wrapper */
.rd-faq-section { background: #f8f9fa; padding: 56px 0; }
@media (min-width: 768px) { .rd-faq-section { padding: 80px 0; } }
.rd-faq-section .rd-section-title { margin-bottom: 36px; }

/* Emergency banner */
.rd-emergency-banner {
  background: var(--brand-yellow);
  color: var(--brand-blue);
  padding: 48px 0;
}
.rd-emergency-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .rd-emergency-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.rd-emergency-text h2 {
  font-family: 'Outfit'; font-weight: 800;
  font-size: clamp(24px, 3.4vw, 38px); line-height: 1.15;
  color: var(--brand-blue);
}
.rd-emergency-text p {
  font-family: 'Outfit'; font-weight: 600;
  font-size: 16px; margin-top: 6px;
  color: var(--brand-blue-dark);
}
@media (min-width: 768px) { .rd-emergency-text p { font-size: 18px; } }
.rd-emergency-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn-emergency-blue, .btn-emergency-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 9999px;
  font-family: 'Outfit'; font-weight: 700; font-size: 15px;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-emergency-blue {
  background: var(--brand-blue); color: #fff;
  box-shadow: 0 8px 18px rgba(1,50,149,0.25);
}
.btn-emergency-wa {
  background: var(--whatsapp); color: #fff;
  box-shadow: 0 8px 18px rgba(37,211,102,0.3);
}
.btn-emergency-blue:hover, .btn-emergency-wa:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* Tighten FAQ + page-hero on small screens */
@media (max-width: 640px) {
  .rd-page-hero { padding: 56px 0 64px; }
  .rd-fb-section { padding: 40px 0; }
}

/* =========================================================================
   GOOGLE REVIEWS section (homepage only)
   ========================================================================= */
.reviews-section {
  background: #fff;
  padding: 56px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) { .reviews-section { padding: 72px 20px; } }
.reviews-head { text-align: center; margin-bottom: 32px; }
.reviews-google-tag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.reviews-g-icon { width: 28px; height: 28px; }
.reviews-google-tag span {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  color: var(--brand-blue); font-size: 14px; letter-spacing: 0.04em;
}
@media (min-width: 768px) { .reviews-google-tag span { font-size: 16px; } }
.reviews-head .rd-h2 { display: block; }
.reviews-head .rd-accent-line { margin: 12px auto 0; }
.reviews-sub { color: var(--slate-500); margin-top: 12px; font-size: 15px; }

/* Carousel viewport hides overflow so the track can slide via transform */
.reviews-viewport {
  overflow: hidden;
  margin: 0 -16px;
}
@media (min-width: 768px) { .reviews-viewport { margin: 0; } }

.reviews-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.5s ease-out;
  will-change: transform;
  padding: 4px 16px;
}
@media (min-width: 768px) { .reviews-track { padding: 4px 0; } }

/* Carousel wrapper (arrows + track + dots) */
.reviews-carousel { position: relative; }
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 9999px;
  background: #fff; color: var(--brand-blue);
  border: 1px solid var(--slate-200);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  font-size: 28px; line-height: 1;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.reviews-arrow:hover { background: var(--brand-blue); color: #fff; transform: translateY(-50%) scale(1.06); }
.reviews-prev { left: -8px; }
.reviews-next { right: -8px; }
@media (min-width: 768px) {
  .reviews-arrow { display: flex; }
}
@media (min-width: 1024px) {
  .reviews-prev { left: -22px; }
  .reviews-next { right: -22px; }
}

.reviews-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 20px;
}
.reviews-dot {
  width: 8px; height: 8px; border-radius: 9999px;
  background: var(--slate-300);
  border: 0; padding: 0; cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.reviews-dot:hover { background: var(--slate-500); }
.reviews-dot.active { background: var(--brand-blue); width: 28px; }
.review-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 8px;
}
@media (min-width: 768px) { .review-slide { flex: 0 0 33.3333%; padding: 0 11px; } }

.review-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  height: 100%;
  transition: box-shadow .25s ease, transform .25s ease;
}
@media (min-width: 1024px) { .review-card { padding: 26px; } }
.review-slide:hover .review-card { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.review-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.review-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 12px;
}
.review-id { display: flex; align-items: center; gap: 12px; min-width: 0; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 9999px;
  display: grid; place-items: center;
  color: #fff; font-family: 'Outfit'; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.review-name {
  font-family: 'Outfit'; font-weight: 700; color: var(--brand-blue);
  font-size: 15px; line-height: 1.25;
}
.review-time { color: var(--slate-500); font-size: 12px; margin-top: 2px; }
.review-g-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.review-stars {
  color: var(--brand-yellow); font-size: 18px; letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.review-text {
  color: #555; font-size: 14px; line-height: 1.65;
  margin: 0;
}
@media (min-width: 768px) { .review-text { font-size: 15px; } }

.reviews-cta { text-align: center; margin-top: 28px; }
.btn-leave-review {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-yellow); color: var(--brand-blue);
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: 9999px;
  box-shadow: 0 6px 18px rgba(255,195,8,0.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-leave-review:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(255,195,8,0.5);
}
.reviews-link { margin-top: 12px; }
.reviews-link a {
  color: var(--brand-blue); font-size: 14px; transition: color .15s ease;
}
.reviews-link a:hover { text-decoration: underline; }

/* =========================================================================
   MOBILE-ONLY HOMEPAGE HERO ADJUSTMENTS (≤ 768px)
   Desktop (≥ 769px) untouched.
   ========================================================================= */
@media (max-width: 768px) {
  .home-hero .slides,
  .home-hero .slide,
  .home-hero .slide-overlay {
    display: none !important;
  }
  .home-hero {
    background-color: #013295 !important;
    background-image: repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      transparent 2px 12px
    ) !important;
  }
  .home-hero .pattern,
  .home-hero .gradient {
    display: none !important;
  }
  .home-hero .hero-inner {
    padding: 30px 20px !important;
  }
  .home-hero h1 {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .home-hero p.lead {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .home-hero .cta-row {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .home-hero .cta-row > a {
    width: 100% !important;
    justify-content: center !important;
  }
  .home-hero .counters {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .home-hero .counter-card {
    padding: 14px 12px !important;
  }
}
