/* ==========================================================================
   Flow Mobility — Light Theme Rework
   Loaded LAST to override existing dark styles.
   Identity: Crimson #AC0540 | Gold #D4A843
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Custom Properties & Resets
   -------------------------------------------------------------------------- */
:root {
  --flow-primary: #AC0540;
  --flow-accent: #D4A843;
  --flow-white: #ffffff;
  --flow-light: #f8f9fa;
  --flow-lighter: #f1f3f5;
  --flow-text: #1a1a1a;
  --flow-text-secondary: #555;
  --flow-text-muted: #6b7280;
  --flow-border: #e5e7eb;
  --flow-whatsapp: #25D366;
  --flow-call: var(--flow-primary);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lift: 0 12px 36px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
}

/* --------------------------------------------------------------------------
   1. Banner Grid Section
   -------------------------------------------------------------------------- */
.banner-grid-section {
  background: var(--flow-white);
  padding: 5rem 0;
  overflow: hidden;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* --- Text side --- */
.banner-grid__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.banner-grid__text .section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(172, 5, 64, 0.08);
  color: var(--flow-primary);
  font-weight: 600;
  font-size: 0.85rem;
  width: fit-content;
}

.banner-grid__text .section__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--flow-text);
}

.banner-grid__text .section__title span {
  color: var(--flow-primary);
}

.banner-grid__text .section__desc {
  font-size: 1.1rem;
  color: var(--flow-text-secondary);
  line-height: 1.7;
  max-width: 540px;
}

/* Features pills */
.banner-grid__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.banner-grid__features .feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  background: rgba(172, 5, 64, 0.06);
  color: var(--flow-primary);
  font-size: 0.88rem;
  font-weight: 500;
}

.banner-grid__features .feature-pill i,
.banner-grid__features .feature-pill svg {
  font-size: 1rem;
  flex-shrink: 0;
}

/* CTA */
.banner-grid__text .btn-primary {
  background: var(--flow-primary);
  color: var(--flow-white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  width: fit-content;
}

.banner-grid__text .btn-primary:hover {
  background: #8e0435;
  box-shadow: 0 4px 20px rgba(172, 5, 64, 0.3);
}

/* --- Visual side --- */
.banner-grid__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-grid__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 1;
}

.banner-grid__image-frame::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: var(--flow-primary);
  border-radius: var(--radius-xl);
  transform: rotate(-4deg);
  z-index: -1;
  opacity: 0.12;
}

.banner-grid__image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Floating stat card */
.banner-grid__stat-card {
  position: absolute;
  inset-block-end: -1rem;
  inset-inline-end: -1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 2;
  text-align: center;
  min-width: 100px;
}

.banner-grid__stat-card .stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--flow-primary);
  line-height: 1.1;
}

.banner-grid__stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--flow-text-muted);
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   2. Service Cards
   -------------------------------------------------------------------------- */
.services-section {
  background: var(--flow-light);
  padding: 5rem 0;
}

/* Service Cards V2 — Premium with icon-title header row */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card-v2 {
  background: #fff;
  border: 1px solid #f1f3f5;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Colored left/right accent border */
.svc-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  width: 4px;
  background: var(--svc-color, var(--flow-primary));
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[dir="ltr"] .svc-card-v2::before {
  border-radius: 4px 0 0 4px;
}

.svc-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.svc-card-v2:hover::before {
  opacity: 1;
}

/* Header row: icon + title inline */
.svc-card-v2__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.svc-card-v2__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--svc-color, var(--flow-primary));
  background: color-mix(in srgb, var(--svc-color, var(--flow-primary)) 8%, transparent);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.svc-card-v2:hover .svc-card-v2__icon {
  transform: scale(1.1) rotate(-5deg);
  background: color-mix(in srgb, var(--svc-color, var(--flow-primary)) 14%, transparent);
}

.svc-card-v2__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}

.svc-card-v2__desc {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.7;
  flex: 1;
}

/* CTA link with arrow */
.svc-card-v2__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #25D366;
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #f5f5f5;
  transition: gap 0.25s ease, color 0.25s ease;
}

