/* ==========================================================================
   Pest Defender - Professional Pest Control Services Website
   ========================================================================== */

:root {
  --primary: #0d6838;
  --primary-dark: #074724;
  --primary-light: #168045;
  --primary-subtle: #edfbf2;
  --primary-border: #bbf7d0;
  
  --dark-bg: #072e18;
  --dark-card: #0c3e21;
  --dark-surface: #041f10;
  
  --whatsapp: #25d366;
  --whatsapp-hover: #1eb855;
  
  --accent-gold: #f59e0b;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --container-max: 1200px;
  --transition: all 0.25s ease-in-out;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100%;
  width: 100%;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.5;
}

body {
  padding-bottom: 76px; /* Space for mobile app bottom dock */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 90px; /* Space for desktop floating dock */
  }
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

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

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

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: #ffffff;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-subtle);
  color: var(--primary-dark);
}

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

/* ==========================================================================
   Site Header & Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid #eef2f6;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.05);
}

.header-inner {
  width: 100%;
  max-width: 1380px;
  margin-inline: auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.25rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, #0e703d 0%, #084926 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(13, 104, 56, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-logo-icon svg {
  width: 25px;
  height: 25px;
}

.brand-text-col {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.brand-part-1 {
  color: #0d6838;
}

.brand-part-2 {
  color: #1a2e22;
  margin-left: 3px;
}

.brand-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1px;
}

.brand-meta-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: #0d6838;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-meta-sep {
  font-size: 0.6rem;
  color: #94a3b8;
}

.brand-meta-motto {
  font-size: 0.66rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .header-inner {
    padding: 0 1rem;
    height: 68px;
  }
  .brand-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .brand-logo-icon svg {
    width: 22px;
    height: 22px;
  }
  .brand-title {
    font-size: 1.18rem;
  }
  .brand-meta-motto,
  .brand-meta-sep {
    display: none;
  }
}

/* Nav Menu */
.nav-links-desktop {
  display: none;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.45rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .nav-links-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  padding: 0.5rem 0.2rem;
  white-space: nowrap;
  position: relative;
  transition: all 0.2s ease;
  display: inline-block;
  letter-spacing: -0.1px;
}

.nav-link:hover {
  color: #0d6838;
}

.nav-link.active {
  color: #0d6838;
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: #0d6838;
  border-radius: 2px;
}

