/* =============================================
   MY DRAIN DR — Global Design System
   Fonts: Nunito (headings) · Outfit (body) · Space Mono (stats)
   Theme: Navy + Sky + Amber | Mobile-first | SEO-ready
   ============================================= */

/* ── CSS Variables ── */
:root {
  --navy: #0b1d35;
  --navy2: #112843;
  --blue: #1560bd;
  --sky: #2993d1;
  --sky-lt: #e8f4fc;
  --amber: #f5a623;
  --amber-lt: #fff8ec;
  --red: #d9291c;
  --green: #1a9e5e;
  --white: #ffffff;
  --off: #f7f9fc;
  --gray1: #f0f4f8;
  --gray2: #dde4ed;
  --gray3: #8da0b5;
  --text: #1e2d3d;
  --text2: #4a607a;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 9999px;
  --sh-sm: 0 1px 4px rgba(11, 29, 53, .08), 0 2px 12px rgba(11, 29, 53, .06);
  --sh-md: 0 4px 16px rgba(11, 29, 53, .10), 0 8px 32px rgba(11, 29, 53, .07);
  --sh-lg: 0 8px 40px rgba(11, 29, 53, .14), 0 16px 60px rgba(11, 29, 53, .08);
  --sh-blue: 0 4px 20px rgba(21, 96, 189, .28);
  --sh-amber: 0 4px 20px rgba(245, 166, 35, .32);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .24s;
  --nav-h: 70px;
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden
}

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

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

ul,
ol {
  list-style: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

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

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: var(--r-sm)
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--gray1)
}

::-webkit-scrollbar-thumb {
  background: var(--sky);
  border-radius: 99px
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy)
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem)
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem)
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem)
}

h4 {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif
}

p {
  color: var(--text2);
  line-height: 1.75
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text2)
}

.font-mono {
  font-family: 'Space Mono', monospace
}

/* ── Layout ── */
.container {
  width: min(1160px, 92vw);
  margin: 0 auto
}

.section {
  padding: clamp(56px, 8vw, 100px) 0
}

.text-center {
  text-align: center
}

.text-white {
  color: var(--white) !important
}

.text-sky {
  color: var(--sky)
}

.text-amber {
  color: var(--amber)
}

.text-navy {
  color: var(--navy)
}

.mt-2 {
  margin-top: 8px
}

.mt-3 {
  margin-top: 12px
}

.mt-4 {
  margin-top: 16px
}

.mt-5 {
  margin-top: 24px
}

.mt-6 {
  margin-top: 32px
}

.mb-4 {
  margin-bottom: 16px
}

.mb-5 {
  margin-bottom: 24px
}

.mb-6 {
  margin-bottom: 32px
}

.mb-7 {
  margin-bottom: 48px
}

.bg-off {
  background: var(--off)
}

.bg-navy {
  background: var(--navy)
}

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

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-content: start
}

@media(max-width:900px) {
  .grid-2 {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {
  .section {
    padding: clamp(40px, 6vw, 80px) 0
  }

  .hero {
    padding: clamp(60px, 10vw, 100px) 0
  }

  .emergency-strip {
    font-size: .75rem;
    padding: 8px 16px
  }
}

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-lt);
  border: 1px solid rgba(41, 147, 209, .18);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: var(--r-md);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--sh-blue)
}

.btn-primary:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(21, 96, 189, .38)
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
  box-shadow: var(--sh-amber)
}

.btn-amber:hover {
  background: #e8951a;
  transform: translateY(-2px)
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .4)
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .8);
  transform: translateY(-1px)
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue)
}

.btn-ghost:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px)
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem
}

.btn-sm {
  padding: 9px 18px;
  font-size: .85rem
}

.btn-block {
  width: 100%
}

/* ── Emergency Strip ── */
.emergency-strip {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 600;
  position: relative;
  z-index: 1001
}

.emergency-strip a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: box-shadow var(--t) var(--ease)
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, .25)
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, 92vw);
  margin: 0 auto
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  flex-shrink: 0;
  transition: opacity var(--t)
}

.nav-logo:hover {
  opacity: .9
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  box-shadow: 0 0 16px rgba(41, 147, 209, .4);
  flex-shrink: 0
}

.logo-text-em {
  color: var(--amber)
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .72);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  position: relative
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, .07)
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--amber);
  border-radius: var(--r-pill)
}