.svc-card-v2__cta:hover {
  color: #1ea952;
  gap: 10px;
}

.svc-card-v2__arrow {
  transition: transform 0.25s ease;
}

[dir="ltr"] .svc-card-v2__arrow {
  transform: rotate(180deg);
}

.svc-card-v2__cta:hover .svc-card-v2__arrow {
  transform: translateX(-4px);
}

[dir="ltr"] .svc-card-v2__cta:hover .svc-card-v2__arrow {
  transform: rotate(180deg) translateX(-4px);
}

/* --------------------------------------------------------------------------
   3. Enhanced Banner 2 / CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner--2 {
  position: relative;
  overflow: hidden;
}

.cta-banner__overlay--light {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.cta-banner--2 .container,
.cta-banner--2 > *:not(.cta-banner__overlay--light):not(img) {
  position: relative;
  z-index: 2;
}

.cta-banner--2 .cta-banner__layout {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.cta-banner--2 .cta-banner__text {
  flex: 0 0 60%;
}

.cta-banner--2 .cta-banner__action {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.cta-banner--2 .section__badge {
  background: rgba(172, 5, 64, 0.08);
  color: var(--flow-primary);
}

.cta-banner--2 .section__title {
  color: var(--flow-text);
  font-weight: 800;
}

.cta-banner--2 .section__desc {
  color: var(--flow-text-secondary);
}

/* Mini stat pills */
.cta-banner--2 .cta-stat-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cta-banner--2 .cta-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(172, 5, 64, 0.06);
  color: var(--flow-primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.cta-banner--2 .cta-stat-pill i {
  font-size: 0.95rem;
}

/* Buttons */
.cta-banner--2 .btn-primary {
  background: var(--flow-primary);
  color: var(--flow-white);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.cta-banner--2 .btn-primary:hover {
  background: #8e0435;
  box-shadow: 0 4px 20px rgba(172, 5, 64, 0.3);
}

.cta-banner--2 .btn-accent {
  background: var(--flow-accent);
  color: var(--flow-white);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.cta-banner--2 .btn-accent:hover {
  background: #b89236;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

/* --------------------------------------------------------------------------
   4. Fleet Cards
   -------------------------------------------------------------------------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.fleet-card {
  display: flex;
  background: var(--flow-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

/* Visual */
.fleet-card__visual {
  position: relative;
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
}

.fleet-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}

.fleet-card:hover .fleet-card__visual img {
  transform: scale(1.06);
}

.fleet-card__capacity-badge {
  position: absolute;
  inset-block-start: 1rem;
  inset-inline-start: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--flow-text);
  z-index: 2;
}

/* Content */
.fleet-card__content {
  width: 55%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.fleet-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--flow-text);
}

.fleet-card__desc {
  font-size: 0.9rem;
  color: var(--flow-text-secondary);
  line-height: 1.6;
}

/* Specs pills */
.fleet-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fleet-card__specs .spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--flow-lighter);
  font-size: 0.78rem;
  color: var(--flow-text-secondary);
  font-weight: 500;
}

.fleet-card__specs .spec-pill i {
  color: var(--flow-primary);
  font-size: 0.85rem;
}

/* Actions */
.fleet-card__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.fleet-card__actions .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--flow-whatsapp);
  color: var(--flow-white);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow var(--transition-fast);
}

.fleet-card__actions .btn-whatsapp:hover {
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.fleet-card__actions .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--flow-primary);
  color: var(--flow-white);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow var(--transition-fast);
}

.fleet-card__actions .btn-call:hover {
  box-shadow: 0 4px 20px rgba(172, 5, 64, 0.3);
}

/* --------------------------------------------------------------------------
   5. Fleet Compare Bar
   -------------------------------------------------------------------------- */
.fleet-compare {
  background: var(--flow-lighter);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1280px;
  margin: 2rem auto;
}

.fleet-compare__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--flow-white);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--flow-text-secondary);
}

