/* CSS Design System - TV Repair Gujarat */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0f172a;
  --bg-dark-card: #1e293b;
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --text-muted-light: #94a3b8;
  
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --accent: #eab308;
  --accent-hover: #ca8a04;
  --success: #22c55e;
  --border-color: #e2e8f0;
  
  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Shadow & Transitions */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(2, 132, 199, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip; /* clip = no horizontal scroll, but does NOT break position:sticky */
  height: 100%;
  background-color: var(--bg-dark);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* clip = no horizontal scroll, but does NOT break position:sticky */
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
}

/* Typography (Mobile first scales) */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--bg-dark);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; margin-bottom: 0.75rem; text-align: center; }
h3 { font-size: 1.25rem; }
p { font-size: 0.95rem; color: var(--text-muted); }

.section-padding {
  padding: 3.5rem 1.25rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header & Nav (Mobile first) */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Deeper shadow when page has scrolled — JS adds this class */
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
  border-bottom-color: transparent;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
}

.logo svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.logo-text-highlight {
  color: var(--bg-dark);
}

/* Nav Menu Mobile */
.nav-menu {
  position: fixed;
  top: 60px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: var(--bg-primary);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;  /* Top-aligned — no more blank dead space */
  gap: 0;
  display: flex;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 1.5rem 6rem; /* bottom pad for mobile CTA bar */
  overflow-y: auto;
}

.nav-menu.active {
  left: 0;
}

.nav-link {
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
  background-color: rgba(2, 132, 199, 0.04);
}

/* Active page highlight */
.nav-link.active-page {
  color: var(--primary);
  font-weight: 700;
}

/* Mobile CTA inside nav */
.nav-cta-mobile {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 1.75rem;
  width: 100%;
  padding: 0;
}

.nav-cta-mobile a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.nav-cta-mobile a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.nav-cta-whatsapp {
  background-color: var(--success);
  color: #fff !important;
}

.nav-cta-call {
  background-color: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
}

/* Cities Dropdown Layout (Mobile First Base) */
.nav-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

/* Hidden by default on mobile — shown via .open class toggled by JS */
.dropdown-menu {
  display: none;
  width: 100%;
}

/* Mobile expanded state — scoped to max-767px so it NEVER touches desktop */
@media (max-width: 767px) {
  .dropdown-menu.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
  }

  .dropdown-menu.open a {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: none;
    background: transparent;
    transition: var(--transition);
  }

  .dropdown-menu.open a .menu-icon {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    flex-shrink: 0;
  }

  .dropdown-menu.open a:hover {
    background-color: rgba(2, 132, 199, 0.08);
    color: var(--primary);
  }
}

