/* ==========================================================================
   Design System & Main Styles - FixPro 24x7 Home Appliance Service
   ========================================================================== */

:root {
  /* Core Color Palette */
  --primary-dark: #0b1f3a;     /* Deep Navy Trust Base */
  --primary: #0f4c81;          /* Corporate Cobalt Blue */
  --primary-hover: #0a365c;
  --primary-light: #e0f2fe;    /* Soft Ice Blue Accent */
  
  --accent: #0284c7;           /* Sky Electric Blue */
  --accent-light: #f0f9ff;
  
  --safety-green: #10b981;     /* Verified Green */
  --safety-green-light: #ecfdf5;
  --whatsapp-green: #25D366;
  
  --amber: #f59e0b;            /* Star Rating & Warning */
  
  /* Text Neutrals */
  --text-dark: #0f172a;        /* Slate 900 */
  --text-medium: #334155;      /* Slate 700 */
  --text-muted: #64748b;       /* Slate 500 */
  --text-light-muted: #94a3b8; /* Slate 400 */
  
  /* Backgrounds & Borders */
  --bg-white: #ffffff;
  --bg-light: #f8fafc;        /* Soft neutral background */
  --bg-subtle: #f1f5f9;       /* Subtle card background */
  --border-color: #e2e8f0;     /* Slate 200 */
  --border-focus: #38bdf8;
  --white: #ffffff;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.1), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 40px -8px rgba(15, 23, 42, 0.14), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 10px 30px -5px rgba(15, 76, 129, 0.08);
  --shadow-hover: 0 20px 35px -5px rgba(15, 76, 129, 0.16);
  
  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Global Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-narrow {
  max-width: 900px;
}

/* Section Header & Utility Styles */
.section {
  padding: 85px 0;
  position: relative;
}

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

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

.bg-subtle,
.section-bg-subtle {
  background-color: #fcfcfd;
}

.text-center {
  text-align: center !important;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(15, 76, 129, 0.12);
}

.badge svg,
.section-tag svg {
  width: 14px;
  height: 14px;
}

.required-star,
.form-label .req {
  color: #ef4444;
  font-weight: 700;
  margin-left: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #135996 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 76, 129, 0.35);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.42);
  color: var(--white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   HERO SECTION (Dynamic 4-Service Slider & Interactive Switcher)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 85px 0 55px 0;
  background-color: #0b1523;
  color: #ffffff;
  overflow: hidden;
  min-height: 670px;
}

/* Background Slides for 4 Services (Cross-fade Transition) */
.hero-slides-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 5s ease-out;
  pointer-events: none;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Ambient Radial Glow */
.hero-glow {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.15) 0%, rgba(14, 165, 233, 0.05) 50%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-container-rel {
  position: relative;
  z-index: 2;
}

/* Slide Content Container */
.hero-content-slider {
  min-height: 330px;
  position: relative;
  margin-bottom: 35px;
}

.hero-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
  max-width: 820px;
  z-index: 1;
}

.hero-slide-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 2;
}

@keyframes heroFadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Top Pill Badge */
.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(234, 88, 12, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.5);
  color: #fed7aa;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.2);
}

.hero-tag-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ea580c;
  box-shadow: 0 0 10px #f97316;
  flex-shrink: 0;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.75;
  }
}

/* Hero Main Bold Headline */
.hero-main-headline {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 820px;
}

.hero-accent-orange {
  color: #f97316;
  background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  font-weight: 900;
}

/* Subtext / Description */
.hero-main-subtext {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 680px;
  font-weight: 400;
}

/* Dual CTA Button Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

/* Primary Button */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 10px 25px -4px rgba(234, 88, 12, 0.55), 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-primary svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
  box-shadow: 0 15px 30px -4px rgba(234, 88, 12, 0.7);
  color: #ffffff;
}

/* Glass Pill Button with Arrow */
.hero-btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-arrow {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.hero-btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-btn-glass:hover .hero-btn-arrow {
  transform: translateX(4px);
}

/* Assurance Sub-note */
.hero-assurance-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 500;
}

.hero-assurance-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.25);
  color: #34d399;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

/* ==========================================================================
   4 SERVICES INTERACTIVE SWITCHER TABS & CONTROLS
   ========================================================================== */
.hero-service-tabs-wrapper {
  background: rgba(11, 21, 35, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 20px 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.hero-tabs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tabs-title-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tabs-badge {
  background: rgba(234, 88, 12, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.45);
  color: #fed7aa;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-tabs-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
}

/* Prev/Next & Dots Controls */
.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-nav-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-nav-arrow svg {
  width: 16px;
  height: 16px;
}

.hero-nav-arrow:hover {
  background: #ea580c;
  border-color: #f97316;
  transform: scale(1.08);
  color: #ffffff;
}

.hero-dots-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 22px;
  background: #ea580c;
  box-shadow: 0 0 10px rgba(234, 88, 12, 0.6);
}

/* Tabs Grid */
.hero-tabs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hero-tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 10px 14px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.hero-tab-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
}

.hero-tab-btn.active {
  background: rgba(234, 88, 12, 0.18);
  border-color: #f97316;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

.hero-tab-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.hero-tab-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-tab-btn:hover .hero-tab-thumb img {
  transform: scale(1.1);
}

.hero-tab-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.hero-tab-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.hero-tab-sub {
  font-size: 0.72rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-tab-price-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 2px 7px;
  border-radius: 6px;
  flex-shrink: 0;
}

.hero-tab-progress-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #ea580c;
}

.hero-tab-btn.active .hero-tab-progress-line {
  width: 100%;
  transition: width 5s linear;
}

/* ==========================================================================
   4 SERVICES IMAGE SHOWCASE GRID IN HERO
   ========================================================================== */
.hero-services-showcase {
  position: relative;
  z-index: 2;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-services-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.hero-services-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.hero-services-hint {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fed7aa;
  background: rgba(234, 88, 12, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hero-service-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.hero-service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(249, 115, 22, 0.65);
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.5), 0 0 25px rgba(249, 115, 22, 0.3);
}

.hero-service-img-wrapper {
  position: relative;
  height: 135px;
  overflow: hidden;
}

.hero-service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-service-card:hover .hero-service-img-wrapper img {
  transform: scale(1.08);
}

.hero-service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 21, 35, 0.85) 100%);
}

.hero-service-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 21, 35, 0.85);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fed7aa;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

.hero-service-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hero-service-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.25;
}

.hero-service-info p {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.4;
  margin-bottom: 12px;
}

.hero-service-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-service-price {
  font-size: 0.85rem;
  font-weight: 800;
  color: #38bdf8;
}

.hero-service-cta-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f97316;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease;
}

.hero-service-card:hover .hero-service-cta-text {
  color: #fb923c;
  transform: translateX(2px);
}

/* ==========================================================================
   STATS & TRUST BAR
   ========================================================================== */
.stats-bar-section {
  padding: 35px 0;
  background: var(--primary-dark);
  color: var(--white);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:last-child {
  border-right: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}

.stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ==========================================================================
   SERVICES SECTION (4 CARDS)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 76, 129, 0.25);
}

.service-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 240px;
  overflow: hidden;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image-box a {
  display: block;
  width: 100%;
  height: 100%;
}

.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image-box img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11, 31, 58, 0.88);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.service-doorstep-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(16, 185, 129, 0.95);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-doorstep-pill svg {
  width: 12px;
  height: 12px;
}

.service-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.service-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-circle svg {
  width: 22px;
  height: 22px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.93rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-problems-title {
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-problems-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}

.problem-item svg {
  width: 14px;
  height: 14px;
  color: var(--safety-green);
  flex-shrink: 0;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-pricing-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-pricing-hint strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.service-card-footer .btn {
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-footer .btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 76, 129, 0.2);
}

.why-icon,
.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.why-card:hover .why-icon,
.why-card:hover .why-icon-box {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.why-icon svg,
.why-icon-box svg {
  width: 26px;
  height: 26px;
}

.why-title,
.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.why-desc,
.why-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 20px;
}

.how-it-works-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: dashed 2px #cbd5e1;
  border-top: 2px dashed #cbd5e1;
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
  transition: all var(--transition-normal);
}

.step-number-circle span {
  font-size: 1.2rem;
  line-height: 1;
}

.step-card:hover .step-number-circle {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.step-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.step-icon-badge svg {
  width: 16px;
  height: 16px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 220px;
}

/* ==========================================================================
   BOOK HOME SERVICE SECTION
   ========================================================================== */
.booking-section {
  background: linear-gradient(135deg, #0b1f3a 0%, #0f4c81 100%);
  color: var(--white);
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: center;
}

.booking-info-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.booking-info-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
}

.booking-perks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.booking-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #f1f5f9;
}

.perk-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-check svg {
  width: 14px;
  height: 14px;
}

.quick-call-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quick-call-text span {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.quick-call-text strong {
  font-size: 1.25rem;
  color: var(--white);
  font-family: var(--font-heading);
}

/* Booking Form Box */
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-xl);
  color: var(--text-dark);
}

.form-header {
  margin-bottom: 24px;
}