/* Header CTA Button */
.header-cta-desktop {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .header-cta-desktop {
    display: flex;
    align-items: center;
  }
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.35rem 0.6rem 0.75rem;
  background: linear-gradient(135deg, #0d6838 0%, #094e2a 100%);
  color: #ffffff;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(13, 104, 56, 0.25);
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-header-call:hover {
  background: linear-gradient(135deg, #0a542d 0%, #06381e 100%);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(13, 104, 56, 0.35);
  color: #ffffff;
}

.call-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-icon-circle svg {
  width: 15px;
  height: 15px;
  color: #ffffff;
}

.call-number-text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #1e293b;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
  background: #f1f5f9;
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 3px solid #0d6838;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 1.5rem 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 98;
}

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

.mobile-nav-drawer .nav-link {
  font-size: 1.05rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 600;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(180deg, #f3faf5 0%, #ffffff 100%);
  position: relative;
}

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
  background-color: var(--primary-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid var(--primary-border);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 1.1rem;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--primary);
  display: block;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.1rem;
  }
}

.hero-description {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 1.8rem;
  max-width: 530px;
  line-height: 1.6;
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

@media (max-width: 640px) {
  .hero-actions-row {
    flex-direction: column;
    width: 100%;
  }
  .hero-action-btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-action-btn {
  padding: 0.75rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-md);
  text-align: left;
  transition: var(--transition);
}

.hero-action-btn .btn-text-wrap {
  display: flex;
  flex-direction: column;
}

.hero-action-btn .btn-main-label {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-action-btn .btn-sub-label {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

.hero-action-btn.call-action {
  background-color: #064420;
  color: #ffffff;
}

.hero-action-btn.call-action:hover {
  background-color: #042e15;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-action-btn.whatsapp-action {
  background-color: var(--whatsapp);
  color: #ffffff;
}

.hero-action-btn.whatsapp-action:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-action-btn.inspect-action {
  background-color: #ffffff;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
}

.hero-action-btn.inspect-action:hover {
  background-color: var(--primary-subtle);
  transform: translateY(-2px);
}

/* Trust Metrics 4-Item Row */
.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .hero-trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.trust-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--primary-border);
}

.trust-badge-icon svg {
  width: 20px;
  height: 20px;
}

.trust-badge-text h4 {
  font-size: 0.84rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.trust-badge-text p {
  font-size: 0.72rem;
  color: #64748b;
}

/* Hero Visual Box */
.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
  background-color: #f1f5f9;
}

.hero-visual-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-visual-card img {
    height: 440px;
  }
}

.hero-floating-bubble {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(13, 104, 56, 0.2);
}

.floating-bubble-text {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.2px;
}

/* ==========================================================================
   Certifications & Government Approvals
   ========================================================================== */
.cert-section {
  padding: 1rem 0 2rem;
}

.cert-wrapper {
  background: linear-gradient(135deg, #07351c 0%, #0c4d29 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.cert-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.cert-intro h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 0.25rem;
}

.cert-intro p {
  font-size: 0.86rem;
  color: #a7f3d0;
}

.cert-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .cert-badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .cert-badges-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.cert-badge-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.cert-badge-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.cert-badge-icon {
  width: 36px;
  height: 36px;
  color: #34d399;
}

.cert-badge-card h5 {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.cert-badge-card p {
  font-size: 0.68rem;
  color: #cbd5e1;
  line-height: 1.1;
}

/* ==========================================================================
   Complete Pest Control Solutions (14 Services)
   ========================================================================== */
.services-section {
  padding: 4rem 0 3rem;
  background-color: #fafbfc;
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 640px;
  margin-inline: auto;
}

.pest-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .pest-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .pest-cards-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.pest-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.25rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

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

.pest-card-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  padding: 10px;
  transition: var(--transition);
  border: 1px solid #f1f5f9;
}

.pest-card:hover .pest-card-avatar {
  background: var(--primary-subtle);
  border-color: var(--primary-border);
  transform: scale(1.06);
}

.pest-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.85rem;
}

.pest-card-btn {
  margin-top: auto;
  font-size: 0.76rem;
  font-weight: 700;
  background: var(--primary);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}

.pest-card:hover .pest-card-btn {
  background: var(--primary-dark);
}

/* Commercial Services Row */
.commercial-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .commercial-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Why Choose Us & Interactive Pest Tabs
   ========================================================================== */
.why-tabs-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.why-tabs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .why-tabs-grid {
    grid-template-columns: 1fr 1.15fr;
  }
}

.why-col h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.why-col p.lead {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.why-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.why-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: #334155;
}

.why-check-icon {
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

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

/* Interactive Pest Tabs */
.pest-interactive-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.pest-interactive-box h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.tab-nav-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.tab-pill-btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  background: #f1f5f9;
  color: #475569;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.tab-pill-btn.active {
  background: var(--primary);
  color: #ffffff;
}

.tab-pane {
  display: none;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.tab-pane.active {
  display: grid;
}

@media (min-width: 640px) {
  .tab-pane {
    grid-template-columns: 140px 1fr;
  }
}

.tab-pane-img {
  width: 130px;
  height: 130px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  margin-inline: auto;
}

.tab-pane-img svg {
  width: 90px;
  height: 90px;
}

.tab-pane-body h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.tab-pane-body p {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.tab-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.benefit-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
}

.benefit-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
}