.fleet-compare__item i {
  color: var(--flow-primary);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   6. Footer — Complete Light Theme Override
   Force all text to dark on light bg. Wave removed from HTML.
   -------------------------------------------------------------------------- */
.site-footer {
  background: #f8f9fa;
  color: #1a1a1a;
  border-top: 1px solid #e5e7eb;
}

/* Hide wave completely (removed from HTML but safety net) */
.footer__wave { display: none; }

.footer__main { padding: 3.5rem 0 2rem; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}

/* Force ALL footer text to dark colors */
.site-footer,
.site-footer p,
.site-footer li,
.site-footer span,
.site-footer a,
.site-footer div,
.footer__desc,
.footer__links a,
.footer__contact a,
.footer__contact span,
.footer__tagline {
  color: #444;
}

/* Tighter description width */
.footer__desc {
  max-width: 320px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.site-footer h3,
.site-footer h4,
.footer__heading,
.footer__brand-name {
  color: var(--flow-primary);
  font-weight: 700;
}

.footer__heading::after {
  background: var(--flow-accent);
}

.footer__tagline {
  background: rgba(172, 5, 64, 0.06);
  color: var(--flow-primary);
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
}

.site-footer a:hover,
.footer__links a:hover,
.footer__contact a:hover {
  color: var(--flow-primary);
}

/* Social icons */
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #444;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.footer__social a:hover {
  background: var(--flow-primary);
  color: #fff;
  border-color: var(--flow-primary);
}

/* Contact icons */
.footer__contact i {
  color: var(--flow-primary);
  background: rgba(172, 5, 64, 0.08);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.footer__contact a:hover i {
  transform: scale(1.1);
}

/* Policies row */
.footer__policies {
  border-top: 1px solid #e5e7eb;
  padding: 1rem 0;
  background: transparent;
}

.footer__policies a,
.footer__policies-dot {
  color: #6b7280;
}

.footer__policies a:hover {
  color: var(--flow-primary);
}

.footer__policies-dot {
  background: #cbd5e1;
}

/* Copyright */
.footer__bottom {
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem 0;
  background: transparent;
}

.footer__bottom p {
  color: #9ca3af;
  margin: 0;
}

.footer__credit,
.footer__credit a {
  color: #9ca3af;
}

.footer__credit a:hover {
  color: var(--flow-primary);
}

/* Floating buttons */
.floating-btn--whatsapp {
  background: var(--flow-whatsapp);
  color: #fff;
}

.floating-btn--phone {
  background: var(--flow-primary);
  color: #fff;
}

/* --------------------------------------------------------------------------
   7. Stats Section — Light Override
   -------------------------------------------------------------------------- */
.stats-section {
  background: var(--flow-light);
  padding: 5rem 0;
}

.stats-bg {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(172, 5, 64, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 168, 67, 0.04) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.75rem;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.stat-tile {
  background: var(--flow-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.stat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-tile__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  background: rgba(172, 5, 64, 0.08);
  color: var(--flow-primary);
}

.stat-tile__number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--flow-primary);
  line-height: 1.1;
}

.stat-tile__label {
  display: block;
  font-size: 0.9rem;
  color: var(--flow-text-secondary);
  margin-top: 0.35rem;
}

.stats-divider {
  height: 3px;
  width: 80px;
  margin: 2rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--flow-primary), var(--flow-accent));
}

/* --------------------------------------------------------------------------
   7b. Corporate Section (Banner 2 Rework)
   -------------------------------------------------------------------------- */
.corporate-section {
  background: var(--flow-white);
  padding: 5rem 0;
  overflow: hidden;
}

.corporate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Text side */
.corporate__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.corporate__text .section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--flow-text);
  line-height: 1.25;
}

.corporate__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--flow-text-secondary);
  max-width: 520px;
}

/* Highlight stats grid */
.corporate__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0.5rem 0;
}

.corporate__highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #f1f3f5;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.corporate__highlight:hover {
  border-color: rgba(172, 5, 64, 0.15);
  box-shadow: 0 2px 12px rgba(172, 5, 64, 0.06);
}

