/* ============================================================
   HYDRO RECOVERY GROUP — style.css
   Mobile-first. Breakpoints: 480 | 768 | 1024 | 1280
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #0B2C6E;
  --blue:       #1565C0;
  --yellow:     #F5A623;
  --yellow-dk:  #D4891A;
  --white:      #FFFFFF;
  --gray-bg:    #F4F6F9;
  --gray-lt:    #E8ECF2;
  --gray-mid:   #8A96A8;
  --dark:       #1A1A2E;
  --shadow-sm:  0 2px 8px rgba(11,44,110,0.10);
  --shadow-md:  0 6px 24px rgba(11,44,110,0.14);
  --shadow-lg:  0 12px 40px rgba(11,44,110,0.18);
  --radius:     10px;
  --radius-lg:  16px;
  --transition: 0.22s ease;
  --header-h:   72px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: #4A5568; }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-title {
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--gray-mid);
  font-size: 1.05rem;
}
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-navy   { background: var(--navy); }
.bg-gray   { background: var(--gray-bg); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all var(--transition);
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.btn-primary:hover {
  background: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: #0a2460;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: background var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img {
  height: 48px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-text span {
  color: var(--yellow);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* Nav */
.nav { display: none; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active {
  color: var(--yellow);
  background: rgba(255,255,255,0.06);
}

/* Services dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  background: var(--gray-bg);
  color: var(--blue);
  padding-left: 26px;
}
.dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Header phone */
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  flex-shrink: 0;
}
.header-phone:hover {
  background: var(--yellow-dk);
  transform: translateY(-1px);
}
.header-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 20px 100px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: background var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); }
.mobile-nav .mobile-nav-heading {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 16px 8px;
}
.mobile-nav .mobile-cta {
  margin-top: 20px;
  background: var(--yellow);
  color: var(--navy) !important;
  text-align: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 16px !important;
  border-bottom: none !important;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,44,110,0.88) 0%,
    rgba(11,44,110,0.60) 55%,
    rgba(11,44,110,0.40) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0 80px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--yellow);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge span.dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.80);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-trust-item svg {
  color: var(--yellow);
  flex-shrink: 0;
  width: 16px; height: 16px;
}

/* Service hero (sub-pages) */
.service-hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 60px;
  overflow: hidden;
}
.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.service-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,44,110,0.90) 0%, rgba(11,44,110,0.65) 100%);
}
.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.service-hero h1 { color: var(--white); margin-bottom: 16px; }
.service-hero p  { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { opacity: 0.5; }

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-lt);
  padding: 0;
  box-shadow: var(--shadow-sm);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid var(--gray-lt);
  border-bottom: 1px solid var(--gray-lt);
  transition: background var(--transition);
}
.trust-item:hover { background: var(--gray-bg); }
.trust-icon {
  width: 44px; height: 44px;
  background: rgba(21,101,192,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.3;
}

/* ── Services Grid ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21,101,192,0.2);
}
.service-card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(21,101,192,0.10), rgba(11,44,110,0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.service-card-icon svg { width: 30px; height: 30px; }
.service-card h3 { color: var(--navy); font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; flex: 1; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: gap var(--transition);
  margin-top: 4px;
}
.service-card .learn-more:hover { gap: 10px; color: var(--navy); }
.service-card .learn-more svg { width: 14px; height: 14px; }

/* ── Process Section ────────────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-step {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 70px;
  width: 2px;
  height: calc(100% - 42px);
  background: linear-gradient(to bottom, var(--blue), rgba(21,101,192,0.2));
}
.step-num {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11,44,110,0.3);
  position: relative;
  z-index: 1;
}
.step-body h3 { margin-bottom: 6px; font-size: 1rem; }
.step-body p { font-size: 0.88rem; }

/* ── Feature Bullets (service pages) ───────────────────────── */
.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.feature-bullet {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-bullet-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11,44,110,0.25);
}
.feature-bullet-icon svg { width: 24px; height: 24px; }
.feature-bullet h4 { margin-bottom: 4px; font-size: 1rem; color: var(--navy); }
.feature-bullet p { font-size: 0.88rem; }