/* ==========================================================================
   How It Works (5 Step Process)
   ========================================================================== */
.how-it-works-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.how-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .how-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .how-steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.how-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: var(--transition);
}

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

.step-num-badge {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #94a3b8;
}

.how-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid var(--primary-border);
}

.how-step-icon svg {
  width: 26px;
  height: 26px;
}

.how-step-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.35rem;
}

.how-step-card p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

/* ==========================================================================
   Before / After Results & Google Customer Reviews
   ========================================================================== */
.proof-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

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

@media (min-width: 992px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.proof-card-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.proof-card-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.proof-sub {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.proof-rating-badge {
  font-size: 0.88rem;
  font-weight: 800;
  color: #168045;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.before-after-panes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.photo-pane {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  background: #1e293b;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .photo-pane {
    height: 235px;
  }
}

.photo-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-pane:hover img {
  transform: scale(1.04);
}

.photo-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 0.25rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.reviews-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.customer-review-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.15rem;
  transition: var(--transition);
}

.customer-review-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-sm);
}

.review-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.google-tag {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #475569;
}

.star-rating {
  color: var(--accent-gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.review-quote {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.person-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.person-meta h5 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
}

.person-meta span {
  font-size: 0.74rem;
  color: #64748b;
}

/* ==========================================================================
   Our Service Areas (Delhi NCR)
   ========================================================================== */
.service-areas-section {
  padding: 2.5rem 0;
  background: #ffffff;
}

.service-areas-banner {
  background: linear-gradient(135deg, #052613 0%, #0a4020 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .service-areas-banner {
    grid-template-columns: 1.35fr 1fr;
  }
}

.areas-info-col h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.areas-info-col p {
  font-size: 0.95rem;
  color: #a7f3d0;
  margin-bottom: 1.5rem;
}

.chips-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.city-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}

.city-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.areas-cta-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  color: #1e293b;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.areas-cta-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.areas-cta-card p {
  font-size: 0.86rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.faq-section {
  padding: 4rem 0;
  background: #fafbfc;
}

.faq-container {
  max-width: 960px;
  margin-inline: auto;
}

.faq-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .faq-items-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-trigger {
  width: 100%;
  padding: 1rem 1.15rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
  transition: var(--transition);
  word-break: break-word;
}

.faq-trigger span {
  flex: 1;
}

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

.faq-toggle-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #64748b;
  transition: transform 0.25s ease;
}

.faq-card.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #f8fafc;
}

.faq-body {
  padding: 0 1.15rem 1rem;
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.5;
}

/* ==========================================================================
   Pre-Footer Action Banner
   ========================================================================== */
/* ==========================================================================
   Pre-Footer Action Banner
   ========================================================================== */
.pre-footer-banner {
  background: #06391d;
  color: #ffffff;
  padding: 2.5rem 0;
  border-top: 2px solid var(--primary-light);
  overflow: hidden;
}

.banner-flex {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 992px) {
  .banner-flex {
    flex-direction: row;
    text-align: left;
  }
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.banner-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-icon-box svg {
  width: 28px;
  height: 28px;
  color: #86efac;
}

.banner-left h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  word-break: break-word;
}

.banner-left p {
  font-size: 0.88rem;
  color: #a7f3d0;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 992px) {
  .banner-actions {
    width: auto;
  }
}