.form-header-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.form-header-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-label .req {
  color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  background: var(--bg-light);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-input::placeholder,
.form-textarea::placeholder,
.form-select::placeholder {
  font-size: 0.84rem;
  color: #94a3b8;
  font-weight: 400;
  line-height: 1.4;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ==========================================================================
   EMERGENCY CTA SECTION
   ========================================================================== */
.emergency-section {
  padding: 55px 0;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.emergency-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.emergency-text {
  max-width: 620px;
}

.emergency-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.emergency-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 8px;
}

.emergency-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.emergency-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-emergency-call {
  background: var(--white);
  color: #0369a1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-emergency-call:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  color: #0369a1;
}

/* ==========================================================================
   CUSTOMER REVIEWS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 76, 129, 0.2);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  margin-bottom: 14px;
}

.review-stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

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

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.author-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.author-info span svg {
  width: 12px;
  height: 12px;
  color: var(--safety-green);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-accordion,
.faq-accordion-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

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

.faq-question-btn {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: color var(--transition-fast);
}

.faq-question-btn:hover {
  color: var(--accent);
}

.faq-chevron {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-normal), color var(--transition-fast);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px 22px;
}

.faq-answer p {
  font-size: 0.94rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   CONTACT & SERVICE AREA SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card-val {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-card-val a {
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.contact-card-val a:hover {
  color: var(--primary);
}

/* Service Area Tag List */
.service-areas-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.service-areas-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-areas-title svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.area-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-medium);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

/* Map Simulation Card */
.map-visual-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.map-embed-placeholder {
  height: 280px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-grid-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(#94a3b8 1px, transparent 1px),
    radial-gradient(#94a3b8 1px, #e2e8f0 1px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  opacity: 0.6;
}

.map-pin-pulse {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.4);
}

.map-pin-icon svg {
  width: 24px;
  height: 24px;
}

.map-pin-label {
  margin-top: 8px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.map-footer-details {
  padding: 20px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   SUCCESS MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 31, 58, 0.7);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 36px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--safety-green-light);
  color: var(--safety-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.12);
}

.modal-success-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 3;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-ref-box {
  background: var(--bg-light);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 24px;
}

.modal-ref-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.modal-ref-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   ANIMATIONS & UTILITIES
   ========================================================================== */
.fade-up-element {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   DEDICATED SERVICE LANDING PAGE STYLES (Common to all 4 Service Pages)
   ========================================================================== */

/* 1. Landing Hero */
.service-hero-section {
  position: relative;
  padding: 75px 0 65px 0;
  background: #08111e;
  color: #ffffff;
  overflow: hidden;
}

.service-hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.service-hero-grid {
  display: block;
  max-width: 880px;
  margin: 0 auto 0 0;
  padding-left: 160px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.service-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 88, 12, 0.16);
  border: 1px solid rgba(249, 115, 22, 0.45);
  color: #fed7aa;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  align-self: flex-start;
}

.service-hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  text-align: left;
  width: 100%;
}

.service-hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 760px;
  text-align: left;
}

.service-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
  width: 100%;
}

.service-hero-visual {
  position: relative;
}

.service-hero-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.6);
  border: 4px solid rgba(255, 255, 255, 0.12);
  background: #0f172a;
}

.service-hero-img-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.service-hero-img-card:hover img {
  transform: scale(1.04);
}

.service-hero-float-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 21, 35, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-float-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(234, 88, 12, 0.2);
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-float-icon svg {
  width: 18px;
  height: 18px;
}

.service-float-text strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.service-float-text span {
  font-size: 0.76rem;
  color: #94a3b8;
}

/* Trust Banner Strip */
.trust-strip {
  background: #0b1523;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 13px 0;
  position: relative;
  z-index: 5;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f1f5f9;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.3;
}

.trust-item svg {
  width: 17px;
  height: 17px;
  color: #f97316;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 14px;
  }
}

@media (max-width: 640px) {
  .trust-strip {
    padding: 10px 0;
  }
  .trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 10px;
  }
  .trust-item {
    font-size: 0.76rem;
    gap: 6px;
    line-height: 1.25;
  }
  .trust-item svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 440px) {
  .trust-strip {
    padding: 8px 0;
  }
  .trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 8px;
  }
  .trust-item {
    font-size: 0.72rem;
    gap: 5px;
    line-height: 1.2;
  }
  .trust-item svg {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 360px) {
  .trust-strip-inner {
    gap: 6px 6px;
  }
  .trust-item {
    font-size: 0.68rem;
    gap: 4px;
  }
  .trust-item svg {
    width: 12px;
    height: 12px;
  }
}

/* 2. Common Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: #ea580c;
  box-shadow: 0 15px 30px -5px rgba(234, 88, 12, 0.12);
}

.problem-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.problem-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
}

.problem-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.problem-desc {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.problem-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: #ea580c;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.problem-card:hover .problem-cta-btn {
  background: #ea580c;
  color: #ffffff;
  border-color: #ea580c;
}

/* 3. Detailed Services Grid */
.detailed-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.detailed-service-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.detailed-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 16px 32px rgba(15, 76, 129, 0.1);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-box svg {
  width: 26px;
  height: 26px;
}

.service-price-pill {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0284c7;
  background: #e0f2fe;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.detailed-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.detailed-service-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-checks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-checks-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-medium);
  font-weight: 500;
}

.service-checks-list li svg {
  width: 15px;
  height: 15px;
  color: #10b981;
  flex-shrink: 0;
}

/* 4. Appliance Types Section */
.appliance-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.appliance-type-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.appliance-type-card:hover {
  transform: translateY(-4px);
  border-color: #ea580c;
  box-shadow: 0 12px 25px rgba(234, 88, 12, 0.12);
}

.type-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #fff7ed;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.type-card-icon svg {
  width: 30px;
  height: 30px;
}