.has-dropdown {
  position: relative
}

.dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: var(--r-md);
  min-width: 220px;
  padding: 8px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--gray2);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t) var(--ease);
  z-index: 300
}

/* Invisible bridge fills the gap so mouse travel doesn't trigger mouseleave */
.dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.has-dropdown:hover .dropdown,
.has-dropdown.drop-open .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0)
}

.drop-arrow {
  font-size: .65rem;
  margin-left: 4px;
  transition: transform var(--t)
}

.has-dropdown:hover .drop-arrow,
.has-dropdown.drop-open .drop-arrow {
  transform: rotate(180deg)
}

.drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  transition: background var(--t), color var(--t)
}

.drop-item:hover {
  background: var(--sky-lt);
  color: var(--blue)
}

.drop-item i {
  width: 20px;
  text-align: center;
  color: var(--sky);
  font-size: .95rem
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .88rem;
  color: rgba(255, 255, 255, .85);
  transition: color var(--t)
}

.nav-phone:hover {
  color: var(--amber)
}

.nav-phone i {
  color: var(--amber)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm)
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t) var(--ease)
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 32px 20px;
  overflow-y: auto;
  flex-direction: column;
  gap: 6px
}

.mobile-menu.open {
  display: flex
}

.mobile-menu .nav-link {
  font-size: 1.05rem;
  padding: 13px 16px;
  color: rgba(255, 255, 255, .8)
}

.mobile-menu .nav-link.active {
  color: var(--amber)
}

.mobile-divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 12px 0
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px
}

@media(max-width:768px) {

  .nav-menu,
  .nav-actions .btn,
  .nav-phone {
    display: none
  }

  .hamburger {
    display: flex
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy2) 55%, #0e3263 100%);
  padding: clamp(70px, 12vw, 120px) 0
}

.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 28px 28px
}

.hero-glow {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 147, 209, .18) 0%, transparent 70%);
  pointer-events: none
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center
}

@media(max-width:1020px) {
  .hero-inner {
    grid-template-columns: 1fr
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, .15);
  border: 1px solid rgba(245, 166, 35, .35);
  color: var(--amber);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px
}

.hero h1 .h1-accent {
  color: var(--amber)
}

.hero h1 .h1-sky {
  color: var(--sky)
}

.hero-desc {
  color: rgba(255, 255, 255, .65);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.75
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.hero-proof {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.hero-stat-num {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1
}

.hero-stat-num .accent {
  color: var(--amber)
}

.hero-stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px;
  letter-spacing: .06em;
  font-family: 'Outfit', sans-serif
}

@media(max-width:480px) {
  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-proof {
    gap: 24px
  }
}

/* ── QUOTE CARD ── */
.quote-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-lg)
}

.quote-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray2);
  margin-bottom: 20px
}

.qc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--sky-lt);
  color: var(--blue);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.quote-card-head h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0;
  font-family: 'Nunito', sans-serif
}

.quote-card-head p {
  font-size: .8rem;
  color: var(--gray3);
  margin: 0;
  font-family: 'Outfit', sans-serif
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray2);
  padding: 24px 0
}

.trust-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem
}

.trust-item i {
  font-size: 1.3rem;
  color: var(--amber)
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600
}

.trust-item span {
  color: var(--gray3);
  font-size: .78rem
}

.trust-div {
  width: 1px;
  height: 36px;
  background: var(--gray2)
}

@media(max-width:768px) {
  .trust-div {
    display: none
  }

  .trust-list {
    justify-content: flex-start;
    gap: 16px
  }
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray2);
  box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
  overflow: hidden
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(41, 147, 209, .3)
}

.svc-card {
  padding: 28px
}

.svc-card-blue {
  background: var(--sky-lt);
  border-color: rgba(41, 147, 209, .3)
}

.svc-card-amber {
  background: var(--amber-lt);
  border-color: rgba(245, 166, 35, .3)
}

.svc-card-red {
  background: #fdecea;
  border-color: rgba(217, 41, 28, .3)
}

.svc-card-green {
  background: #e8f8f2;
  border-color: rgba(26, 158, 94, .3)
}

.svc-card-purple {
  background: #f3eeff;
  border-color: rgba(107, 51, 204, .3)
}

.svc-card-teal {
  background: #e6f7f5;
  border-color: rgba(13, 158, 143, .3)
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  flex-shrink: 0
}