.dropdown-menu a {
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  background-color: var(--bg-secondary);
  font-weight: 600;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

/* Chevron indicator for Dropdowns — CSS-only */
.dropdown-chevron,
.cities-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.nav-dropdown.open .dropdown-chevron,
.nav-dropdown.open .cities-chevron {
  transform: rotate(225deg) translateY(2px);
}

.menu-toggle {
  display: block;
  background: none;
  cursor: pointer;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
  fill: var(--bg-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 100%);
  color: var(--text-light);
  padding: 4rem 1.25rem 3.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(2,132,199,0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-subtitle {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.hero h1 {
  color: var(--text-light);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--text-muted-light);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Trust Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

/* Booking Widget Form */
.booking-container {
  margin-top: 1.5rem;
  padding: 0 1.25rem;
  position: relative;
  z-index: 10;
}

.booking-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1.65rem;
  border: 1px solid var(--border-color);
}

.booking-card h3 {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--bg-dark);
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 0.7rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--bg-dark);
}

.form-control {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background-color: var(--bg-secondary);
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control option {
  color: var(--text-dark);
  background-color: var(--bg-primary);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.btn-submit {
  width: 100%;
  background-color: var(--success);
  color: var(--text-light);
  font-weight: 600;
  padding: 0.78rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  margin-top: 1rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.2);
}

.btn-submit:hover {
  background-color: #16a34a;
  transform: translateY(-1px);
}

.btn-submit svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Brands Grid */
.brands-section {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.brands-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: 1.5rem;
}

.brand-item {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  height: 65px;
  transition: var(--transition);
}

.brand-item span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.brand-badge {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

/* Original & Extended Brand Color Badges */
.brand-mi { background-color: #ff6700; }
.brand-oneplus { background-color: #f50915; }
.brand-samsung { background-color: #0c4da2; }
.brand-sony { background-color: #000000; }
.brand-lg { background-color: #a50034; }
.brand-vu { background-color: #4e148c; }
.brand-kodak { background-color: #eab308; color: #000000; }
.brand-thomson { background-color: #c8102e; }
.brand-sansui { background-color: #0d9488; }
.brand-bpl { background-color: #1e3a8a; }
.brand-micromax { background-color: #ea580c; }
.brand-haier { background-color: #0056b3; }
.brand-whirlpool { background-color: #0284c7; }
.brand-godrej { background-color: #16a34a; }
.brand-panasonic { background-color: #1d4ed8; }
.brand-bosch { background-color: #dc2626; }
.brand-kelvinator { background-color: #0284c7; }
.brand-kent { background-color: #0ea5e9; }
.brand-aquaguard { background-color: #2563eb; }
.brand-pureit { background-color: #0891b2; }
.brand-havells { background-color: #d97706; }
.brand-livpure { background-color: #059669; }
.brand-bluestar { background-color: #1e40af; }
.brand-daikin { background-color: #0284c7; }
.brand-voltas { background-color: #0369a1; }
.brand-lloyd { background-color: #7c3aed; }
.brand-carrier { background-color: #b91c1c; }
.brand-hitachi { background-color: #111827; }
.brand-mitsubishi { background-color: #dc2626; }
.brand-ifb { background-color: #2563eb; }

.brand-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* Services & Areas Sections */
#services, #areas {
  background-color: var(--bg-primary);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(2, 132, 199, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
}

/* Why Choose Us */
.why-section {
  background-color: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(2, 132, 199, 0.25);
  line-height: 1;
}

.why-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

/* How It Works */
.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
}

.step-num {
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-weight: 700;
}

/* Testimonials */
.reviews-section {
  background-color: var(--bg-secondary);
}

.reviews-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

.reviews-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.reviews-carousel-track .review-card {
  flex: 0 0 100%;
  max-width: 100%;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

.review-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-weight: 600;
  color: var(--bg-dark);
}

.reviewer-city {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.rating-stars {
  color: var(--accent);
  display: flex;
  gap: 0.1rem;
}

.rating-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-text {
  font-size: 0.9rem;
  font-style: italic;
}

/* Areas Served */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.area-badge {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
}

.area-badge:hover {
  border-color: var(--primary);
  background-color: rgba(2, 132, 199, 0.05);
}

/* FAQ Accordion */
.faq-container {
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  color: var(--bg-dark);
  font-size: 0.95rem;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  transition: var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  fill: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--bg-secondary);
}

.faq-answer-inner {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Footer styling */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 1.25rem 2rem 1.25rem;
  font-size: 0.9rem;
  margin-top: auto;
}

@media (max-width: 767px) {
  .footer {
    padding-bottom: 5.5rem; /* clears fixed mobile bottom CTA bar */
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted-light);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-copyright {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--text-muted-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-disclaimer {
  padding-top: 0.75rem;
  text-align: center;
  color: var(--text-muted-light);
  font-size: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
  opacity: 0.85;
}

/* Floating WhatsApp Badge */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--success);
  color: var(--text-light);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 99;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ==========================================================================
   Responsive Scaling (Media Queries)
   ========================================================================== */

/* Tablet Layout (min-width: 768px) */
@media (min-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  p { font-size: 1rem; }
  
  .section-padding {
    padding: 5rem 2.5rem;
  }
  
  /* Header Nav */
  .menu-toggle {
    display: none;
  }
  
  .nav-menu {
    position: static;
    height: auto;
    width: auto;
    flex-direction: row;
    border: none;
    padding: 0;
    gap: 1.5rem;
    background: none;
    overflow: visible;      /* clear mobile overflow-y: auto — kills the ↕ widget */
    left: 0 !important;    /* always visible, not off-screen */
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .nav-dropdown {
    position: relative;
    width: auto;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: flex;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    margin-top: 0;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    min-width: 240px;
    width: max-content;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
    flex-direction: column;
    gap: 0.25rem;
    z-index: 200;
    animation: dropdownFadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes dropdownFadeIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Invisible bridge to prevent hover collapse */
  .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    width: 100%;
    height: 0.75rem;
    background: transparent;
  }

  .dropdown-menu a {
    font-size: 0.92rem;
    padding: 0.65rem 0.85rem;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    text-align: left;
    white-space: nowrap;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
  }

  .dropdown-menu a .menu-icon {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    flex-shrink: 0;
    transition: transform 0.2s ease, fill 0.2s ease;
  }

  .dropdown-menu a:hover {
    background-color: rgba(2, 132, 199, 0.08);
    color: var(--primary);
    font-weight: 600;
    transform: translateX(3px);
  }

  .dropdown-menu a:hover .menu-icon {
    transform: scale(1.15);
  }
  
  /* Hero & Form side-by-side */
  .hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2.5rem;
    align-items: center;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero {
    padding: 3.5rem 2.5rem 4rem 2.5rem;
  }
  
  .hero p {
    margin-left: 0;
  }
  
  .hero-badges,
  .hero-stats {
    justify-content: flex-start;
    gap: 1rem 2.5rem;
  }

  .hero-stat {
    align-items: flex-start;
    text-align: left;
  }
  
  .booking-container {
    margin-top: 0;
    padding: 0;
  }
  
  .booking-card {
    padding: 1.5rem 1.65rem;
    max-width: 420px;
    margin-left: auto;
  }
  
  /* Brands grid spacing */
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Services & Info grids */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reviews-carousel-track .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
  
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

/* Desktop Layout (min-width: 1024px) */
@media (min-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .reviews-carousel-track .review-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
  
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Featured Service Card Styling
   ========================================================================== */
.featured-banner-section {
  padding: 2rem 1.25rem;
}

.featured-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
  transition: var(--transition);
}

.featured-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.featured-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.featured-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.featured-content h2 {
  text-align: left;
  margin-bottom: 0.25rem;
  font-size: 1.4rem;
}

.btn-primary-action {
  align-self: flex-start;
  background-color: var(--primary);
  color: var(--text-light);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-primary-action:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .featured-banner-section {
    padding: 3rem 2.5rem;
  }
  .featured-card {
    flex-direction: row;
    margin: 3rem 0 1rem 0;
  }
  .featured-image {
    flex: 1.2;
  }
  .featured-image img {
    height: 100%;
    min-height: 320px;
  }
  .featured-content {
    flex: 1;
    padding: 2.5rem;
    gap: 1rem;
  }
  .featured-content h2 {
    font-size: 1.8rem;
  }
}


/* ==========================================================================
   UX ENHANCEMENTS
   ========================================================================== */

/* --- Hero Stats Trust Strip --- */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0.5rem 2rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-stats {
    justify-content: flex-start;
    gap: 1rem 2.5rem;
  }

  .hero-stat {
    align-items: flex-start;
    text-align: left;
  }
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Sticky Mobile Bottom CTA Bar --- */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.10);
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: filter 0.2s ease;
}

.mobile-cta-bar a:active {
  filter: brightness(0.9);
}

.mobile-cta-bar .bar-whatsapp {
  background-color: #22c55e;
  color: #fff;
}

.mobile-cta-bar .bar-call {
  background-color: var(--primary);
  color: #fff;
}

.mobile-cta-bar svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Hide sticky bar on desktop — the floating WhatsApp already handles it */
@media (min-width: 768px) {
  .mobile-cta-bar {
    display: none;
  }

  /* Restore nav-link desktop style */
  .nav-link {
    font-size: 0.95rem;
    padding: 0;
    border-bottom: none;
    width: auto;
    text-align: left;
  }

  .nav-cta-mobile {
    display: none;
  }
}

/* Push the floating WhatsApp button up so it clears the bottom bar on mobile */
@media (max-width: 767px) {
  .whatsapp-float {
    display: none; /* replaced by sticky bar on mobile */
  }
}