.appliance-type-card h4 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.appliance-type-card p {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* 5. Supported Brands Chips */
.brands-wrapper {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

.brand-chip {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.brand-chip span.brand-status {
  font-size: 0.68rem;
  font-weight: 600;
  color: #10b981;
}

.brand-chip:hover {
  background: #fff;
  border-color: #ea580c;
  color: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(234, 88, 12, 0.12);
}

/* 6. 5-Step Process */
.process-5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-step-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(234, 88, 12, 0.3);
  line-height: 1;
  margin-bottom: 12px;
}

.process-step-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.process-step-item p {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* 7. Dedicated Booking Section */
.dedicated-booking-box {
  background: linear-gradient(135deg, #0b1523 0%, #132238 100%);
  border-radius: 28px;
  padding: 45px 40px;
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dedicated-booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.booking-box-left h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.booking-box-left p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 24px;
}

.booking-box-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-box-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fed7aa;
}

.booking-box-feat svg {
  width: 18px;
  height: 18px;
  color: #34d399;
}

.dedicated-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  color: var(--text-dark);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* 8. Service Reviews */
.service-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-review-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.review-stars-row {
  color: #f59e0b;
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.review-stars-row svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.service-review-text {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.review-author-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.review-author-info span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.verified-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  background: #d1fae5;
  padding: 2px 8px;
  border-radius: 9999px;
}

/* 9. Localities & Service Areas */
.localities-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.locality-pill {
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.locality-pill::before {
  content: '📍';
  font-size: 0.8rem;
}

/* 10. Bottom Conversion CTA Strip */
.bottom-cta-banner {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  border-radius: 24px;
  padding: 45px 36px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 20px 45px rgba(234, 88, 12, 0.35);
  margin-top: 40px;
}

.bottom-cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.bottom-cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 28px auto;
}

.bottom-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-white-pill {
  background: #ffffff;
  color: #ea580c;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white-pill:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.btn-dark-glass-pill {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-dark-glass-pill:hover {
  background: rgba(15, 23, 42, 0.7);
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-main-headline {
    font-size: 2.75rem;
  }
  .service-hero-title {
    font-size: 2.6rem;
  }
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detailed-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .appliance-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .process-5-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dedicated-booking-grid {
    grid-template-columns: 1fr;
  }
  .service-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-tabs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card:nth-child(2) {
    border-right: none;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 868px) {
  .hero-section,
  .service-hero-section {
    padding: 60px 0 45px 0;
  }
  .hero-main-headline {
    font-size: 2.35rem;
  }
  .service-hero-title {
    font-size: 2.2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-5-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-it-works-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .how-it-works-timeline::before {
    display: none;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .hero-section,
  .service-hero-section {
    padding: 20px 0 16px 0;
    min-height: auto !important;
  }
  .hero-bg-slide {
    background-position: center 25% !important;
    background-size: cover !important;
    transform: none !important;
  }
  .hero-main-headline,
  .service-hero-title {
    font-size: 1.95rem;
  }
  .service-hero-grid {
    padding-left: 0;
  }
  .hero-main-subtext,
  .service-hero-sub {
    font-size: 0.98rem;
  }
  .hero-cta-group,
  .service-hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-btn-primary,
  .hero-btn-glass,
  .service-hero-ctas .btn {
    width: 100%;
  }
  .service-hero-img-card img {
    height: 190px !important;
    max-height: 190px !important;
    object-fit: cover !important;
  }
  .service-image-box {
    aspect-ratio: auto !important;
    height: 135px !important;
    max-height: 135px !important;
  }
  .hero-service-img-wrapper {
    height: 95px !important;
    max-height: 95px !important;
  }
  .problems-grid {
    grid-template-columns: 1fr;
  }
  .detailed-services-grid {
    grid-template-columns: 1fr;
  }
  .appliance-types-grid {
    grid-template-columns: 1fr;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-5-grid {
    grid-template-columns: 1fr;
  }
  .service-reviews-grid {
    grid-template-columns: 1fr;
  }
  .dedicated-booking-box {
    padding: 24px 18px;
    border-radius: 20px;
  }
  .dedicated-form-card {
    padding: 20px 16px;
  }
  .bottom-cta-banner {
    padding: 32px 16px;
    margin-left: -20px !important;
    margin-right: -20px !important;
    width: calc(100% + 40px) !important;
    border-radius: 0 !important;
  }
  .bottom-cta-banner h2 {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }
  .bottom-cta-banner p {
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
    margin-bottom: 16px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .bottom-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 8px !important;
  }
  .btn-white-pill,
  .btn-dark-glass-pill {
    width: 100%;
    justify-content: center;
    padding: 10px 18px !important;
    font-size: 0.82rem !important;
  }
  .hero-service-tabs-wrapper {
    padding: 16px 14px;
    border-radius: 18px;
  }
  .hero-tabs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .hero-tab-btn {
    padding: 8px 10px;
    gap: 8px;
    border-radius: 12px;
  }
  .hero-tab-thumb {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
  .hero-tab-name {
    font-size: 0.78rem;
  }
  .hero-tab-sub {
    font-size: 0.62rem;
  }
  .hero-tab-price-badge {
    font-size: 0.62rem;
    padding: 1.5px 5px;
    border-radius: 5px;
  }
  .hero-tabs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-tabs-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .hero-tabs-badge {
    font-size: 0.68rem;
    padding: 3px 8px;
  }
  .hero-tabs-title {
    font-size: 0.88rem;
    line-height: 1.3;
  }
  .hero-slider-controls {
    width: 100%;
    justify-content: space-between;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
  }
  .stat-card {
    border-right: none;
    border-bottom: none;
    padding: 8px 6px;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .how-it-works-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }
  .step-number-circle {
    width: 44px !important;
    height: 44px !important;
    border-width: 2px !important;
    margin-bottom: 10px !important;
    box-shadow: 0 4px 10px rgba(15, 76, 129, 0.1) !important;
  }
  .step-number-circle span {
    font-size: 0.9rem !important;
  }
  .step-icon-badge {
    width: 24px !important;
    height: 24px !important;
    margin-bottom: 6px !important;
  }
  .step-icon-badge svg {
    width: 12px !important;
    height: 12px !important;
  }
  .step-title {
    font-size: 0.88rem !important;
    margin-bottom: 4px !important;
  }
  .step-desc {
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
    max-width: 100% !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .booking-form-card {
    padding: 24px 18px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .emergency-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .emergency-ctas {
    width: 100%;
    justify-content: center;
  }
  .emergency-ctas .btn {
    width: 100%;
  }
}

/* ==========================================================================
   ABOUT US & CONTACT US DEDICATED STYLES
   ========================================================================== */

/* Page Generic Hero (Used for About & Contact) */
.page-hero-section {
  position: relative;
  padding: 75px 0 60px 0;
  background: #08111e;
  color: #ffffff;
  overflow: hidden;
}

.page-hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.20;
  z-index: 0;
}

.page-hero-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto 0 0;
  padding-left: 0;
  position: relative;
  z-index: 2;
  text-align: left;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 88, 12, 0.16);
  border: 1px solid rgba(249, 115, 22, 0.45);
  color: #fed7aa;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  align-self: flex-start;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-align: left;
  width: 100%;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 740px;
  text-align: left;
}

.page-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  width: 100%;
}

/* About Intro Narrative Layout */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-intro-text p {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.about-highlight-text strong {
  display: block;
  font-size: 1rem;
  color: var(--primary-dark);
  font-family: var(--font-heading);
}

.about-highlight-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-intro-card {
  background: linear-gradient(135deg, #0b1523 0%, #172a45 100%);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.about-intro-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-card-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about-intro-card h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.about-intro-card p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 22px;
}

.about-card-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-card-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #fed7aa;
  font-weight: 600;
}

.about-card-checklist li svg {
  width: 18px;
  height: 18px;
  color: #34d399;
  flex-shrink: 0;
}

/* Mission & Vision Section */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.mv-card.vision-card::before {
  background: linear-gradient(90deg, #ea580c 0%, #f97316 100%);
}

.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
}

.vision-card .mv-icon {
  background: #fff7ed;
  color: #ea580c;
}

.mv-icon svg {
  width: 30px;
  height: 30px;
}

.mv-card-tag {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* Customer Experience Section */
.customer-exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.exp-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #ea580c;
}

.exp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff7ed;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.exp-icon svg {
  width: 24px;
  height: 24px;
}

.exp-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.exp-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   CONTACT US PAGE SPECIFIC STYLES
   ========================================================================== */

/* 4 Contact Cards Grid */
.contact-cards-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-card-v2 {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-normal);
  position: relative;
}

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

.contact-card-v2-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.contact-card-v2-icon.icon-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #10b981;
}

.contact-card-v2-icon.icon-hours {
  background: #fff7ed;
  color: #ea580c;
}

.contact-card-v2-icon svg {
  width: 26px;
  height: 26px;
}

.contact-card-v2-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card-v2 h3 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-card-v2 p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.contact-card-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--bg-light);
  color: var(--primary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.contact-card-v2:hover .contact-card-v2-btn {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.contact-card-v2-btn.btn-whatsapp-theme {
  color: #059669;
}

.contact-card-v2:hover .contact-card-v2-btn.btn-whatsapp-theme {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
}

/* Contact Main Section (Form + Sidebar) */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
}

.contact-form-header {
  margin-bottom: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-form-header .badge {
  align-self: flex-start;
}

.contact-form-header h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
  text-align: left;
  line-height: 1.2;
}

.contact-form-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.55;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-sidebar-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.contact-sidebar-box.dark-box {
  background: linear-gradient(135deg, #0b1523 0%, #132238 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-sidebar-title svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--primary);
}

.dark-box .contact-sidebar-title {
  color: #ffffff;
}

.dark-box .contact-sidebar-title svg {
  color: #38bdf8;
}

.contact-sidebar-box p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.55;
  margin-bottom: 16px;
}

.contact-sidebar .btn {
  padding: 11px 16px;
  font-size: 0.88rem;
  border-radius: 10px;
}

.contact-sidebar .btn svg {
  width: 16px;
  height: 16px;
}

.contact-perks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-perks-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.dark-box .contact-perks-list li {
  color: rgba(255, 255, 255, 0.88);
}

.contact-perks-list li svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
}

/* Quick 4-Appliance Service Booking Grid */
.quick-booking-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-booking-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.quick-booking-card:hover {
  transform: translateY(-5px);
  border-color: #ea580c;
  box-shadow: 0 12px 25px rgba(234, 88, 12, 0.12);
}

.quick-booking-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff7ed;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all var(--transition-fast);
}

.quick-booking-card:hover .quick-booking-icon {
  background: #ea580c;
  color: #ffffff;
  transform: scale(1.08);
}

.quick-booking-icon svg {
  width: 28px;
  height: 28px;
}

.quick-booking-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.quick-booking-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 14px;
}

.quick-booking-badge {
  font-size: 0.76rem;
  font-weight: 800;
  color: #0284c7;
  background: #e0f2fe;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

/* Styled Map Placeholder Container */
.map-container-styled {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-interactive-mock {
  height: 340px;
  background: linear-gradient(135deg, #0b1523 0%, #1a2f4c 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: #ffffff;
}

.map-mock-badge {
  background: rgba(234, 88, 12, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fed7aa;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.map-mock-pin {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ea580c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 0 0 10px rgba(234, 88, 12, 0.25);
  animation: pulsePin 2s infinite ease-in-out;
}

@keyframes pulsePin {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(234, 88, 12, 0.25);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(234, 88, 12, 0.45);
  }
}

.map-mock-pin svg {
  width: 28px;
  height: 28px;
}

.map-interactive-mock h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.map-interactive-mock p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto;
}

.map-footer-bar {
  padding: 18px 24px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.map-footer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-medium);
}

.map-footer-info svg {
  width: 18px;
  height: 18px;
  color: #ea580c;
}

/* Service Area Tag Clusters */
.coverage-cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.city-coverage-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.city-coverage-card h4 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.city-coverage-card h4 svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.city-localities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.city-locality-chip {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-medium);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Form status feedback */
.form-submit-loading {
  opacity: 0.65;
  pointer-events: none;
}

/* ==========================================================================
   HERO BUTTONS, BADGES & UTILITIES (Used across all pages)
   ========================================================================== */
.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ea580c;
  display: inline-block;
  box-shadow: 0 0 8px rgba(234, 88, 12, 0.8);
}

.hero-accent-orange {
  color: #f97316;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.35);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.48);
  color: #ffffff;
}

.hero-btn-primary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.hero-btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.hero-btn-arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.hero-btn-glass:hover .hero-btn-arrow {
  transform: translateX(4px);
}

.hero-assurance-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero-assurance-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.25);
  color: #34d399;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

/* ==========================================================================
   5-STEP PROCESS TIMELINE
   ========================================================================== */
.process-5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.process-step-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.process-step-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #ea580c;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #ea580c;
  line-height: 1;
  margin-bottom: 14px;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  padding: 6px 12px;
  border-radius: 10px;
  display: inline-block;
}

.process-step-item h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.process-step-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   FORM CONTROLS (Contact Form & Booking Forms)
   ========================================================================== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ==========================================================================
   BOTTOM CTA BANNER & PILL BUTTONS
   ========================================================================== */
.bottom-cta-banner {
  background: linear-gradient(135deg, #0b1523 0%, #162942 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 50px 36px;
  text-align: center;
  color: #ffffff;
  margin: 30px auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.bottom-cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bottom-cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.bottom-cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 650px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.bottom-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-white-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: all var(--transition-normal);
}

.btn-white-pill:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  color: var(--primary);
}

.btn-dark-glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.btn-dark-glass-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(15, 76, 129, 0.08);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-dark);
  gap: 16px;
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question-btn {
  color: var(--primary);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--transition-normal), color var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px 24px;
}