.ic-blue {
  background: var(--sky-lt);
  color: var(--blue)
}

.ic-amber {
  background: var(--amber-lt);
  color: #c47a00
}

.ic-green {
  background: #e8f8f2;
  color: var(--green)
}

.ic-red {
  background: #fdecea;
  color: var(--red)
}

.ic-purple {
  background: #f3eeff;
  color: #6b33cc
}

.ic-teal {
  background: #e6f7f5;
  color: #0d9e8f
}

.svc-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px
}

.svc-card p {
  font-size: .9rem;
  margin-bottom: 16px
}

.card-link {
  color: var(--blue);
  font-size: .88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t)
}

.card-link:hover {
  gap: 10px
}

/* ── STEP ── */
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray2);
  transition: background-color var(--t), border-color var(--t), transform var(--t) var(--ease), box-shadow var(--t) var(--ease)
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-sm)
}

.step-sky {
  background: var(--sky-lt);
  border-color: rgba(41, 147, 209, .3)
}

.step-amber {
  background: var(--amber-lt);
  border-color: rgba(245, 166, 35, .3)
}

.step-green {
  background: #e8f8f2;
  border-color: rgba(26, 158, 94, .3)
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--sh-blue)
}

/* ── STAT CARD ── */
.stat-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center
}

.stat-card-light {
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--sh-sm)
}

.stat-card-sky {
  background: var(--sky-lt);
  border: 1px solid rgba(41, 147, 209, .2)
}

.stat-card-amber {
  background: var(--amber-lt);
  border: 1px solid rgba(245, 166, 35, .2)
}

.stat-card-green {
  background: #e8f8f2;
  border: 1px solid rgba(26, 158, 94, .2)
}

.stat-card-purple {
  background: #f3eeff;
  border: 1px solid rgba(107, 51, 204, .2)
}

.stat-num {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1
}

.stat-card-light .stat-num {
  color: var(--navy)
}

.stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 8px;
  font-family: 'Outfit', sans-serif
}

.stat-card-light .stat-label {
  color: var(--text2)
}

/* ── REVIEWS ── */
.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray2);
  padding: 28px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden
}

.review-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 80px;
  line-height: 1;
  color: var(--sky);
  opacity: .12;
  pointer-events: none
}

.review-stars {
  color: var(--amber);
  font-size: .95rem;
  margin-bottom: 12px;
  letter-spacing: 2px
}

.review-text {
  font-size: .92rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif
}

.review-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  font-family: 'Outfit', sans-serif
}

.review-loc {
  font-size: .78rem;
  color: var(--gray3)
}

/* ── WHY CHOOSE US CARDS ── */
.why-card {
  padding: 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray2);
  transition: background-color var(--t), border-color var(--t), transform var(--t) var(--ease), box-shadow var(--t) var(--ease)
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-sm)
}

.why-card-amber {
  background: var(--amber-lt);
  border-color: rgba(245, 166, 35, .3)
}

.why-card-sky {
  background: var(--sky-lt);
  border-color: rgba(41, 147, 209, .3)
}

.why-card-green {
  background: #e8f8f2;
  border-color: rgba(26, 158, 94, .3)
}

/* ── SERVICE FEATURE CARDS ── */
.svc-feature {
  padding: 16px;
  border: 1px solid var(--gray2);
  border-radius: var(--r-md);
  transition: background-color var(--t), border-color var(--t), transform var(--t) var(--ease)
}

.svc-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-sm)
}

.svc-feature-sky {
  background: var(--sky-lt);
  border-color: rgba(41, 147, 209, .3)
}

.svc-feature-red {
  background: #fdecea;
  border-color: rgba(217, 41, 28, .3)
}

.svc-feature-blue {
  background: #e6f7ff;
  border-color: rgba(21, 96, 189, .3)
}

.svc-feature-amber {
  background: var(--amber-lt);
  border-color: rgba(245, 166, 35, .3)
}

.svc-feature-green {
  background: #e8f8f2;
  border-color: rgba(26, 158, 94, .3)
}

/* ── FLOATING ACTION BUTTONS ── */
.floating-btn {
  position: fixed;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .2);
  transition: transform var(--t), box-shadow var(--t);
  z-index: 2000;
  font-size: 1.3rem;
  overflow: hidden
}