.corporate__highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(172, 5, 64, 0.08);
  color: var(--flow-primary);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.corporate__highlight strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--flow-primary);
  line-height: 1.1;
}

.corporate__highlight span {
  display: block;
  font-size: 0.78rem;
  color: var(--flow-text-muted);
  margin-top: 1px;
}

/* Actions */
.corporate__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Visual side */
.corporate__visual {
  position: relative;
}

.corporate__image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.corporate__image-wrap::before {
  content: "";
  position: absolute;
  inset: -16px;
  background: var(--flow-primary);
  border-radius: 28px;
  z-index: -1;
  opacity: 0.08;
  transform: rotate(-3deg);
}

.corporate__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

/* Floating badge */
.corporate__badge-float {
  position: absolute;
  inset-block-start: -12px;
  inset-inline-end: -12px;
  background: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--flow-primary);
  z-index: 2;
}

.corporate__badge-float i {
  color: var(--flow-accent);
  font-size: 1.1rem;
}

/* Outline dark button */
.btn--outline-dark {
  background: transparent;
  color: var(--flow-text);
  border: 2px solid #d1d5db;
}

.btn--outline-dark:hover {
  border-color: var(--flow-primary);
  color: var(--flow-primary);
  background: rgba(172, 5, 64, 0.04);
}

/* --------------------------------------------------------------------------
   7c. CTA Section — Light Override (Final CTA)
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, rgba(172,5,64,0.04) 0%, rgba(212,168,67,0.04) 100%);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--flow-primary), var(--flow-accent)) 1;
}

.cta-section__bg,
.cta-section__bg .cta-section__pattern {
  display: none;
}

.cta-section .cta-section__title,
.cta-section h2 {
  color: var(--flow-text);
}

.cta-section .cta-section__text,
.cta-section p {
  color: var(--flow-text-secondary);
}

.cta-section .btn--outline-light {
  background: transparent;
  color: var(--flow-text);
  border-color: #d1d5db;
}

.cta-section .btn--outline-light:hover {
  border-color: var(--flow-primary);
  color: var(--flow-primary);
  background: rgba(172, 5, 64, 0.04);
}

/* --------------------------------------------------------------------------
   7d. Floating Language Switcher
   RIGHT side in Arabic (RTL), LEFT side in English (LTR)
   -------------------------------------------------------------------------- */
.lang-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  left: auto;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--flow-primary);
  background: #fff;
  color: var(--flow-primary);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(172, 5, 64, 0.15), 0 0 0 4px rgba(172, 5, 64, 0.06);
  transition: all 0.3s ease;
}

/* English (LTR) → move to LEFT side */
[dir="ltr"] .lang-float {
  right: auto;
  left: 20px;
}

.lang-float:hover {
  background: var(--flow-primary);
  color: #fff;
  box-shadow: 0 6px 28px rgba(172, 5, 64, 0.3), 0 0 0 4px rgba(172, 5, 64, 0.1);
  transform: translateY(-3px);
}

.lang-float i {
  font-size: 1.1rem;
}

.lang-float__text {
  letter-spacing: 0;
}

/* Hide the old header lang-toggle */
.nav-actions .lang-toggle {
  display: none;
}

/* --------------------------------------------------------------------------
   7e. Header Logo Size Increase
   -------------------------------------------------------------------------- */
.nav-brand-logo {
  width: 60px;
  height: 60px;
}

@media (max-width: 575px) {
  .nav-brand-logo {
    width: 50px;
    height: 50px;
  }
}

/* --------------------------------------------------------------------------
   7f. Stats Section — Light Theme Cards
   -------------------------------------------------------------------------- */
.stats-section--light {
  background: #f8f9fa;
  padding: 5rem 0;
  position: relative;
}

.stats-section--light .section__header {
  margin-bottom: 3rem;
}

.stats-grid-light {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card-light {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #f1f3f5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-card-light:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(172, 5, 64, 0.08);
  border-color: rgba(172, 5, 64, 0.12);
}

.stat-card-light__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--stat-color, var(--flow-primary));
  background: color-mix(in srgb, var(--stat-color, var(--flow-primary)) 8%, transparent);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.stat-card-light:hover .stat-card-light__icon {
  transform: scale(1.1) rotate(-5deg);
}