.faq-answer p {
  font-size: 0.96rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .process-5-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .customer-exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards-4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .quick-booking-4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coverage-cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
  .section-header,
  .section-header.text-center {
    text-align: left !important;
    margin: 0 0 24px 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .section-header .badge,
  .section-header .section-tag {
    align-self: flex-start;
    font-size: 0.72rem;
    padding: 4px 10px;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
  }
  .section-title {
    font-size: 1.6rem;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    text-align: left;
  }
  .section-subtitle {
    font-size: 0.86rem;
    line-height: 1.45;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-intro-text p {
    font-size: 0.86rem;
    line-height: 1.55;
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 14px;
  }
  .about-intro-text .section-title {
    font-size: 1.45rem;
    line-height: 1.24;
    margin-bottom: 12px;
  }
  .about-highlights-list {
    gap: 12px;
    margin-top: 18px;
  }
  .about-highlight-item {
    gap: 10px;
  }
  .about-highlight-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .about-highlight-icon svg {
    width: 16px;
    height: 16px;
  }
  .about-highlight-text strong {
    font-size: 0.90rem;
  }
  .about-highlight-text span {
    font-size: 0.78rem;
    text-align: justify;
  }
  .about-intro-card {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .about-card-badge {
    font-size: 0.68rem;
    padding: 3px 9px;
    margin-bottom: 10px;
  }
  .about-intro-card h3 {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .about-intro-card p {
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 14px;
  }
  .about-card-checklist {
    gap: 8px;
  }
  .about-card-checklist li {
    font-size: 0.78rem;
    gap: 7px;
  }
  .about-card-checklist li svg {
    width: 15px;
    height: 15px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    border-radius: 14px;
  }
  .service-image-box {
    aspect-ratio: auto !important;
    height: 130px !important;
    max-height: 130px !important;
  }
  .hero-service-img-wrapper {
    height: 90px !important;
    max-height: 90px !important;
  }
  .service-hero-img-card img {
    height: 180px !important;
    max-height: 180px !important;
    object-fit: cover !important;
  }
  .service-badge {
    font-size: 0.66rem;
    padding: 3.5px 8px;
    top: 10px;
    left: 10px;
  }
  .service-doorstep-pill {
    font-size: 0.64rem;
    padding: 3px 8px;
    bottom: 10px;
    right: 10px;
  }
  .service-content {
    padding: 16px 14px;
  }
  .service-header {
    margin-bottom: 8px;
    gap: 8px;
  }
  .service-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .service-icon-circle svg {
    width: 16px;
    height: 16px;
  }
  .service-title {
    font-size: 1.15rem;
    margin: 0;
  }
  .service-desc {
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .service-problems-title {
    font-size: 0.72rem;
    margin-bottom: 6px;
  }
  .service-problems-list {
    gap: 5px 8px;
    margin: 0 0 14px 0;
  }
  .problem-item {
    font-size: 0.74rem;
    gap: 5px;
  }
  .problem-item svg {
    width: 12px;
    height: 12px;
  }
  .service-card-footer {
    padding-top: 12px;
    gap: 8px;
  }
  .service-pricing-hint {
    font-size: 0.72rem;
  }
  .service-pricing-hint strong {
    font-size: 0.82rem;
  }
  .service-card-footer .btn {
    padding: 7px 12px;
    font-size: 0.78rem;
    white-space: nowrap;
    border-radius: 8px;
    gap: 4px;
    flex-shrink: 0;
  }
  .service-card-footer .btn svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mv-card {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .mv-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 1.2rem;
  }
  .mv-icon svg {
    width: 20px;
    height: 20px;
  }
  .mv-card-tag {
    font-size: 0.68rem;
    margin-bottom: 3px;
  }
  .mv-card h3 {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .mv-card p {
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-word;
  }
  .customer-exp-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .exp-card {
    padding: 16px 14px;
    border-radius: 12px;
  }
  .exp-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    margin-bottom: 10px;
  }
  .exp-icon svg {
    width: 18px;
    height: 18px;
  }
  .exp-card h4 {
    font-size: 0.94rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }
  .exp-card p {
    font-size: 0.76rem;
    line-height: 1.4;
  }
  .stats-bar-section {
    padding: 24px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px 10px !important;
  }
  .stat-card {
    border-right: none !important;
    border-bottom: none !important;
    padding: 10px 8px;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
  }
  .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .stat-icon svg {
    width: 18px;
    height: 18px;
  }
  .stat-number {
    font-size: 1.25rem;
    line-height: 1.1;
    margin-bottom: 2px;
  }
  .stat-label {
    font-size: 0.70rem;
    line-height: 1.25;
  }
  .contact-cards-4-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .contact-card-v2 {
    padding: 18px 15px;
    border-radius: 14px;
  }
  .contact-card-v2-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    margin-bottom: 12px;
  }
  .contact-card-v2-icon svg {
    width: 22px;
    height: 22px;
  }
  .contact-card-v2-label {
    font-size: 0.68rem;
    margin-bottom: 2px;
  }
  .contact-card-v2 h3 {
    font-size: 1.08rem;
    margin-bottom: 4px;
  }
  .contact-card-v2 p {
    font-size: 0.82rem;
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .contact-card-v2-btn {
    padding: 8px 12px;
    font-size: 0.82rem;
    border-radius: 8px;
    gap: 5px;
  }
  .contact-card-v2-btn svg {
    width: 15px;
    height: 15px;
  }
  #contact-form-section {
    padding-left: 0;
    padding-right: 0;
  }
  #contact-form-section > .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
  .contact-form-wrapper {
    padding: 22px 16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
    width: 100%;
  }
  .contact-sidebar {
    padding: 0 16px;
  }
  .contact-sidebar-box {
    padding: 18px 14px;
    border-radius: 12px;
  }
  .contact-sidebar-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
    gap: 8px;
  }
  .contact-sidebar-title svg {
    width: 20px;
    height: 20px;
  }
  .contact-sidebar-box p {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .contact-sidebar .btn {
    padding: 10px 14px;
    font-size: 0.82rem;
    border-radius: 8px;
    gap: 6px;
  }
  .contact-sidebar .btn svg {
    width: 14px;
    height: 14px;
  }
  .contact-perks-list li {
    font-size: 0.82rem;
    gap: 8px;
  }
  .contact-perks-list li svg {
    width: 15px;
    height: 15px;
  }
  .contact-form-header {
    margin-bottom: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form-header .badge {
    font-size: 0.7rem;
    padding: 3.5px 9px;
    margin-bottom: 6px;
    align-self: flex-start;
  }
  .contact-form-header h2 {
    font-size: 1.45rem;
    line-height: 1.22;
    margin-bottom: 6px;
    text-align: left;
  }
  .contact-form-header p {
    font-size: 0.84rem;
    line-height: 1.48;
    text-align: left;
  }
  .form-label {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
  .form-input,
  .form-select,
  .form-textarea {
    padding: 10px 12px;
    font-size: 0.84rem;
    border-radius: 8px;
  }
  .form-input::placeholder,
  .form-textarea::placeholder,
  .form-select::placeholder {
    font-size: 0.78rem;
    color: #94a3b8;
  }
  .form-textarea {
    min-height: 64px;
  }
  #contactSubmitBtn,
  .contact-form-wrapper .btn,
  .btn-primary.btn-block,
  .btn-lg {
    padding: 11px 16px;
    font-size: 0.86rem;
    border-radius: 10px;
    gap: 6px;
  }
  #contactSubmitBtn svg,
  .contact-form-wrapper .btn svg {
    width: 15px;
    height: 15px;
  }
  .form-note {
    font-size: 0.74rem;
    margin-top: 8px;
    line-height: 1.4;
  }
  .quick-booking-4-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .quick-booking-card {
    padding: 12px 8px;
    border-radius: 12px;
  }
  .quick-booking-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    margin-bottom: 6px;
  }
  .quick-booking-icon svg {
    width: 17px;
    height: 17px;
  }
  .quick-booking-card h3 {
    font-size: 0.88rem;
    margin-bottom: 2px;
  }
  .quick-booking-card p {
    font-size: 0.68rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }
  .quick-booking-badge {
    font-size: 0.66rem;
    padding: 3px 8px;
    white-space: nowrap;
  }
  .coverage-cities-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .city-coverage-card {
    padding: 16px 14px;
    border-radius: 12px;
  }
  .city-coverage-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    gap: 6px;
  }
  .city-coverage-card h4 svg {
    width: 17px;
    height: 17px;
  }
  .city-locality-chip {
    font-size: 0.76rem;
    padding: 3.5px 9px;
  }
  .map-container-styled {
    border-radius: 14px;
  }
  .map-interactive-mock {
    height: auto;
    min-height: 200px;
    padding: 22px 14px;
  }
  .map-mock-badge {
    font-size: 0.68rem;
    padding: 3px 10px;
    margin-bottom: 10px;
  }
  .map-mock-pin {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    box-shadow: 0 0 0 6px rgba(234, 88, 12, 0.25);
  }
  .map-mock-pin svg {
    width: 22px;
    height: 22px;
  }
  .map-interactive-mock h3 {
    font-size: 1.15rem;
    line-height: 1.25;
    margin-bottom: 5px;
  }
  .map-interactive-mock p {
    font-size: 0.80rem;
    line-height: 1.45;
  }
  .map-footer-bar {
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px;
    align-items: center;
    text-align: center;
  }
  .map-footer-info {
    font-size: 0.78rem;
    gap: 6px;
  }
  .map-footer-info svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }
  .faq-accordion,
  .faq-accordion-wrapper {
    gap: 10px;
  }
  .faq-item {
    border-radius: 12px;
  }
  .faq-question-btn {
    padding: 14px 16px;
    font-size: 0.94rem;
    line-height: 1.35;
    gap: 10px;
  }
  .faq-chevron {
    width: 17px;
    height: 17px;
  }
  .faq-answer {
    padding: 0 16px;
  }
  .faq-item.active .faq-answer {
    padding: 0 16px 14px 16px;
  }
  .faq-answer p {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .hero-section,
  .service-hero-section,
  .page-hero-section {
    padding: 18px 0 14px 0 !important;
    min-height: auto !important;
  }
  .hero-content-slider {
    min-height: 350px !important;
    margin-bottom: 12px !important;
  }
  .hero-bg-slide {
    background-position: center 25% !important;
    background-size: cover !important;
    transform: none !important;
  }
  .hero-slide-item,
  .service-hero-grid,
  .service-hero-content,
  .page-hero-grid {
    text-align: left !important;
    align-items: flex-start !important;
    padding-left: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .hero-slide-item,
  .service-hero-content,
  .page-hero-grid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
 
  .hero-tag-badge,
  .service-hero-badge,
  .page-hero-badge {
    font-size: 0.8rem;
    padding: 5px 12px;
    margin-bottom: 8px;
    gap: 5px;
    letter-spacing: 0.03em;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
  }
  .hero-tag-badge .hero-tag-dot,
  .service-hero-badge .hero-tag-dot,
  .page-hero-badge .hero-tag-dot {
    width: 6px;
    height: 6px;
  }
  .hero-main-headline,
  .service-hero-title,
  .page-hero-title {
    font-size: 2.0rem;
    line-height: 1.18;
    margin-bottom: 8px;
    text-align: left;
    letter-spacing: -0.02em;
    max-width: 100%;
  }
  .hero-main-subtext,
  .service-hero-sub,
  .page-hero-sub {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 12px;
    text-align: justify !important;
    text-justify: inter-word;
    max-width: 100%;
  }
  .hero-cta-group,
  .service-hero-ctas,
  .page-hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 7px;
    margin-bottom: 12px;
    align-items: stretch;
    display: flex;
  }
  .hero-btn-primary,
  .hero-btn-glass,
  .page-hero-ctas .hero-btn-primary,
  .page-hero-ctas .hero-btn-glass {
    width: 100%;
    justify-content: center;
    padding: 11px 18px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
  .hero-btn-primary svg {
    width: 15px;
    height: 15px;
  }
  .hero-assurance-note {
    font-size: 0.68rem;
    text-align: left;
    align-self: flex-start;
    line-height: 1.4;
  }
  .why-card {
    padding: 22px 18px !important;
  }
  .why-icon,
  .why-icon-box {
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
  }
  .why-icon svg,
  .why-icon-box svg {
    width: 22px !important;
    height: 22px !important;
  }
  .why-title,
  .why-card-title {
    font-size: 1.15rem !important;
    margin-bottom: 6px !important;
  }
  .why-desc,
  .why-card-desc {
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .problem-card {
    padding: 18px 14px !important;
    border-radius: 12px !important;
  }
  .problem-card-header {
    gap: 10px !important;
    margin-bottom: 10px !important;
  }
  .problem-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
  }
  .problem-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .problem-title {
    font-size: 1.02rem !important;
  }
  .problem-desc {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .problem-cta-btn {
    padding: 8px 12px !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
  }
  .detailed-service-card {
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }
  .service-card-top {
    margin-bottom: 12px !important;
  }
  .service-icon-box {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
  }
  .service-icon-box svg {
    width: 20px !important;
    height: 20px !important;
  }
  .service-price-pill {
    font-size: 0.72rem !important;
    padding: 3px 8px !important;
  }
  .detailed-service-card h3 {
    font-size: 1.08rem !important;
    margin-bottom: 6px !important;
  }
  .detailed-service-card p {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .service-checks-list {
    margin-bottom: 12px !important;
    gap: 6px !important;
  }
  .service-checks-list li {
    font-size: 0.78rem !important;
    gap: 6px !important;
  }
  .service-checks-list li svg {
    width: 13px !important;
    height: 13px !important;
  }
  .dedicated-booking-box {
    margin-left: -20px !important;
    margin-right: -20px !important;
    width: calc(100% + 40px) !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    padding: 24px 16px !important;
  }
  .booking-box-left h3 {
    font-size: 1.6rem !important;
    margin-bottom: 8px !important;
  }
  .booking-box-left p {
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
    margin-bottom: 16px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .booking-box-features {
    gap: 8px !important;
    margin-bottom: 16px !important;
  }
  .booking-box-feat {
    font-size: 0.8rem !important;
    gap: 8px !important;
  }
  .booking-box-feat svg {
    width: 14px !important;
    height: 14px !important;
  }
  .dedicated-form-card {
    padding: 18px 12px !important;
    border-radius: 12px !important;
  }
  .localities-tags-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 14px !important;
  }
  .locality-pill {
    padding: 7px 10px !important;
    font-size: 0.8rem !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
  }
  .emergency-section {
    padding: 36px 0 !important;
  }
  .emergency-title {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }
  .emergency-desc {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .emergency-tag {
    font-size: 0.72rem !important;
    padding: 3px 10px !important;
  }
  .emergency-ctas .btn {
    padding: 10px 14px !important;
    font-size: 0.84rem !important;
  }
  .review-card,
  .service-review-card {
    padding: 20px 16px !important;
  }
  .review-stars,
  .review-stars-row {
    margin-bottom: 10px !important;
    gap: 3px !important;
  }
  .review-stars svg,
  .review-stars-row svg {
    width: 15px !important;
    height: 15px !important;
  }
  .review-quote,
  .service-review-text {
    font-size: 0.86rem !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .review-author,
  .service-review-author {
    padding-top: 10px !important;
    gap: 10px !important;
  }
  .author-avatar {
    width: 38px !important;
    height: 38px !important;
    font-size: 0.88rem !important;
  }
  .author-info strong,
  .review-author-info strong {
    font-size: 0.86rem !important;
  }
  .author-info span,
  .review-author-info span {
    font-size: 0.70rem !important;
  }
  .verified-pill {
    padding: 3px 8px !important;
    font-size: 0.65rem !important;
  }
}

@media (max-width: 640px) {
  .process-5-grid {
    grid-template-columns: 1fr;
  }
  .customer-exp-grid {
    grid-template-columns: 1fr;
  }
  .quick-booking-4-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  .coverage-cities-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .contact-form-wrapper {
    padding: 20px 14px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .bottom-cta-banner {
    padding: 24px 16px;
    margin: 20px auto;
    border-radius: 16px;
  }
  .bottom-cta-banner h2 {
    font-size: 1.35rem;
    line-height: 1.22;
    margin-bottom: 8px;
  }
  .bottom-cta-banner p {
    font-size: 0.82rem;
    line-height: 1.42;
    margin-bottom: 16px;
  }
  .bottom-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .btn-white-pill,
  .btn-dark-glass-pill {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.84rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 36px 0;
  }
  .section-header,
  .section-header.text-center {
    margin: 0 0 18px 0;
  }
  .section-header .badge,
  .section-header .section-tag {
    font-size: 0.68rem;
    padding: 3px 8px;
    margin-bottom: 6px;
  }
  .section-title {
    font-size: 1.35rem;
    line-height: 1.24;
    margin-bottom: 6px;
  }
  .section-subtitle {
    font-size: 0.80rem;
    line-height: 1.42;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .about-intro-text p {
    font-size: 0.80rem;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 10px;
  }
  .about-intro-text .section-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .about-highlights-list {
    gap: 10px;
    margin-top: 14px;
  }
  .about-highlight-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }
  .about-highlight-icon svg {
    width: 14px;
    height: 14px;
  }
  .about-highlight-text strong {
    font-size: 0.84rem;
  }
  .about-highlight-text span {
    font-size: 0.74rem;
    text-align: justify;
  }
  .about-intro-card {
    padding: 18px 14px;
    border-radius: 12px;
  }
  .about-intro-card h3 {
    font-size: 1.10rem;
  }
  .about-intro-card p {
    font-size: 0.76rem;
    text-align: justify;
  }
  .about-card-checklist li {
    font-size: 0.74rem;
  }
  .services-grid {
    gap: 14px;
  }
  .service-card {
    border-radius: 12px;
  }
  .service-image-box {
    aspect-ratio: auto !important;
    height: 115px !important;
    max-height: 115px !important;
  }
  .hero-service-img-wrapper {
    height: 80px !important;
    max-height: 80px !important;
  }
  .service-hero-img-card img {
    height: 160px !important;
    max-height: 160px !important;
    object-fit: cover !important;
  }
  .service-badge {
    font-size: 0.62rem;
    padding: 3px 7px;
  }
  .service-doorstep-pill {
    font-size: 0.60rem;
    padding: 2.5px 7px;
  }
  .service-content {
    padding: 14px 12px;
  }
  .service-icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }
  .service-icon-circle svg {
    width: 14px;
    height: 14px;
  }
  .service-title {
    font-size: 1.05rem;
  }
  .service-desc {
    font-size: 0.74rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .service-problems-list {
    gap: 4px 6px;
    margin: 0 0 12px 0;
  }
  .problem-item {
    font-size: 0.70rem;
    gap: 4px;
  }
  .problem-item svg {
    width: 11px;
    height: 11px;
  }
  .service-card-footer {
    padding-top: 10px;
    gap: 6px;
  }
  .service-pricing-hint {
    font-size: 0.68rem;
  }
  .service-pricing-hint strong {
    font-size: 0.78rem;
  }
  .service-card-footer .btn {
    padding: 6px 10px;
    font-size: 0.74rem;
    white-space: nowrap;
    border-radius: 7px;
    gap: 3px;
    flex-shrink: 0;
  }
  .service-card-footer .btn svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }
  .mission-vision-grid {
    gap: 14px;
  }
  .mv-card {
    padding: 18px 14px;
    border-radius: 12px;
  }
  .mv-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  .mv-icon svg {
    width: 18px;
    height: 18px;
  }
  .mv-card-tag {
    font-size: 0.64rem;
    margin-bottom: 2px;
  }
  .mv-card h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }
  .mv-card p {
    font-size: 0.78rem;
    line-height: 1.45;
    text-align: justify;
    text-justify: inter-word;
  }
  .customer-exp-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .exp-card {
    padding: 14px 10px;
    border-radius: 10px;
  }
  .exp-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  .exp-icon svg {
    width: 16px;
    height: 16px;
  }
  .exp-card h4 {
    font-size: 0.86rem;
    margin-bottom: 3px;
  }
  .exp-card p {
    font-size: 0.70rem;
    line-height: 1.35;
  }
  .stats-bar-section {
    padding: 20px 0;
  }
  .stats-grid {
    gap: 10px 8px !important;
  }
  .stat-card {
    padding: 8px 6px;
    gap: 8px;
    border-radius: 8px;
  }
  .stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
  }
  .stat-icon svg {
    width: 16px;
    height: 16px;
  }
  .stat-number {
    font-size: 1.15rem;
  }
  .stat-label {
    font-size: 0.66rem;
  }
  .contact-cards-4-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .contact-card-v2 {
    padding: 14px 12px;
    border-radius: 12px;
  }
  .contact-card-v2-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .contact-card-v2-icon svg {
    width: 18px;
    height: 18px;
  }
  .contact-card-v2-label {
    font-size: 0.64rem;
    margin-bottom: 2px;
  }
  .contact-card-v2 h3 {
    font-size: 0.96rem;
    margin-bottom: 3px;
  }
  .contact-card-v2 p {
    font-size: 0.76rem;
    margin-bottom: 10px;
    line-height: 1.35;
  }
  .contact-card-v2-btn {
    padding: 7px 8px;
    font-size: 0.76rem;
    border-radius: 8px;
    gap: 4px;
  }
  .contact-card-v2-btn svg {
    width: 13px;
    height: 13px;
  }
  #contact-form-section > .container {
    padding-left: 0;
    padding-right: 0;
  }
  .contact-form-wrapper {
    padding: 18px 14px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .contact-sidebar {
    padding: 0 12px;
  }
  .contact-sidebar-box {
    padding: 14px 12px;
    border-radius: 10px;
  }
  .contact-sidebar-title {
    font-size: 0.96rem;
    margin-bottom: 8px;
    gap: 6px;
  }
  .contact-sidebar-title svg {
    width: 18px;
    height: 18px;
  }
  .contact-sidebar-box p {
    font-size: 0.78rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .contact-sidebar .btn {
    padding: 9px 12px;
    font-size: 0.78rem;
    border-radius: 8px;
    gap: 5px;
  }
  .contact-sidebar .btn svg {
    width: 13px;
    height: 13px;
  }
  .contact-perks-list li {
    font-size: 0.78rem;
    gap: 6px;
  }
  .contact-perks-list li svg {
    width: 14px;
    height: 14px;
  }
  .contact-form-header {
    margin-bottom: 14px;
  }
  .contact-form-header .badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    margin-bottom: 5px;
  }
  .contact-form-header h2 {
    font-size: 1.25rem;
    line-height: 1.24;
    margin-bottom: 5px;
  }
  .contact-form-header p {
    font-size: 0.78rem;
    line-height: 1.42;
  }
  .form-label {
    font-size: 0.76rem;
    margin-bottom: 3px;
  }
  .form-input,
  .form-select,
  .form-textarea {
    padding: 8px 11px;
    font-size: 0.8rem;
    border-radius: 8px;
  }
  .form-input::placeholder,
  .form-textarea::placeholder,
  .form-select::placeholder {
    font-size: 0.74rem;
  }
  .form-textarea {
    min-height: 56px;
  }
  #contactSubmitBtn,
  .contact-form-wrapper .btn,
  .btn-primary.btn-block,
  .btn-lg {
    padding: 10px 14px;
    font-size: 0.82rem;
    border-radius: 8px;
    gap: 5px;
  }
  #contactSubmitBtn svg,
  .contact-form-wrapper .btn svg {
    width: 14px;
    height: 14px;
  }
  .form-note {
    font-size: 0.7rem;
    margin-top: 6px;
  }
  .quick-booking-4-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  .quick-booking-card {
    padding: 10px 6px;
    border-radius: 10px;
  }
  .quick-booking-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    margin-bottom: 5px;
  }
  .quick-booking-icon svg {
    width: 15px;
    height: 15px;
  }
  .quick-booking-card h3 {
    font-size: 0.80rem;
    margin-bottom: 2px;
  }
  .quick-booking-card p {
    font-size: 0.64rem;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  .quick-booking-badge {
    font-size: 0.62rem;
    padding: 2.5px 6px;
    white-space: nowrap;
  }
  .coverage-cities-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .city-coverage-card {
    padding: 14px 12px;
    border-radius: 10px;
  }
  .city-coverage-card h4 {
    font-size: 0.94rem;
    margin-bottom: 8px;
    gap: 6px;
  }
  .city-coverage-card h4 svg {
    width: 15px;
    height: 15px;
  }
  .city-locality-chip {
    font-size: 0.72rem;
    padding: 3px 8px;
  }
  .map-container-styled {
    border-radius: 12px;
  }
  .map-interactive-mock {
    height: auto;
    min-height: 175px;
    padding: 18px 12px;
    border-radius: 12px;
  }
  .map-mock-badge {
    font-size: 0.62rem;
    padding: 2.5px 8px;
    margin-bottom: 8px;
  }
  .map-mock-pin {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    box-shadow: 0 0 0 5px rgba(234, 88, 12, 0.25);
  }
  .map-mock-pin svg {
    width: 18px;
    height: 18px;
  }
  .map-interactive-mock h3 {
    font-size: 0.98rem;
    margin-bottom: 4px;
    line-height: 1.25;
  }
  .map-interactive-mock p {
    font-size: 0.74rem;
    line-height: 1.38;
  }
  .map-footer-bar {
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
    align-items: center;
    text-align: center;
  }
  .map-footer-info {
    font-size: 0.72rem;
    gap: 5px;
  }
  .map-footer-info svg {
    width: 14px;
    height: 14px;
  }
  .faq-accordion,
  .faq-accordion-wrapper {
    gap: 8px;
  }
  .faq-item {
    border-radius: 10px;
  }
  .faq-question-btn {
    padding: 12px 14px;
    font-size: 0.88rem;
    line-height: 1.3;
    gap: 8px;
  }
  .faq-chevron {
    width: 15px;
    height: 15px;
  }
  .faq-answer {
    padding: 0 14px;
  }
  .faq-item.active .faq-answer {
    padding: 0 14px 12px 14px;
  }
  .faq-answer p {
    font-size: 0.78rem;
    line-height: 1.45;
  }
  .bottom-cta-banner {
    padding: 28px 12px;
    margin: 16px auto !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    width: calc(100% + 40px) !important;
    border-radius: 0 !important;
  }
  .bottom-cta-banner h2 {
    font-size: 1.35rem !important;
    line-height: 1.24 !important;
    margin-bottom: 6px !important;
  }
  .bottom-cta-banner p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 14px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .bottom-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .btn-white-pill,
  .btn-dark-glass-pill {
    width: 100%;
    justify-content: center;
    padding: 9px 14px !important;
    font-size: 0.78rem !important;
    border-radius: 999px;
  }
  .hero-section,
  .service-hero-section,
  .page-hero-section {
    padding: 16px 0 12px 0 !important;
    min-height: auto !important;
  }
  .hero-content-slider {
    min-height: 330px !important;
    margin-bottom: 10px !important;
  }
  .hero-slide-item,
  .service-hero-content,
  .page-hero-grid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .hero-bg-slide {
    background-position: center 25% !important;
    background-size: cover !important;
    transform: none !important;
  }
  .hero-tag-badge,
  .service-hero-badge,
  .page-hero-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    margin-bottom: 6px;
    gap: 4px;
    align-self: flex-start;
  }
  .hero-main-headline,
  .service-hero-title,
  .page-hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 6px;
    text-align: left;
  }
  .hero-main-subtext,
  .service-hero-sub,
  .page-hero-sub {
    font-size: 0.88rem;
    line-height: 1.38;
    margin-bottom: 10px;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .hero-cta-group,
  .service-hero-ctas,
  .page-hero-ctas {
    gap: 6px;
    margin-bottom: 10px;
  }
  .hero-btn-primary,
  .hero-btn-glass,
  .page-hero-ctas .hero-btn-primary,
  .page-hero-ctas .hero-btn-glass {
    padding: 10px 16px;
    font-size: 0.88rem;
    border-radius: 7px;
  }
  .hero-assurance-note {
    font-size: 0.65rem;
  }
  .why-card {
    padding: 18px 14px !important;
  }
  .why-icon,
  .why-icon-box {
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
  }
  .why-icon svg,
  .why-icon-box svg {
    width: 18px !important;
    height: 18px !important;
  }
  .why-title,
  .why-card-title {
    font-size: 1.05rem !important;
    margin-bottom: 5px !important;
  }
  .why-desc,
  .why-card-desc {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .problem-card {
    padding: 15px 12px !important;
  }
  .problem-card-header {
    gap: 8px !important;
    margin-bottom: 8px !important;
  }
  .problem-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
  }
  .problem-icon svg {
    width: 15px !important;
    height: 15px !important;
  }
  .problem-title {
    font-size: 0.95rem !important;
  }
  .problem-desc {
    font-size: 0.78rem !important;
    line-height: 1.40 !important;
    margin-bottom: 10px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .problem-cta-btn {
    padding: 7px 10px !important;
    font-size: 0.74rem !important;
  }
  .detailed-service-card {
    padding: 16px 12px !important;
  }
  .service-card-top {
    margin-bottom: 10px !important;
  }
  .service-icon-box {
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
  }
  .service-icon-box svg {
    width: 17px !important;
    height: 17px !important;
  }
  .service-price-pill {
    font-size: 0.68rem !important;
    padding: 2.5px 7px !important;
  }
  .detailed-service-card h3 {
    font-size: 0.98rem !important;
    margin-bottom: 5px !important;
  }
  .detailed-service-card p {
    font-size: 0.78rem !important;
    line-height: 1.40 !important;
    margin-bottom: 10px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .service-checks-list {
    margin-bottom: 10px !important;
    gap: 5px !important;
  }
  .service-checks-list li {
    font-size: 0.74rem !important;
    gap: 5px !important;
  }
  .service-checks-list li svg {
    width: 12px !important;
    height: 12px !important;
  }
  .dedicated-booking-box {
    padding: 20px 12px !important;
  }
  .booking-box-left h3 {
    font-size: 1.4rem !important;
  }
  .booking-box-left p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }
  .booking-box-feat {
    font-size: 0.76rem !important;
  }
  .dedicated-form-card {
    padding: 15px 10px !important;
  }
  .localities-tags-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .locality-pill {
    padding: 6px 8px !important;
    font-size: 0.74rem !important;
  }
  .emergency-section {
    padding: 28px 0 !important;
  }
  .emergency-title {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }
  .emergency-desc {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .emergency-tag {
    font-size: 0.65rem !important;
    padding: 2.5px 8px !important;
  }
  .emergency-ctas .btn {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
  }
  .review-card,
  .service-review-card {
    padding: 16px 12px !important;
  }
  .review-stars,
  .review-stars-row {
    margin-bottom: 8px !important;
  }
  .review-stars svg,
  .review-stars-row svg {
    width: 13px !important;
    height: 13px !important;
  }
  .review-quote,
  .service-review-text {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .review-author,
  .service-review-author {
    padding-top: 8px !important;
    gap: 8px !important;
  }
  .author-avatar {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.78rem !important;
  }
  .author-info strong,
  .review-author-info strong {
    font-size: 0.78rem !important;
  }
  .author-info span,
  .review-author-info span {
    font-size: 0.68rem !important;
  }
  .verified-pill {
    padding: 2.5px 6px !important;
    font-size: 0.60rem !important;
  }
}

@media (max-width: 400px) {
  .section {
    padding: 28px 0;
  }
  .section-header,
  .section-header.text-center {
    margin: 0 0 15px 0;
  }
  .section-header .badge,
  .section-header .section-tag {
    font-size: 0.64rem;
    padding: 2.5px 7px;
    margin-bottom: 5px;
  }
  .section-title {
    font-size: 1.22rem;
    line-height: 1.25;
    margin-bottom: 5px;
  }
  .section-subtitle {
    font-size: 0.74rem;
    line-height: 1.38;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .about-intro-text p {
    font-size: 0.76rem;
    line-height: 1.48;
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 8px;
  }
  .about-intro-text .section-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }
  .about-highlight-text strong {
    font-size: 0.80rem;
  }
  .about-highlight-text span {
    font-size: 0.70rem;
    text-align: justify;
  }
  .about-intro-card h3 {
    font-size: 1.02rem;
  }
  .about-intro-card p {
    font-size: 0.72rem;
    text-align: justify;
  }
  .about-card-checklist li {
    font-size: 0.70rem;
  }
  .service-image-box {
    aspect-ratio: auto !important;
    height: 100px !important;
    max-height: 100px !important;
  }
  .hero-service-img-wrapper {
    height: 72px !important;
    max-height: 72px !important;
  }
  .service-hero-img-card img {
    height: 145px !important;
    max-height: 145px !important;
    object-fit: cover !important;
  }
  .service-content {
    padding: 12px 10px;
  }
  .service-title {
    font-size: 0.98rem;
  }
  .service-desc {
    font-size: 0.70rem;
  }
  .problem-item {
    font-size: 0.66rem;
  }
  .service-card-footer {
    padding-top: 8px;
    gap: 4px;
  }
  .service-pricing-hint {
    font-size: 0.64rem;
  }
  .service-pricing-hint strong {
    font-size: 0.74rem;
  }
  .service-card-footer .btn {
    padding: 5px 8px;
    font-size: 0.70rem;
    white-space: nowrap;
    border-radius: 6px;
    gap: 2px;
  }
  .service-card-footer .btn svg {
    width: 11px;
    height: 11px;
  }
  .mv-card {
    padding: 14px 12px;
  }
  .mv-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    margin-bottom: 8px;
    font-size: 1rem;
  }
  .mv-icon svg {
    width: 16px;
    height: 16px;
  }
  .mv-card h3 {
    font-size: 1.05rem;
    margin-bottom: 5px;
  }
  .mv-card p {
    font-size: 0.72rem;
    line-height: 1.4;
  }
  .customer-exp-grid {
    gap: 8px;
  }
  .exp-card {
    padding: 12px 8px;
  }
  .exp-icon {
    width: 28px;
    height: 28px;
  }
  .exp-icon svg {
    width: 14px;
    height: 14px;
  }
  .exp-card h4 {
    font-size: 0.80rem;
  }
  .exp-card p {
    font-size: 0.66rem;
  }
  .stats-bar-section {
    padding: 16px 0;
  }
  .stats-grid {
    gap: 8px 6px !important;
  }
  .stat-card {
    padding: 6px 4px;
    gap: 6px;
  }
  .stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }
  .stat-icon svg {
    width: 14px;
    height: 14px;
  }
  .stat-number {
    font-size: 1.05rem;
  }
  .stat-label {
    font-size: 0.62rem;
  }
  .contact-cards-4-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-card-v2 {
    padding: 16px 14px;
  }
  .contact-form-wrapper {
    padding: 16px 12px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .contact-sidebar {
    padding: 0 10px;
  }
  .contact-form-header h2 {
    font-size: 1.15rem;
    line-height: 1.25;
  }
  .contact-form-header p {
    font-size: 0.74rem;
    line-height: 1.4;
  }
  .form-label {
    font-size: 0.72rem;
  }
  .form-input,
  .form-select,
  .form-textarea {
    padding: 7.5px 9px;
    font-size: 0.76rem;
  }
  .form-input::placeholder,
  .form-textarea::placeholder,
  .form-select::placeholder {
    font-size: 0.7rem;
  }
  #contactSubmitBtn,
  .contact-form-wrapper .btn,
  .btn-primary.btn-block,
  .btn-lg {
    padding: 9px 12px;
    font-size: 0.78rem;
  }
  .quick-booking-4-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px;
  }
  .quick-booking-card {
    padding: 9px 4px;
  }
  .quick-booking-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    margin-bottom: 4px;
  }
  .quick-booking-icon svg {
    width: 13px;
    height: 13px;
  }
  .quick-booking-card h3 {
    font-size: 0.74rem;
  }
  .quick-booking-card p {
    font-size: 0.60rem;
    margin-bottom: 4px;
  }
  .quick-booking-badge {
    font-size: 0.58rem;
    padding: 2px 5px;
    white-space: nowrap;
  }
  .coverage-cities-grid {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }
  .city-coverage-card {
    padding: 12px 10px;
  }
  .city-coverage-card h4 {
    font-size: 0.88rem;
  }
  .city-locality-chip {
    font-size: 0.68rem;
    padding: 2.5px 7px;
  }
  .faq-question-btn {
    padding: 10px 12px;
    font-size: 0.82rem;
  }
  .faq-answer {
    padding: 0 12px;
  }
  .faq-item.active .faq-answer {
    padding: 0 12px 10px 12px;
  }
  .faq-answer p {
    font-size: 0.74rem;
    line-height: 1.4;
  }
  .bottom-cta-banner {
    padding: 16px 12px;
    margin: 12px auto;
  }
  .bottom-cta-banner h2 {
    font-size: 1.12rem;
    line-height: 1.25;
    margin-bottom: 5px;
  }
  .bottom-cta-banner p {
    font-size: 0.74rem;
    line-height: 1.38;
    margin-bottom: 12px;
  }
  .bottom-cta-buttons {
    gap: 6px;
  }
  .btn-white-pill,
  .btn-dark-glass-pill {
    padding: 8px 12px;
    font-size: 0.76rem;
  }
  .hero-section,
  .service-hero-section,
  .page-hero-section {
    padding: 14px 0 10px 0 !important;
    min-height: auto !important;
  }
  .hero-content-slider {
    min-height: 300px !important;
    margin-bottom: 8px !important;
  }
  .hero-slide-item,
  .service-hero-content,
  .page-hero-grid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .hero-bg-slide {
    background-position: center 25% !important;
  }
  .hero-tag-badge,
  .service-hero-badge,
  .page-hero-badge {
    font-size: 0.7rem;
    padding: 3px 9px;
    margin-bottom: 5px;
    align-self: flex-start;
  }
  .hero-main-headline,
  .service-hero-title,
  .page-hero-title {
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 5px;
    text-align: left;
  }
  .hero-main-subtext,
  .service-hero-sub,
  .page-hero-sub {
    font-size: 0.84rem;
    line-height: 1.35;
    margin-bottom: 8px;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .hero-cta-group,
  .service-hero-ctas,
  .page-hero-ctas {
    gap: 5px;
    margin-bottom: 8px;
  }
  .hero-btn-primary,
  .hero-btn-glass,
  .page-hero-ctas .hero-btn-primary,
  .page-hero-ctas .hero-btn-glass {
    padding: 9px 14px;
    font-size: 0.82rem;
  }
  .hero-tabs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }
  .hero-tab-btn {
    padding: 6px 8px !important;
    gap: 6px !important;
    border-radius: 10px !important;
  }
  .hero-tab-thumb {
    width: 26px !important;
    height: 26px !important;
    border-radius: 4px !important;
  }
  .hero-tab-name {
    font-size: 0.7rem !important;
  }
  .hero-tab-sub {
    font-size: 0.58rem !important;
  }
  .hero-tab-price-badge {
    font-size: 0.58rem !important;
    padding: 1px 4px !important;
    border-radius: 4px !important;
  }
  .hero-tabs-badge {
    font-size: 0.62rem !important;
    padding: 2.5px 6px !important;
  }
  .hero-tabs-title {
    font-size: 0.8rem !important;
  }
  .why-card {
    padding: 15px 12px !important;
  }
  .why-icon,
  .why-icon-box {
    width: 34px !important;
    height: 34px !important;
    border-radius: 6px !important;
    margin-bottom: 8px !important;
  }
  .why-icon svg,
  .why-icon-box svg {
    width: 16px !important;
    height: 16px !important;
  }
  .why-title,
  .why-card-title {
    font-size: 0.98rem !important;
    margin-bottom: 4px !important;
  }
  .why-desc,
  .why-card-desc {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .problem-card {
    padding: 12px 10px !important;
  }
  .problem-card-header {
    gap: 6px !important;
    margin-bottom: 6px !important;
  }
  .problem-icon {
    width: 28px !important;
    height: 28px !important;
  }
  .problem-icon svg {
    width: 13px !important;
    height: 13px !important;
  }
  .problem-title {
    font-size: 0.88rem !important;
  }
  .problem-desc {
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .problem-cta-btn {
    padding: 6px 8px !important;
    font-size: 0.70rem !important;
  }
  .detailed-service-card {
    padding: 12px 10px !important;
  }
  .service-card-top {
    margin-bottom: 8px !important;
  }
  .service-icon-box {
    width: 28px !important;
    height: 28px !important;
  }
  .service-icon-box svg {
    width: 14px !important;
    height: 14px !important;
  }
  .service-price-pill {
    font-size: 0.62rem !important;
    padding: 2px 5px !important;
  }
  .detailed-service-card h3 {
    font-size: 0.9rem !important;
  }
  .detailed-service-card p {
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .service-checks-list {
    margin-bottom: 8px !important;
    gap: 4px !important;
  }
  .service-checks-list li {
    font-size: 0.70rem !important;
    gap: 4px !important;
  }
  .service-checks-list li svg {
    width: 10px !important;
    height: 10px !important;
  }
  .dedicated-booking-box {
    padding: 16px 10px !important;
  }
  .booking-box-left h3 {
    font-size: 1.25rem !important;
  }
  .booking-box-left p {
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
  }
  .booking-box-feat {
    font-size: 0.70rem !important;
  }
  .dedicated-form-card {
    padding: 12px 8px !important;
  }
  .localities-tags-grid {
    gap: 6px !important;
  }
  .locality-pill {
    padding: 5px 6px !important;
    font-size: 0.68rem !important;
  }
  .how-it-works-timeline {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px 10px !important;
  }
  .step-number-circle {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 8px !important;
  }
  .step-number-circle span {
    font-size: 0.8rem !important;
  }
  .step-icon-badge {
    width: 20px !important;
    height: 20px !important;
    margin-bottom: 4px !important;
  }
  .step-icon-badge svg {
    width: 10px !important;
    height: 10px !important;
  }
  .step-title {
    font-size: 0.8rem !important;
    margin-bottom: 3px !important;
  }
  .step-desc {
    font-size: 0.68rem !important;
    line-height: 1.3 !important;
  }
  .emergency-section {
    padding: 24px 0 !important;
  }
  .emergency-title {
    font-size: 1.22rem !important;
  }
  .emergency-desc {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
  }
  .emergency-tag {
    font-size: 0.6rem !important;
    padding: 2px 6px !important;
  }
  .emergency-ctas .btn {
    padding: 7px 10px !important;
    font-size: 0.76rem !important;
  }
  .review-card,
  .service-review-card {
    padding: 14px 10px !important;
  }
  .review-stars,
  .review-stars-row {
    margin-bottom: 6px !important;
  }
  .review-stars svg,
  .review-stars-row svg {
    width: 11px !important;
    height: 11px !important;
  }
  .review-quote,
  .service-review-text {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .review-author,
  .service-review-author {
    padding-top: 6px !important;
    gap: 6px !important;
  }
  .author-avatar {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.72rem !important;
  }
  .author-info strong,
  .review-author-info strong {
    font-size: 0.72rem !important;
  }
  .author-info span,
  .review-author-info span {
    font-size: 0.62rem !important;
  }
  .verified-pill {
    padding: 2px 5px !important;
    font-size: 0.55rem !important;
  }
  .bottom-cta-banner {
    padding: 24px 10px;
    margin-left: -20px !important;
    margin-right: -20px !important;
    width: calc(100% + 40px) !important;
    border-radius: 0 !important;
  }
  .bottom-cta-banner h2 {
    font-size: 1.15rem !important;
    margin-bottom: 5px !important;
  }
  .bottom-cta-banner p {
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
    margin-bottom: 12px !important;
    text-align: justify !important;
    text-justify: inter-word;
  }
  .btn-white-pill,
  .btn-dark-glass-pill {
    padding: 8px 12px !important;
    font-size: 0.74rem !important;
  }
}