@media (max-width: 768px) {
  .banner-left {
    flex-direction: column;
    text-align: center;
  }
  .banner-actions {
    flex-direction: column;
  }
  .banner-actions .btn {
    width: 100%;
    white-space: normal;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #04190c;
  color: #cbd5e1;
  padding: 3rem 0 1.5rem;
  font-size: 0.86rem;
  overflow: hidden;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}

.footer-brand-wrap p {
  margin-top: 0.85rem;
  color: #94a3b8;
  max-width: 360px;
  line-height: 1.5;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-list a:hover {
  color: #34d399;
  padding-left: 4px;
}

/* Footer Quick Action Strip */
.footer-action-strip {
  background: linear-gradient(135deg, #094723 0%, #063118 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  margin: 2.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
  .footer-action-strip {
    flex-direction: row;
    padding: 1.75rem 2rem;
  }
}

.footer-strip-info {
  text-align: center;
}

@media (min-width: 992px) {
  .footer-strip-info {
    text-align: left;
  }
}

.footer-strip-info h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.footer-strip-info p {
  font-size: 0.86rem;
  color: #a7f3d0;
}

.footer-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 992px) {
  .footer-strip-actions {
    width: auto;
    justify-content: flex-end;
  }
}

.strip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  flex: 1 1 auto;
  text-align: center;
  white-space: nowrap;
}

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

.strip-call {
  background: #0e6838;
  color: #ffffff;
  border: 1.5px solid #34d399;
}

.strip-call:hover {
  background: #084926;
  color: #ffffff;
}

.strip-whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
}

.strip-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #ffffff;
}

.strip-inspect {
  background: #ffffff;
  color: var(--primary);
}

.strip-inspect:hover {
  background: var(--primary-subtle);
}

.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: #64748b;
}

@media (min-width: 640px) {
  .footer-bottom-bar {
    flex-direction: row;
  }
}

.social-icons-group {
  display: flex;
  gap: 0.75rem;
}

.social-circle-link {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: var(--transition);
}

.social-circle-link:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ==========================================================================
   Persistent App-Style Bottom Action Dock (Mobile & Desktop)
   ========================================================================== */
.app-bottom-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  pointer-events: none;
}

.dock-container {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(6, 42, 22, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1.5px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  padding: 0.4rem 0.5rem;
  width: 100%;
}

.dock-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.45rem 0.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: var(--radius-sm);
  user-select: none;
}

.dock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.dock-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.dock-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.dock-sub {
  display: none;
  font-size: 0.65rem;
  opacity: 0.85;
}

.dock-call {
  color: #86efac;
}

.dock-call:hover, .dock-call:active {
  background: rgba(255, 255, 255, 0.08);
}

.dock-whatsapp {
  color: #4ade80;
}

.dock-whatsapp:hover, .dock-whatsapp:active {
  background: rgba(37, 211, 102, 0.15);
}

.dock-inspect {
  background: linear-gradient(135deg, #0d6838 0%, #15803d 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  margin-inline: 0.25rem;
  box-shadow: 0 2px 8px rgba(13, 104, 56, 0.3);
}

.dock-inspect:hover, .dock-inspect:active {
  background: linear-gradient(135deg, #084926 0%, #0d6838 100%);
}

/* Desktop Floating Dock */
@media (min-width: 769px) {
  .app-bottom-dock {
    bottom: 22px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
  }

  .dock-container {
    width: auto;
    min-width: 540px;
    background: rgba(5, 36, 18, 0.95);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    padding: 0.45rem 1.25rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    gap: 0.85rem;
  }

  .dock-item {
    flex-direction: row;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
  }

  .dock-text {
    align-items: flex-start;
  }

  .dock-label {
    font-size: 0.88rem;
    font-weight: 800;
  }

  .dock-sub {
    display: block;
  }

  .dock-inspect {
    padding: 0.6rem 1.35rem;
    border-radius: 9999px;
  }
}

/* ==========================================================================
   Free Inspection Modal
   ========================================================================== */
.inspection-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 250;
  padding: 1rem;
}

.inspection-modal-overlay.open {
  display: flex;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalPopIn 0.22s ease-out;
}

@keyframes modalPopIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close-trigger {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  transition: var(--transition);
}

.modal-close-trigger:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-header-block h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.modal-header-block p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.field-group {
  margin-bottom: 1rem;
}

.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.35rem;
}

.field-input, .field-select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}

.field-input:focus, .field-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 104, 56, 0.15);
}

.modal-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
}
