/* ============================================================
   ACT FAST PLUMBING — Premium Demo Stylesheet
   SiteLift Demo — Confidential
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0d1f3c;
  --navy-light:  #132347;
  --orange:      #FF6B35;
  --orange-light:#FF8C5A;
  --orange-dark: #e55a25;
  --white:       #ffffff;
  --gray-100:    #f8f9fa;
  --gray-200:    #e9ecef;
  --gray-600:    #6c757d;
  --gray-800:    #343a40;
  --gold:        #f5c518;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.18);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.26);
  --shadow-orange: 0 8px 32px rgba(255,107,53,0.35);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:   'Barlow', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { line-height: 1.75; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--gray {
  background: var(--gray-100);
}

.section--navy-mid {
  background: var(--navy-mid);
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 3rem;
}

.section-subtitle--light {
  color: rgba(255,255,255,0.7);
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-orange { color: var(--orange); }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,53,0.45);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn--outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-main {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}

.nav__logo-main span {
  color: var(--orange);
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

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

.nav__phone {
  background: var(--orange);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__phone:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,107,53,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(19,35,71,0.8) 0%, transparent 50%),
    linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
  z-index: 1;
}

#ripple-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 72px;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--orange-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.2s forwards;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 800px;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.4s forwards;
}

.hero__title .accent {
  color: var(--orange);
  position: relative;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.8s forwards;
}

.hero__trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 1s forwards;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}

.trust-badge:hover {
  background: rgba(255,107,53,0.1);
  border-color: rgba(255,107,53,0.3);
}

.trust-badge__icon {
  font-size: 1.1rem;
}

.trust-badge__stars {
  color: var(--gold);
  letter-spacing: 1px;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PIPE SVG DECORATION
   ============================================================ */
.hero__pipe {
  position: absolute;
  right: 4%;
  bottom: 0;
  z-index: 5;
  opacity: 0.85;
  width: 200px;
  animation: fadeSlideUp 1s ease 1.2s both;
}

.drip {
  animation: drip 2.2s ease-in infinite;
  transform-origin: top center;
}

.drip-2 {
  animation-delay: 1.1s;
}

@keyframes drip {
  0%   { transform: translateY(0) scaleY(0.3); opacity: 0; }
  15%  { opacity: 1; transform: translateY(0) scaleY(1); }
  85%  { transform: translateY(60px) scaleY(1.2); opacity: 0.8; }
  100% { transform: translateY(80px) scaleY(0.2); opacity: 0; }
}

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeSlideUp 1s ease 1.5s both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 0.1; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a0a00 100%);
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255,107,53,0.12) 0%, transparent 60%),
    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.02'%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");
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 24px 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.page-hero__breadcrumb a:hover {
  color: var(--orange);
}

.page-hero__breadcrumb span {
  color: var(--orange);
}

.page-hero__title {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero__subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 500px;
}

/* ============================================================
   EMERGENCY BANNER
   ============================================================ */
.emergency-bar {
  background: var(--orange);
  padding: 0.7rem 24px;
  text-align: center;
}

.emergency-bar p {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

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

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,53,0.2);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,107,53,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--orange);
}

.service-card:hover .service-card__icon svg {
  color: var(--white);
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
  transition: var(--transition);
}

.service-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card__text {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-card__link:hover {
  gap: 0.6rem;
}

/* ============================================================
   DETAILED SERVICE SECTIONS (services.html)
   ============================================================ */
.service-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-section:last-child {
  border-bottom: none;
}

.service-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.service-section:nth-child(even) .service-section__grid {
  direction: rtl;
}

.service-section:nth-child(even) .service-section__grid > * {
  direction: ltr;
}

.service-section__icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-orange);
}

.service-section__icon-wrap svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.service-section__title {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.service-section__desc {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-section__includes {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-section__includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-800);
  font-size: 0.92rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon::after {
  content: '✓';
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.service-section__visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.service-section__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.08), transparent 70%);
}

.service-section__visual-icon {
  width: 100px;
  height: 100px;
  background: rgba(255,107,53,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.service-section__visual-icon svg {
  width: 52px;
  height: 52px;
  color: var(--orange);
}

.service-visual-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}

/* ============================================================
   WHY CHOOSE US / FEATURE CARDS
   ============================================================ */
.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.feature-card__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-orange);
}

.feature-card__icon svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.feature-card__title {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.feature-card__text {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews__hero-stat {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews__score {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 5rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.reviews__stars {
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}

.reviews__count {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

.review-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,53,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.review-card__date {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-card__text {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.7;
}

.review-card__google {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #0d1f3c 0%, var(--navy) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.08), transparent 65%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner__phone {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--orange);
  display: block;
  margin: 1rem 0;
  letter-spacing: 0.03em;
  line-height: 1;
  transition: var(--transition);
}

.cta-banner__phone:hover {
  color: var(--orange-light);
  transform: scale(1.02);
}

.cta-banner__sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ============================================================
   CONTACT SECTION (teaser)
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,107,53,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.contact-info-item__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-item__value {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.form-group--dark label {
  color: rgba(255,255,255,0.8);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--white);
  color: var(--gray-800);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}

.form-control--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}

.form-control--dark::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-control--dark:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.08);
}

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

select.form-control {
  cursor: pointer;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(255,107,53,0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-card__title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.value-card__text {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.accreditation-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.accreditation-card__badge {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.accreditation-card__title {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.accreditation-card__sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}

/* ============================================================
   MAPS PLACEHOLDER
   ============================================================ */
.map-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255,107,53,0.06), transparent 60%);
}

.map-placeholder__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,107,53,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.map-placeholder__icon svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
}

.map-placeholder__text {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.map-placeholder__sub {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--navy-light);
}

.stat-item__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   EMERGENCY CALLOUT (between service sections)
   ============================================================ */
.emergency-callout {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 3rem 0;
}

.emergency-callout__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.emergency-callout__icon {
  font-size: 2.5rem;
}

.emergency-callout__title {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.emergency-callout__sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060f1e;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__brand-name span {
  color: var(--orange);
}

.footer__tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--orange);
  color: var(--white);
}

.footer__col-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

.footer__contact-icon {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.85rem;
}

.footer__bottom {
  padding: 1.5rem 24px;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

.footer__bottom strong {
  color: var(--orange);
}

/* ============================================================
   DEMO BADGE
   ============================================================ */
.demo-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 500;
  pointer-events: none;
}

.demo-badge span {
  color: var(--orange);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .service-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .service-section:nth-child(even) .service-section__grid { direction: ltr; }
  .service-section__visual { min-height: 280px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,22,40,0.98);
    padding: 1.5rem 24px;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .hero__actions { flex-direction: column; max-width: 300px; }
  .hero__trust { gap: 0.75rem; }
  .trust-badge { font-size: 0.75rem; padding: 0.5rem 0.75rem; }
  .hero__pipe { width: 120px; opacity: 0.5; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .accreditation-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .emergency-callout { flex-direction: column; text-align: center; }
  .emergency-callout__left { flex-direction: column; text-align: center; }
  .page-hero { min-height: 280px; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .nav__inner { padding: 0 16px; }
  .hero__content { padding: 0 16px; padding-top: 72px; }
  .cta-banner__phone { font-size: 2rem; }
  .stat-item__num { font-size: 2rem; }
  .trust-badge { width: 100%; justify-content: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