.stat-card-light__number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--stat-color, var(--flow-primary));
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-card-light__label {
  font-size: 0.88rem;
  color: #6b7280;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   7g. Achievement Banner (Banner 3) — BG Image + Animated Counters
   -------------------------------------------------------------------------- */
.achieve-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}

.achieve-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.achieve-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.achieve-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(172,5,64,0.82) 0%, rgba(101,0,40,0.88) 50%, rgba(143,4,53,0.85) 100%);
}

.achieve-banner__content {
  position: relative;
  z-index: 2;
}

/* Header */
.achieve-banner__header {
  margin-bottom: 3rem;
}

.achieve-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.achieve-banner__title {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.achieve-banner__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-inline: auto;
}

/* Counter Cards — glass on dark bg */
.achieve-banner__counters {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.achieve-counter {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  min-width: 180px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.achieve-counter:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
}

.achieve-counter__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--flow-accent);
  background: rgba(212, 168, 67, 0.15);
  margin-bottom: 1rem;
}

.achieve-counter__num {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

.achieve-counter__label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.achieve-banner__cta {
  text-align: center;
}

/* --------------------------------------------------------------------------
   8. Global Light Theme Touches
   -------------------------------------------------------------------------- */

/* Dark section override for CTAs */
.section--dark.cta-section,
.cta-section {
  background: var(--flow-light);
  color: var(--flow-text);
}

.cta-section .section__badge {
  background: rgba(172, 5, 64, 0.08);
  color: var(--flow-primary);
  font-weight: 600;
}

.cta-section .section__title {
  color: var(--flow-text);
}

.cta-section .section__desc {
  color: var(--flow-text-secondary);
}

.cta-section .btn-primary {
  background: var(--flow-primary);
  color: var(--flow-white);
}

.cta-section .btn-accent {
  background: var(--flow-accent);
  color: var(--flow-white);
}

/* Accent border for final CTA */
.cta-section--final {
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--flow-primary), var(--flow-accent)) 1;
}

/* Badge pops on light bg */
.section__badge {
  background: rgba(172, 5, 64, 0.08);
  color: var(--flow-primary);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
}

/* Title underline */
.section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--flow-primary), var(--flow-accent));
  margin-top: 0.75rem;
}