.floating-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .9);
  outline-offset: 3px
}

.floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 22px rgba(0, 0, 0, .25)
}

.floating-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0;
  animation: ripple-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite
}

.floating-btn--call::before {
  border-color: rgba(41, 147, 209, .6)
}

.floating-btn--whatsapp::before {
  border-color: rgba(26, 158, 94, .6)
}

.floating-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transform: scale(0);
  pointer-events: none
}

.floating-btn:hover::after {
  animation: ripple-wave .8s ease-out
}

.floating-btn--call {
  left: 24px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
}

.floating-btn--whatsapp {
  right: 24px;
  bottom: 100px;
  background: linear-gradient(135deg, var(--green), #06c755);
}

@keyframes ripple-pulse {
  0% {
    transform: scale(0);
    opacity: 1
  }

  to {
    transform: scale(1.4);
    opacity: 0
  }
}

@keyframes ripple-wave {
  0% {
    transform: scale(0);
    opacity: 1
  }

  to {
    transform: scale(2.2);
    opacity: 0
  }
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--gray2)
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--t)
}

.faq-btn:hover {
  color: var(--blue)
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gray1);
  color: var(--gray3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background var(--t), color var(--t), transform var(--t)
}

.faq-item.open .faq-toggle {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg)
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .3s;
  font-size: .92rem;
  color: var(--text2);
  line-height: 1.75
}

.faq-item.open .faq-body {
  max-height: 300px;
  padding-bottom: 20px
}

/* ── FORM ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

@media(max-width:500px) {
  .form-row {
    grid-template-columns: 1fr
  }
}

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

.form-group label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text2);
  font-family: 'Outfit', sans-serif
}

.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--gray2);
  border-radius: var(--r-md);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  width: 100%;
  font-family: 'Outfit', sans-serif
}

.form-control:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(41, 147, 209, .14)
}

.form-control::placeholder {
  color: var(--gray3)
}

select.form-control {
  cursor: pointer
}

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

/* ── CTA SECTION ── */
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #0e3263 100%);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden
}

.cta-box::before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 147, 209, .2), transparent 70%);
  pointer-events: none
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif
}

.badge-sky {
  background: var(--sky-lt);
  color: var(--blue);
  border: 1px solid rgba(41, 147, 209, .2)
}

.badge-amber {
  background: var(--amber-lt);
  color: #9a6400;
  border: 1px solid rgba(245, 166, 35, .3)
}

.badge-green {
  background: #e8f8f2;
  color: var(--green);
  border: 1px solid rgba(26, 158, 94, .2)
}

.badge-red {
  background: #fdecea;
  color: var(--red);
  border: 1px solid rgba(217, 41, 28, .2)
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy2) 60%, #0e3263 100%);
  padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 6vw, 60px);
  position: relative;
  overflow: hidden
}

.page-hero .hero-dots {
  position: absolute;
  inset: 0
}

.page-hero-inner {
  position: relative;
  z-index: 2
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px
}

.page-hero .lead {
  color: rgba(255, 255, 255, .6);
  max-width: 540px
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  font-family: 'Outfit', sans-serif
}

.breadcrumb a {
  color: rgba(255, 255, 255, .55);
  transition: color var(--t)
}

.breadcrumb a:hover {
  color: var(--amber)
}

.breadcrumb i {
  font-size: .65rem
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ── BACK TO TOP ── */
#backTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--blue);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-blue);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all var(--t) var(--ease)
}

#backTop.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0)
}

#backTop:hover {
  background: var(--sky);
  transform: translateY(-3px)
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .65);
  padding: 80px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }
}

@media(max-width:520px) {
  .footer-grid {
    grid-template-columns: 1fr
  }
}

.footer-brand p {
  font-size: .88rem;
  margin-top: 16px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  max-width: 260px
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 16px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links a {
  font-size: .88rem;
  transition: color var(--t);
  display: flex;
  align-items: center;
  gap: 8px
}

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

.footer-links a i {
  font-size: .72rem;
  color: var(--sky);
  opacity: .7
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  margin-bottom: 12px
}

.footer-contact-row i {
  color: var(--amber);
  margin-top: 3px;
  flex-shrink: 0
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .3)
}

.footer-socials {
  display: flex;
  gap: 8px
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .45);
  font-size: .85rem;
  transition: all var(--t) var(--ease)
}