/* ── Commercial Section ─────────────────────────────────────── */
.commercial-section {
  background: var(--navy);
  overflow: hidden;
}
.commercial-inner {
  display: flex;
  flex-direction: column;
}
.commercial-image {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.commercial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.commercial-content {
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.commercial-content h2 { color: var(--white); }
.commercial-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.commercial-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
.commercial-bullet svg {
  color: var(--yellow);
  flex-shrink: 0;
  width: 20px; height: 20px;
}

/* ── CTA Strip ──────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3584 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.cta-strip .available-badge {
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--yellow);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cta-strip h2 { color: var(--white); margin-bottom: 4px; }
.cta-strip .cta-phone {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  margin: 8px 0;
}
.cta-strip .cta-phone a { color: inherit; }
.cta-strip .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

/* ── Why Choose Us ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(21,101,192,0.10), rgba(11,44,110,0.07));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin: 0 auto 18px;
}
.why-card-icon svg { width: 28px; height: 28px; }
.why-card h3 { margin-bottom: 10px; font-size: 1rem; }
.why-card p { font-size: 0.88rem; margin-bottom: 14px; }
.why-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.why-card .learn-more:hover { gap: 10px; }
.why-card .learn-more svg { width: 14px; height: 14px; }

/* ── Content Split (service pages) ─────────────────────────── */
.content-split {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.content-split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.content-split-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.content-split-text { display: flex; flex-direction: column; gap: 16px; }
.content-split-text h2 { color: var(--navy); }
.content-split-text p  { font-size: 0.95rem; }

/* ── Related Services ───────────────────────────────────────── */
.related-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.related-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21,101,192,0.2);
}
.related-card-icon {
  width: 44px; height: 44px;
  background: rgba(21,101,192,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.related-card-icon svg { width: 22px; height: 22px; }
.related-card h4 { margin-bottom: 2px; font-size: 0.9rem; }
.related-card p  { font-size: 0.8rem; color: var(--gray-mid); }
.related-card .arrow {
  margin-left: auto;
  color: var(--gray-mid);
  transition: all var(--transition);
  flex-shrink: 0;
}
.related-card:hover .arrow { color: var(--blue); transform: translateX(4px); }

/* ── About Page ─────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--navy), #163b8f);
  padding: calc(var(--header-h) + 60px) 0 60px;
}
.about-hero h1 { color: var(--white); margin-bottom: 16px; }
.about-hero p  { color: rgba(255,255,255,0.80); font-size: 1.05rem; max-width: 600px; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-lt);
  text-align: center;
}
.value-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
}
.value-icon.speed   { background: rgba(245,166,35,0.15); }
.value-icon.expert  { background: rgba(21,101,192,0.12); }
.value-icon.care    { background: rgba(11,44,110,0.10); }
.value-card h3 { margin-bottom: 10px; }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--navy), #163b8f);
  padding: calc(var(--header-h) + 60px) 0 60px;
}
.contact-hero h1 { color: var(--white); margin-bottom: 14px; }
.contact-hero p  { color: rgba(255,255,255,0.80); font-size: 1.05rem; }

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h2 { margin-bottom: 24px; font-size: 1.4rem; }

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group label .req { color: #E53E3E; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-lt);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A96A8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; }
.form-status { margin-top: 14px; padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; display: none; }
.form-status.success { background: #F0FFF4; color: #276749; border: 1px solid #9AE6B4; display: block; }
.form-status.error   { background: #FFF5F5; color: #C53030; border: 1px solid #FEB2B2; display: block; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-block {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.contact-info-block h3 { margin-bottom: 16px; font-size: 1rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label { font-size: 0.78rem; color: var(--gray-mid); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-value { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.contact-info-value a { color: var(--blue); }
.contact-info-value a:hover { text-decoration: underline; }

.contact-emergency {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.contact-emergency h3 { color: var(--white); margin-bottom: 8px; }
.contact-emergency p  { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 20px; }
.contact-emergency .emerg-phone {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 14px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-tagline { margin-top: 12px; font-size: 0.88rem; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--navy); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: var(--yellow); }
.footer-col a svg { width: 12px; height: 12px; opacity: 0.5; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer-contact-item svg { color: var(--yellow); width: 16px; height: 16px; flex-shrink: 0; }
.footer-contact-item a { color: inherit; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ── Mobile Sticky CTA Bar ──────────────────────────────────── */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--navy);
  border-top: 2px solid var(--yellow);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 12px 8px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.mobile-cta-bar a:hover  { background: rgba(255,255,255,0.08); }
.mobile-cta-bar a.primary { background: var(--yellow); color: var(--navy); }
.mobile-cta-bar a.primary:hover { background: var(--yellow-dk); }
.mobile-cta-bar svg { width: 20px; height: 20px; }

/* ── Chat Widget ─────────────────────────────────────────────── */
.chat-widget {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.chat-toggle-btn {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  border: 2px solid var(--yellow);
  flex-shrink: 0;
}
.chat-toggle-btn:hover {
  transform: scale(1.08);
  background: var(--blue);
}
.chat-toggle-btn svg { width: 24px; height: 24px; }
.chat-toggle-btn .chat-icon-open  { display: flex; }
.chat-toggle-btn .chat-icon-close { display: none; }
.chat-widget.open .chat-icon-open  { display: none; }
.chat-widget.open .chat-icon-close { display: flex; }

.chat-panel {
  display: none;
  flex-direction: column;
  width: min(340px, calc(100vw - 32px));
  height: 460px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-lt);
  animation: chatSlideUp 0.25s ease;
}
.chat-widget.open .chat-panel { display: flex; }
@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-header {
  background: var(--navy);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.chat-avatar {
  width: 38px; height: 38px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.chat-avatar svg { width: 20px; height: 20px; }
.chat-header-text { flex: 1; }
.chat-header-text strong { color: var(--white); font-size: 0.88rem; display: block; }
.chat-header-text span { color: rgba(255,255,255,0.6); font-size: 0.75rem; }
.chat-online { width: 8px; height: 8px; background: #48BB78; border-radius: 50%; margin-left: auto; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(72,187,120,0.3); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--gray-lt); border-radius: 4px; }

.chat-msg {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  word-break: break-word;
}
.chat-msg.bot {
  background: var(--gray-bg);
  border: 1px solid var(--gray-lt);
  color: var(--dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--navy);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg.typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
}
.chat-msg.typing span {
  width: 6px; height: 6px;
  background: var(--gray-mid);
  border-radius: 50%;
  animation: typing-dot 1.2s infinite;
}
.chat-msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.chat-footer { flex-shrink: 0; }
.chat-phone-cta {
  background: rgba(245,166,35,0.08);
  border-top: 1px solid rgba(245,166,35,0.2);
  padding: 8px 14px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 600;
}
.chat-phone-cta a { color: var(--blue); font-weight: 700; }
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--gray-lt);
  background: var(--white);
}
.chat-input {
  flex: 1;
  border: 1.5px solid var(--gray-lt);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 0.85rem;
  resize: none;
  outline: none;
  transition: border-color var(--transition);
  max-height: 80px;
  line-height: 1.4;
}
.chat-input:focus { border-color: var(--blue); }
.chat-send-btn {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
  flex-shrink: 0;
  align-self: flex-end;
}
.chat-send-btn:hover { background: var(--blue); }
.chat-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.chat-send-btn svg { width: 16px; height: 16px; }

/* ── Page body offset ───────────────────────────────────────── */
body { padding-top: 0; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Misc helpers ───────────────────────────────────────────── */
.divider {
  width: 56px; height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 16px auto 0;
}
.divider-left { margin: 16px 0 0; }

.badge {
  display: inline-block;
  background: rgba(21,101,192,0.10);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .related-services { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav { display: flex; align-items: center; }
  .header-phone { display: flex; }
  .mobile-cta-bar { display: none; }
  .chat-widget { bottom: 32px; right: 32px; }

  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
  .trust-item { border-bottom: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: repeat(3, 1fr); }
  .related-services { grid-template-columns: repeat(3, 1fr); }

  .content-split { flex-direction: row; align-items: center; }
  .content-split-image { flex: 1; }
  .content-split-image img { height: 400px; }
  .content-split-text { flex: 1; }
  .content-split.reverse { flex-direction: row-reverse; }

  .commercial-inner { flex-direction: row; min-height: 480px; }
  .commercial-image { flex: 1; min-height: auto; }
  .commercial-content { flex: 1; padding: 60px 48px; justify-content: center; }

  .process-steps {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
  }
  .process-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
  }
  .process-step:not(:last-child)::after {
    left: auto;
    right: -1px;
    top: 23px;
    width: calc(100% - 48px - 32px);
    height: 2px;
    left: calc(50% + 24px + 8px);
  }

  .contact-grid { flex-direction: row; align-items: flex-start; }
  .contact-form-wrap { flex: 1.2; }
  .contact-info { flex: 0.8; }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid      { grid-template-columns: repeat(4, 1fr); }
  .feature-bullets { flex-direction: row; flex-wrap: wrap; }
  .feature-bullet  { flex: 1; min-width: 240px; }

  .hero-content { padding: 80px 0 100px; }
}

/* ============================================================
   RESPONSIVE — 1280px
   ============================================================ */
@media (min-width: 1280px) {
  .container { padding: 0 40px; }
}