/* Centered titles: center the underline */
.text-center .section__title::after,
.section--center .section__title::after {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   9. Responsive
   -------------------------------------------------------------------------- */

/* Tablet — max 1024px */
@media (max-width: 1024px) {
  .banner-grid {
    gap: 2.5rem;
  }

  .corporate__grid {
    gap: 2.5rem;
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-card__visual {
    width: 40%;
  }

  .fleet-card__content {
    width: 60%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__col:first-child {
    grid-column: 1 / -1;
  }

  .stats-grid-light {
    grid-template-columns: repeat(2, 1fr);
  }

  .achieve-banner__counters {
    gap: 1.25rem;
  }

  .achieve-counter {
    padding: 1.5rem 2rem;
    min-width: 150px;
  }
}

/* Mobile — max 768px */
@media (max-width: 768px) {
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .banner-grid__visual {
    order: -1;
  }

  .banner-grid__stat-card {
    inset-block-end: -0.5rem;
    inset-inline-end: 0.5rem;
    padding: 0.75rem 1rem;
  }

  /* Corporate section mobile */
  .corporate__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .corporate__visual {
    order: -1;
  }

  .corporate__highlights {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .corporate__highlight {
    padding: 0.7rem;
  }

  .corporate__actions {
    flex-direction: column;
  }

  .corporate__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .corporate__badge-float {
    inset-block-start: -8px;
    inset-inline-end: 8px;
    font-size: 0.78rem;
    padding: 0.5rem 0.9rem;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-card-v2 {
    padding: 1.5rem;
  }

  .achieve-banner {
    padding: 4rem 0;
  }

  .achieve-banner__counters {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .achieve-counter {
    width: 100%;
    max-width: 280px;
    padding: 1.5rem;
  }

  .achieve-counter__num {
    font-size: 2rem;
  }

  .fleet-card {
    flex-direction: column;
  }

  .fleet-card__visual {
    width: 100%;
    height: 220px;
  }

  .fleet-card__content {
    width: 100%;
    padding: 1.5rem;
  }

  .fleet-card__actions {
    flex-direction: column;
  }

  .fleet-card__actions .btn {
    justify-content: center;
    min-height: 44px;
  }

  .fleet-compare {
    padding: 1rem;
    gap: 0.6rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid-light {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card-light {
    padding: 1.25rem 1rem;
  }

  .stat-card-light__number {
    font-size: 1.75rem;
  }

  .lang-float {
    bottom: 90px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-tile {
    padding: 1.25rem;
  }

  .stat-tile__number {
    font-size: 1.75rem;
  }

  .banner-grid__text .section__title {
    font-size: 1.85rem;
  }

  /* Ensure touch targets */
  .svc-card__cta .btn-whatsapp,
  .fleet-card__actions .btn,
  .corporate__actions .btn,
  .footer__social a {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Small phones — max 480px */
@media (max-width: 480px) {
  .banner-grid-section {
    padding: 3rem 0;
  }

  .services-section {
    padding: 3rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .fleet-card__visual {
    height: 180px;
  }

  .banner-grid__features {
    flex-direction: column;
  }
}

/* --------------------------------------------------------------------------
   Mobile Layout Enhancements
   -------------------------------------------------------------------------- */

/* CTA buttons → 2x2 grid on mobile */
@media (max-width: 768px) {
  .hero__actions,
  .cta-section__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
  }

  .hero__actions .btn,
  .cta-section__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  .corporate__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    flex-direction: unset;
  }

  .corporate__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .fleet-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    flex-direction: unset;
  }

  .fleet-card__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
}

/* 3-card grids → 2 + 1 centered on tablet */
@media (max-width: 1024px) {
  .grid--3,
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Center the last odd item */
  .grid--3 > :last-child:nth-child(odd),
  .svc-grid > .svc-card-v2:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  /* On small mobile, single column — remove centering */
  .grid--3 > :last-child:nth-child(odd),
  .svc-grid > .svc-card-v2:last-child:nth-child(odd) {
    max-width: 100%;
  }
}

/* Footer mobile → brand centered top, links 2x2 below */
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* Brand col spans full width, centered */
  .footer__col:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer__col:first-child .footer__brand {
    justify-content: center;
  }

  .footer__col:first-child .footer__desc {
    margin-inline: auto;
  }

  .footer__col:first-child .footer__social {
    justify-content: center;
  }

  /* Quick Links + Contact sit side by side as 2 columns */
  .footer__col:nth-child(2),
  .footer__col:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .footer__col:first-child {
    grid-column: 1 / -1;
  }
}

/* --------------------------------------------------------------------------
   10. Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  .fleet-card:hover .fleet-card__visual img {
    transform: none;
  }

  .svc-card:hover .svc-card__icon {
    transform: none;
  }

  .svc-card:hover,
  .fleet-card:hover,
  .stat-tile:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Copyright — Single line with ABN credit
   -------------------------------------------------------------------------- */
.footer__copyright-line {
  font-size: 0.85rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.footer__abn-link {
  color: var(--flow-primary);
  font-weight: 700;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  margin-inline-start: 4px;
}

.footer__abn-link:hover {
  color: var(--flow-accent);
  text-shadow: 0 0 12px rgba(212, 168, 67, 0.3);
}

.footer__bottom-inner {
  text-align: center;
}

@media (max-width: 480px) {
  .footer__copyright-line {
    font-size: 0.78rem;
  }
}

/* --------------------------------------------------------------------------
   About Section — Full-width images on mobile
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .about-tabs__image {
    order: -1;
    max-height: none;
    border-radius: 0;
    margin-inline: calc(-1 * var(--container-padding, 20px));
    width: calc(100% + 2 * var(--container-padding, 20px));
    aspect-ratio: 16 / 9;
  }

  .about-tabs__image::before {
    display: none;
  }

  .about-tabs__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
}

@media (max-width: 575px) {
  .about-tabs__image {
    max-height: none;
    aspect-ratio: 4 / 3;
    margin-inline: calc(-1 * 16px);
    width: calc(100% + 32px);
  }
}

/* --------------------------------------------------------------------------
   Footer mobile — center links columns + copyright two rows
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .footer__col:nth-child(2),
  .footer__col:nth-child(3) {
    text-align: center;
  }

  .footer__col:nth-child(2) .footer__heading,
  .footer__col:nth-child(3) .footer__heading {
    text-align: center;
  }

  .footer__col:nth-child(2) .footer__heading::after,
  .footer__col:nth-child(3) .footer__heading::after {
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer__links,
  .footer__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__contact a {
    justify-content: center;
  }
}

/* Copyright — two rows */
.footer__copyright-line {
  flex-direction: column;
  gap: 4px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Footer fixes — ABN link + logo size
   -------------------------------------------------------------------------- */

/* Footer logo 50% bigger */
.site-footer .footer__brand img {
  width: 180px;
  height: 75px;
  max-width: 180px;
}

/* ABN link — always visible and clickable */
.footer__credit-row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

a.footer__abn-link,
.site-footer a.footer__abn-link {
  color: var(--flow-primary);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  transition: color 0.25s ease;
}

a.footer__abn-link:hover,
.site-footer a.footer__abn-link:hover {
  color: var(--flow-accent);
}

/* --------------------------------------------------------------------------
   Achieve Banner — lighter overlay, better counter cards, about images 80%
   -------------------------------------------------------------------------- */

/* Overlay: reduce opacity by ~30% (was 0.82-0.88, now 0.55-0.62) */
.achieve-banner__overlay {
  background: linear-gradient(135deg, rgba(172,5,64,0.55) 0%, rgba(101,0,40,0.62) 50%, rgba(143,4,53,0.58) 100%);
}

/* Counter cards — solid white cards instead of blurred glass */
.achieve-counter {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achieve-counter:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.achieve-counter__icon {
  background: rgba(172, 5, 64, 0.08);
  color: var(--flow-primary);
}

.achieve-counter__num {
  color: var(--flow-primary);
  text-shadow: none;
}

.achieve-counter__label {
  color: #6b7280;
}

/* Better layout: horizontal row with equal sizing */
.achieve-banner__counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* Mobile: stack */
@media (max-width: 768px) {
  .achieve-banner__counters {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  
  .achieve-counter {
    min-width: auto;
    padding: 1.75rem;
  }
}

/* --------------------------------------------------------------------------
   About images — 80% width, rounded, centered
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .about-tabs__image {
    width: 80%;
    margin-inline: auto;
    border-radius: var(--radius-xl, 24px);
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .about-tabs__image::before {
    display: block;
    opacity: 0.2;
    border-radius: calc(var(--radius-xl, 24px) + 6px);
  }

  .about-tabs__image img {
    border-radius: var(--radius-xl, 24px);
  }
}

@media (max-width: 575px) {
  .about-tabs__image {
    width: 80%;
    aspect-ratio: 4 / 3;
    margin-inline: auto;
  }
}

/* --------------------------------------------------------------------------
   Banner 1 — Enhanced feature pills (override + fix class name)
   -------------------------------------------------------------------------- */
.banner-grid__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.banner-grid__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #f1f3f5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.banner-grid__pill::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 4px;
  height: 100%;
  background: var(--flow-primary);
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[dir="ltr"] .banner-grid__pill::before {
  border-radius: 4px 0 0 4px;
}

.banner-grid__pill:hover {
  border-color: rgba(172, 5, 64, 0.12);
  box-shadow: 0 4px 20px rgba(172, 5, 64, 0.08);
  transform: translateY(-3px);
}

.banner-grid__pill:hover::before {
  opacity: 1;
}

.banner-grid__pill i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(172, 5, 64, 0.08);
  color: var(--flow-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.banner-grid__pill:hover i {
  background: var(--flow-primary);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

@media (max-width: 768px) {
  .banner-grid__features {
    gap: 0.65rem;
  }

  .banner-grid__pill {
    padding: 12px 16px;
    font-size: 0.82rem;
    gap: 8px;
    flex: 1 1 calc(50% - 0.65rem);
    min-width: 0;
  }

  .banner-grid__pill i {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .banner-grid__pill {
    flex: 1 1 100%;
  }
}

/* --------------------------------------------------------------------------
   Services Carousel — 3 desktop, 2 tablet, 1+peek mobile
   -------------------------------------------------------------------------- */

/* Hide old grid styles */
.svc-grid {
  display: none;
}

/* Carousel container */
.svc-carousel {
  overflow: hidden;
  position: relative;
}

.svc-carousel__track {
  display: flex;
  gap: 1.5rem;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.svc-carousel__track::-webkit-scrollbar {
  display: none;
}

/* Each card sizing — desktop: 3 per view */
.svc-carousel__track > .svc-card-v2 {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: calc((100% - 3rem) / 3);
  scroll-snap-align: start;
}

/* Card styles (keep existing svc-card-v2 styles) */
.svc-carousel .svc-card-v2 {
  background: #fff;
  border: 1px solid #f1f3f5;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.svc-carousel .svc-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  width: 4px;
  background: var(--svc-color, var(--flow-primary));
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[dir="ltr"] .svc-carousel .svc-card-v2::before {
  border-radius: 4px 0 0 4px;
}

.svc-carousel .svc-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.svc-carousel .svc-card-v2:hover::before {
  opacity: 1;
}

/* Nav controls */
.svc-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.svc-carousel__nav .carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: var(--flow-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.svc-carousel__nav .carousel__btn:hover {
  background: var(--flow-primary);
  color: #fff;
  border-color: var(--flow-primary);
  box-shadow: 0 4px 16px rgba(172, 5, 64, 0.2);
}

.svc-carousel__nav .carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.svc-carousel__nav .carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.svc-carousel__nav .carousel__dot--active {
  background: var(--flow-primary);
  width: 28px;
  border-radius: 999px;
}

/* Tablet: 2 per view */
@media (max-width: 1024px) {
  .svc-carousel__track > .svc-card-v2 {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
  }
}

/* Mobile: 1 + 10% peek of next card */
@media (max-width: 768px) {
  .svc-carousel__track {
    gap: 1rem;
    padding-inline-end: 10%;
  }

  .svc-carousel__track > .svc-card-v2 {
    flex: 0 0 85%;
    min-width: 85%;
  }

  .svc-carousel .svc-card-v2 {
    padding: 1.5rem;
  }

  .svc-carousel__nav .carousel__btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}

/* --------------------------------------------------------------------------
   Carousel track — JS controls scrolling, disable native snap
   -------------------------------------------------------------------------- */
.svc-carousel__track,
.carousel__track {
  scroll-snap-type: none;
  -webkit-overflow-scrolling: auto;
}

/* Fix partner card — only one name shown */
.partner-card__logo-wrap .partner-card__name {
  display: none;
}

/* --------------------------------------------------------------------------
   Banner 1 — CTA button narrower + features 2x1 centered
   -------------------------------------------------------------------------- */

/* Reduce WhatsApp CTA button width */
.banner-grid__cta.btn--lg {
  padding-inline: 1.75rem;
  font-size: 0.92rem;
  width: auto;
  align-self: flex-start;
}

/* Features: 2 columns + last one centered */
.banner-grid__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.banner-grid__features .banner-grid__pill:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 60%;
  margin-inline: auto;
}

@media (max-width: 480px) {
  .banner-grid__features {
    grid-template-columns: 1fr 1fr;
  }

  .banner-grid__features .banner-grid__pill:last-child:nth-child(odd) {
    max-width: 80%;
  }

  .banner-grid__cta.btn--lg {
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }
}