.social-btn:hover {
  border-color: var(--sky);
  color: var(--sky);
  transform: translateY(-2px)
}

@media print {

  .navbar,
  .emergency-strip,
  #backTop,
  .hamburger,
  .mobile-menu {
    display: none !important
  }

  body {
    color: #000
  }
}


/*for gas flame*/
/* 🔴 Premium Gas Card */
.srv-red {
  position: relative;
  background: linear-gradient(145deg, #fff6f5, #ffe9e7);
  color: #3b0a05;
  border: 1px solid rgba(217, 41, 28, 0.15);
  box-shadow:
    0 10px 30px rgba(217, 41, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

/* Soft gradient overlay */
.srv-red::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.6), transparent);
  opacity: 0;
}

/* 🔥 Premium hover */
.srv-red:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(217, 41, 28, 0.18),
    0 0 0 1px rgba(217, 41, 28, 0.2);
}

.srv-red:hover::before {
  opacity: 1;
}

.srv-red .card-icon-wrap {
  background: linear-gradient(135deg, #fff, #ffe3e0);
  color: #d9291c;
  box-shadow:
    0 6px 16px rgba(217, 41, 28, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  transition: all .35s ease;
}

/* Glow ring */
.srv-red .card-icon-wrap::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.35), transparent 70%);
  opacity: 0;
  transition: .3s;
}

/* Hover effect */
.srv-red:hover .card-icon-wrap {
  transform: scale(1.15) rotate(-6deg);
  box-shadow:
    0 10px 30px rgba(217, 41, 28, 0.25);
}

.srv-red:hover .card-icon-wrap::after {
  opacity: 1;
}

.srv-red .card-title {
  font-weight: 900;
  letter-spacing: -0.2px;
}

.srv-red .card-desc {
  opacity: 0.75;
  font-size: 0.82rem;
}

.srv-red .card-tag {
  background: linear-gradient(135deg, #ff6b5f, #d9291c);
  color: #fff;
  box-shadow: 0 4px 12px rgba(217, 41, 28, 0.25);
  border: none;
}

.srv-red .card-cta {
  font-weight: 700;
  position: relative;
}

/* underline animation */
.srv-red .card-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #d9291c;
  transition: width .3s ease;
}

.srv-red:hover .card-cta::after {
  width: 100%;
}

.srv-red::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: .6s;
}

.srv-red:hover::after {
  left: 120%;
}

/* ============================================================
   MOBILE & RESPONSIVE FIXES
   Breakpoints: 1024px · 900px · 768px · 600px · 480px · 360px
   ============================================================ */

/* ── Tablet landscape (≤1024px) ── */
@media (max-width: 1024px) {

  /* Nav: hide phone text, keep icon */
  .nav-phone span {
    display: none;
  }

  /* Hero inner: single col, centre text */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  /* Grid 2-col → 1-col earlier */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Stat grid: 2-col */
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer grid: 2-col */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ── Tablet portrait (≤900px) ── */
@media (max-width: 900px) {

  /* Container breathing room */
  .container {
    width: 94vw;
  }

  /* Section spacing */
  .section {
    padding: 56px 0;
  }

  /* CTA box: stack */
  .cta-box>div[style] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
  }

  /* Steps: full-width */
  .step {
    flex-direction: column;
    gap: 12px;
  }

  /* Trust bar: 2 items per row */
  .trust-list {
    justify-content: flex-start;
    gap: 14px;
  }

  .trust-div {
    display: none;
  }

  /* Quote card: full width */
  .quote-card {
    padding: 24px;
  }

  /* Service feature grid: 2-col */
  .svc-feature-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Page hero: smaller padding */
  .page-hero {
    padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 5vw, 3rem);
  }
}

