/* ==========================================================================
   HINGLAJ AUTO CARE — PRODUCTION STYLESHEET
   Client Brand Theme: Royal Purple (#482F6E) & Crimson Red (#C8324C)
   ========================================================================== */

/* Design Tokens directly referenced from Client's Signboard Banner */
:root {
  --bg: #FAF9F6;
  --bg-alt: #F2EFE9;
  --ink: #1B1822;
  --steel: #5F5B6A;
  --line: #DFDCD4;

  /* Client Signboard Brand Colors */
  --brand-purple: #482F6E;
  --brand-purple-dark: #351F56;
  --brand-purple-light: #5E3E8E;
  --brand-purple-subtle: #F3EEFA;

  --accent: #C8324C;            /* Crimson Red from "AUTO CARE" & Car Silhouette */
  --accent-dark: #A62239;       /* Hover state */
  --accent-subtle: #FDF1F3;

  --font-heading: 'Barlow Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 6px;
  --max-w: 1200px;
  --transition: 150ms ease;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* Accessible Focus States */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -70px;
  left: 16px;
  background-color: var(--brand-purple);
  color: #FFFFFF;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 99999;
  text-decoration: none;
  transition: top var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: 1.45rem;
  font-weight: 600;
}

p {
  color: var(--steel);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container & Grid */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

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

.section-header {
  margin-bottom: 48px;
}

.section-header.text-center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 8px;
}

.section-desc {
  font-size: 1.1rem;
  margin-top: 12px;
  color: var(--steel);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #FFFFFF;
}

.btn-purple {
  background-color: var(--brand-purple);
  color: #FFFFFF;
  border-color: var(--brand-purple);
}

.btn-purple:hover {
  background-color: var(--brand-purple-dark);
  border-color: var(--brand-purple-dark);
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-outline-dark:hover {
  background-color: #FFFFFF;
  border-color: var(--brand-purple);
  color: var(--brand-purple);
}

/* ==========================================================================
   1. TOP BAR (Thin, Dark with Plum Undertone)
   ========================================================================== */
.top-bar {
  background-color: #171320;
  color: #E2DFD6;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar a:hover {
  color: #FFFFFF;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #10B981;
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: #10B981;
  border-radius: 50%;
}

/* ==========================================================================
   2. HEADER & STICKY NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background-color: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  padding: 12px 0;
}

.site-header.scrolled {
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(27, 24, 34, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-link:hover {
  color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--ink);
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 20px 24px;
  gap: 16px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  padding: 8px 0;
}

/* ==========================================================================
   3. HERO SECTION (Dark overlay over real garage image)
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #16131F;
  color: #FFFFFF;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px 0;
}

.hero-bg-wrapper {
  position: absolute;
  inset: -20px 0;
  width: 100%;
  height: calc(100% + 40px);
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 19, 31, 0.94) 0%, rgba(38, 26, 56, 0.88) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-headline {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: #E2DFD6;
  line-height: 1.55;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-trust-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #E2DFD6;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stars-svg {
  display: flex;
  color: #FBBF24;
}

/* ==========================================================================
   4. SERVICES SECTION (13 Cards grouped in 4 visual clusters)
   ========================================================================== */
.services-cluster {
  margin-bottom: 48px;
}

.services-cluster:last-child {
  margin-bottom: 0;
}

.cluster-title {
  font-size: 1.35rem;
  color: var(--brand-purple);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 6px 18px rgba(27, 24, 34, 0.06);
}

.service-icon-box {
  width: 44px;
  height: 44px;
  background-color: var(--brand-purple-subtle);
  border: 1px solid rgba(72, 47, 110, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple);
  margin-bottom: 16px;
}

.service-name {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.5;
}

/* ==========================================================================
   5. WHY CHOOSE US (4 Solid Pillars, No Invented Numbers)
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
}

.why-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--accent-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ==========================================================================
   6. HOW IT WORKS (4-Step Clean Timeline)
   ========================================================================== */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand-purple);
  line-height: 1;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ==========================================================================
   7. OUR GARAGE (Photo Gallery Grid & Lightbox)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #20242B;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-overlay-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(27, 24, 34, 0.88);
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(22, 19, 31, 0.94);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-img-wrapper {
  max-width: 900px;
  width: 100%;
  position: relative;
  text-align: center;
}

.lightbox-img-wrapper img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-caption {
  color: #FFFFFF;
  font-family: var(--font-heading);
  margin-top: 14px;
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   8. REVIEWS SECTION (5.0 Google Badge + Real Placeholders)
   ========================================================================== */
.reviews-summary-card {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.rating-big-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rating-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--brand-purple);
  line-height: 1;
}

.rating-stars-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #FBBF24;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-date {
  font-size: 0.8rem;
  color: var(--steel);
}

/* ==========================================================================
   9. FAQ ACCORDION (5 Clean Questions)
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-trigger:hover {
  color: var(--brand-purple);
}

.faq-icon {
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  display: none;
  padding: 0 24px 22px 24px;
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.6;
}

.faq-item.active .faq-content {
  display: block;
}

/* ==========================================================================
   10. CONTACT SECTION & WHATSAPP FORM
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

.contact-info-card {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-detail-row {
  margin-bottom: 24px;
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-purple);
  margin-bottom: 6px;
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-wrapper {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  background-color: #E2DFD6;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Form Container */
.form-card {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-control:focus {
  border-color: var(--brand-purple);
  background-color: #FFFFFF;
}

/* ==========================================================================
   11. FOOTER (Dark with Plum Undertone)
   ========================================================================== */
.site-footer {
  background-color: #171320;
  color: #A09BA8;
  padding: 72px 0 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer-desc {
  color: #9C97A5;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 360px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #726C7C;
}

/* ==========================================================================
   12. MOBILE STICKY BAR & FLOATING WHATSAPP
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 998;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-pulse 3s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 3px 8px rgba(0, 0, 0, 0.2);
  animation: none;
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: #FFFFFF;
  display: block;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 4px 16px rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 4px 16px rgba(37, 211, 102, 0.45);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 16px rgba(37, 211, 102, 0.45);
  }
}

.btn-whatsapp {
  background-color: #25D366 !important;
  color: #FFFFFF !important;
  border: 1px solid #20BA5A !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background-color: #20BA5A !important;
  color: #FFFFFF !important;
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #171320;
  padding: 10px 16px;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 12px;
}

/* ==========================================================================
   ANIMATIONS & SCROLL OBSERVER
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-bg-image {
    transform: none !important;
  }
}

/* 15 KM Service Coverage Badge Grid */
.coverage-box {
  margin: 32px 0 28px 0;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--brand-purple);
}

.coverage-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.coverage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background-color: var(--brand-purple-subtle);
  color: var(--brand-purple);
  flex-shrink: 0;
}

.coverage-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.coverage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background-color: var(--brand-purple-subtle);
  color: var(--brand-purple-dark);
  border: 1px solid rgba(72, 47, 110, 0.18);
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Mobile-First)
   ========================================================================== */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .top-bar-right {
    display: none;
  }
  .steps-timeline {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  .floating-whatsapp {
    display: none;
  }
  body {
    padding-bottom: 64px;
  }
}