/* ── Mobile landscape / large phones (≤768px) ── */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .nav-menu,
  .nav-actions .btn,
  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    height: 60px;
  }

  :root {
    --nav-h: 60px;
  }

  /* ── Emergency strip ── */
  .emergency-strip {
    font-size: .72rem;
    padding: 7px 12px;
    line-height: 1.5;
  }

  /* ── Typography scale-down ── */
  h1 {
    font-size: clamp(1.9rem, 7vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  h3 {
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  }

  /* ── Hero ── */
  .hero {
    padding: clamp(48px, 10vw, 80px) 0;
  }

  .hero-proof {
    gap: 20px;
  }

  .hero-stat-num {
    font-size: 1.7rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  /* ── Sections ── */
  .section {
    padding: 48px 0;
  }

  /* ── Cards grid: 1-col ── */
  .grid-2,
  [style*="grid-template-columns:repeat(auto-fill"] {
    /* handled individually below */
  }

  /* ── Service cards ── */
  .svc-card {
    padding: 22px;
  }

  /* ── Review cards: full scroll on mobile ── */
  .review-card {
    padding: 22px;
  }

  .review-text {
    font-size: .88rem;
  }

  /* ── Form ── */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* ── CTA box ── */
  .cta-box {
    padding: 32px 24px;
  }

  .cta-box h2 {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .site-footer {
    padding: 56px 0 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* ── Floating buttons ── */
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
  }

  .floating-btn--call {
    left: 16px;
    bottom: 20px;
  }

  .floating-btn--whatsapp {
    right: 16px;
    bottom: 84px;
  }

  /* ── Back to top: avoid overlap ── */
  #backTop {
    right: 16px;
    bottom: 20px;
  }

  /* ── FAQ ── */
  .faq-btn {
    font-size: .95rem;
    padding: 16px 0;
  }

  /* ── About page: value/cert cards ── */
  .value-card,
  .cert-card,
  .team-card {
    padding: 24px;
  }

  /* ── Promise strip: wrap nicely ── */
  .promise-strip {
    gap: 10px;
  }

  .promise-item {
    font-size: .8rem;
    padding: 7px 14px;
  }

  /* ── Timeline ── */
  .tl-item {
    gap: 14px;
  }

  .tl-year {
    font-size: .9rem;
    min-width: 36px;
  }

  .tl-desc {
    font-size: .82rem;
  }

  /* ── Breadcrumb ── */
  .breadcrumb {
    font-size: .76rem;
  }

  /* ── Section label ── */
  .section-label {
    font-size: .7rem;
    padding: 4px 12px;
  }
}

/* ── Mobile portrait (≤600px) ── */
@media (max-width: 600px) {

  /* Container: full bleed with safe padding */
  .container {
    width: 100%;
    padding: 0 16px;
  }

  /* Footer: full-width single column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  /* Stat grids: 2 per row */
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Service feature grid: 1-col */
  .svc-feature-grid {
    grid-template-columns: 1fr !important;
  }

  /* Auto-fill grids: force 1-col */
  [style*="minmax(250px"] {
    grid-template-columns: 1fr !important;
  }

  [style*="minmax(260px"] {
    grid-template-columns: 1fr !important;
  }

  [style*="minmax(200px"] {
    grid-template-columns: 1fr !important;
  }

  [style*="minmax(240px"] {
    grid-template-columns: 1fr !important;
  }

  /* Cards: reduce padding */
  .svc-card,
  .card {
    padding: 18px;
  }

  .stat-card,
  .stat-card-light {
    padding: 20px;
  }

  .review-card {
    padding: 18px 16px;
  }

  .why-card {
    padding: 18px;
  }

  /* CTA box */
  .cta-box {
    padding: 28px 16px;
    border-radius: var(--r-lg);
  }

  .cta-box div[style*="display:flex"][style*="gap:14px"] {
    flex-direction: column !important;
    width: 100%;
  }

  .cta-box .btn {
    width: 100% !important;
    justify-content: center;
  }

  /* Buttons: full width in stacked contexts */
  .btn-block {
    width: 100%;
  }

  /* Hero stats: 2-col grid */
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 24px;
  }

  /* Mobile menu: larger tap targets */
  .mobile-menu .nav-link {
    padding: 15px 16px;
    font-size: 1.1rem;
  }

  .mobile-cta .btn {
    padding: 14px 20px;
    font-size: 1rem;
  }

  /* Trust bar: 2-col */
  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Step items: tighter */
  .step {
    padding: 18px 16px;
  }

  .step-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* Page hero */
  .page-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .page-hero .lead {
    font-size: .9rem;
  }

  /* Service cards in about page */
  .value-card,
  .cert-card {
    padding: 20px;
  }

  /* Blog sidebar-style CTA */
  .blog-cta-card {
    padding: 24px 16px !important;
  }

  /* Contact info cards */
  .contact-info-card {
    padding: 20px 16px !important;
  }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {

  /* Typography */
  h1 {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
  }

  h2 {
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }

  /* Stat nums */
  .stat-num {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .hero-stat-num {
    font-size: 1.5rem;
  }

  /* Nav logo image */
  .nav-logo img {
    height: 36px !important;
    width: 36px !important;
  }

  /* Buttons */
  .btn {
    padding: 12px 20px;
    font-size: .9rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: .95rem;
  }

  .btn-sm {
    padding: 8px 14px;
    font-size: .82rem;
  }

  /* Emergency strip: allow wrap */
  .emergency-strip {
    font-size: .7rem;
    padding: 6px 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.6;
  }

  /* Hero proof: 2-col tight */
  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Trust list: single col */
  .trust-list {
    grid-template-columns: 1fr;
  }

  /* Section label */
  .section-label {
    font-size: .68rem;
    letter-spacing: .12em;
  }

  /* Cards: minimal padding */
  .svc-card,
  .card,
  .review-card,
  .why-card,
  .stat-card,
  .stat-card-light {
    padding: 16px;
  }

  /* Footer */
  .footer-contact-row {
    font-size: .82rem;
  }

  .social-btn {
    width: 32px;
    height: 32px;
    font-size: .8rem;
  }

  /* Floating btns: avoid overlap with content */
  .floating-btn--call {
    left: 12px;
    bottom: 16px;
  }

  .floating-btn--whatsapp {
    right: 12px;
    bottom: 78px;
  }

  #backTop {
    right: 12px;
    bottom: 16px;
  }

  /* FAQ */
  .faq-btn {
    font-size: .9rem;
  }

  .faq-body {
    font-size: .87rem;
  }

  /* Form */
  .form-control {
    padding: 11px 14px;
    font-size: .9rem;
  }

  /* Badge: smaller */
  .badge {
    font-size: .7rem;
    padding: 3px 10px;
  }

  /* Promise strip: stack */
  .promise-strip {
    flex-direction: column;
    gap: 8px;
  }

  .promise-item {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ── Extra small phones (≤360px) ── */
@media (max-width: 360px) {
  :root {
    --nav-h: 56px;
  }

  .container {
    padding: 0 12px;
  }

  h1 {
    font-size: 1.55rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .btn {
    padding: 11px 16px;
    font-size: .85rem;
  }

  .btn-lg {
    padding: 13px 18px;
    font-size: .9rem;
  }

  /* Hero stats: single col on very small */
  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Floating buttons: smaller */
  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }

  /* Footer: tighten */
  .site-footer {
    padding: 40px 0 0;
  }

  .footer-grid {
    gap: 20px;
  }

  /* Section spacing */
  .section {
    padding: 36px 0;
  }

  /* Card minimal */
  .svc-card,
  .card {
    padding: 14px;
    border-radius: var(--r-md);
  }

  /* Emergency strip: really small */
  .emergency-strip {
    font-size: .65rem;
  }

  /* Stat grid: 1-col on very small */
  .stat-grid {
    grid-template-columns: 1fr;
  }

  /* Trust: 1-col */
  .trust-list {
    grid-template-columns: 1fr;
  }
}

/* ── Touch & interaction improvements ── */
@media (hover: none) and (pointer: coarse) {

  /* Larger tap targets */
  .nav-link {
    padding: 10px 14px;
    min-height: 44px;
  }

  .btn {
    min-height: 44px;
  }

  .faq-btn {
    min-height: 48px;
  }

  .drop-item {
    padding: 12px 14px;
    min-height: 44px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
  }

  /* Disable hover transforms on touch — avoids stuck states */
  .card:hover,
  .svc-card:hover,
  .step:hover,
  .why-card:hover,
  .value-card:hover,
  .cert-card:hover,
  .team-card:hover {
    transform: none;
    box-shadow: var(--sh-sm);
  }

  .btn:hover {
    transform: none;
  }

  .btn-primary:hover {
    background: var(--blue);
  }

  .btn-amber:hover {
    background: var(--amber);
  }

  .social-btn:hover {
    transform: none;
  }

  .floating-btn:hover {
    transform: none;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .floating-btn::before {
    animation: none;
  }
}

/* ── Safe area insets (iPhone notch / home bar) ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .floating-btn--call {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .floating-btn--whatsapp {
    bottom: calc(84px + env(safe-area-inset-bottom));
  }

  #backTop {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .mobile-menu {
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }
}