/* ===========================
   REACT FIX 24/7 — Stylesheet
   =========================== */

:root {
  --primary: #0d1b2a;
  --primary-light: #1b3a5c;
  --accent: #e85d04;
  --accent-dark: #c44d00;
  --red: #991b1b;
  --red-dark: #7f1d1d;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --light: #eef2f7;
  --text: #1a202c;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.14);
  --radius: 12px;
  --t: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; line-height: 1.3; }
p { line-height: 1.75; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: white; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,93,4,0.35); }

.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: white; color: var(--primary); border-color: white; transform: translateY(-2px); }

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

.btn-emergency { background: var(--red); color: white; border-color: var(--red); animation: pulse-red 2.5s infinite; }
.btn-emergency:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(153,27,27,0.4); }
  50% { box-shadow: 0 0 0 7px rgba(153,27,27,0); }
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 0.55rem 0;
  font-size: 0.82rem;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.top-bar a { color: white; font-weight: 600; transition: var(--t); }
.top-bar a:hover { color: var(--accent); }
.top-bar-contact { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.top-bar-contact span { display: flex; align-items: center; gap: 0.35rem; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: var(--t);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; gap: 1.5rem; }

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 1px;
}
.logo span { color: var(--accent); }
.logo small { font-size: 0.6rem; font-weight: 500; color: var(--text-light); letter-spacing: 0.06em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--primary); }
.menu-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; transition: var(--t); border-radius: 2px; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 500;
  flex-direction: column;
  padding: 1.75rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.mobile-nav .logo { color: white; }
.mobile-nav-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.75rem; cursor: pointer; line-height: 1; padding: 4px; }
.mobile-nav-close:hover { color: white; }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--t);
}
.mobile-nav-links a:hover { color: white; padding-left: 0.5rem; }
.mobile-nav-footer { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-nav-footer a { display: flex; align-items: center; gap: 0.6rem; color: white; font-size: 1rem; font-weight: 600; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #122844 55%, var(--primary-light) 100%);
  color: white;
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 40%, rgba(21,101,192,0.25) 0%, transparent 55%),
    radial-gradient(circle at 15% 75%, rgba(232,93,4,0.12) 0%, transparent 45%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: 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='%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/svg%3E");
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,93,4,0.15);
  border: 1px solid rgba(232,93,4,0.4);
  color: #ffab6e;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 em { font-style: normal; color: #ff8c42; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 1.75rem; max-width: 500px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-contact { margin-top: 2.25rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-contact p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.hero-phones { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-phones a { font-size: 1.05rem; font-weight: 700; color: white; display: flex; align-items: center; gap: 0.4rem; transition: var(--t); }
.hero-phones a:hover { color: #ff8c42; }

/* Hero right — service cards */
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  transition: var(--t);
}
.hero-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.hero-card-icon { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
.hero-card h4 { color: white; margin-bottom: 0.2rem; font-size: 0.95rem; }
.hero-card p { color: rgba(255,255,255,0.6); font-size: 0.78rem; line-height: 1.5; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--accent); color: white; padding: 1.1rem 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 0.4rem 1rem; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-size: 1.7rem; font-weight: 800; line-height: 1.1; }
.stat-label { font-size: 0.75rem; opacity: 0.85; font-weight: 500; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header p { color: var(--text-mid); font-size: 1rem; margin-top: 0.6rem; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; }
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem 1.65rem;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  transition: var(--t);
}
.service-card:hover .service-icon { background: var(--accent); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.service-card p { color: var(--text-mid); font-size: 0.875rem; line-height: 1.65; }

/* Services page — expanded detail card */
.service-detail {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--t);
  align-items: start;
}
.service-detail:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.service-detail .service-icon { margin-bottom: 0; width: 56px; height: 56px; font-size: 1.75rem; flex-shrink: 0; }
.service-detail h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.service-detail p { color: var(--text-mid); font-size: 0.9rem; }
.services-detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.25rem; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 16.66%; right: 16.66%;
  height: 2px;
  background: linear-gradient(to right, var(--border), var(--accent), var(--border));
}
.process-step { text-align: center; padding: 0 1rem; }
.process-num {
  width: 64px; height: 64px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(232,93,4,0.35);
}
.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--text-mid); font-size: 0.875rem; }

/* ===== EMERGENCY ===== */
.emergency-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #a31c1c 100%);
  color: white;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.emergency-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 25% 50%, rgba(255,255,255,0.05) 0%, transparent 55%);
}
.emergency-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.emergency-inner h2 { margin-bottom: 0.85rem; }
.emergency-inner > div > p { color: rgba(255,255,255,0.78); margin-bottom: 1.5rem; max-width: 420px; }
.emergency-call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--red-dark);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  transition: var(--t);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.emergency-call-link:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.emergency-pricing { display: flex; flex-direction: column; gap: 1rem; }
.pricing-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.pricing-time { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin-bottom: 0.3rem; }
.pricing-rate { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.2rem; }
.pricing-note { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; }
.about-img-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 20px;
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}
.about-img-icon { font-size: 7rem; position: relative; z-index: 1; }
.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--accent);
  color: white;
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .num { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.about-badge .lbl { font-size: 0.7rem; opacity: 0.9; margin-top: 2px; }
.about-content h2 { margin-bottom: 0.85rem; }
.about-content > p { color: var(--text-mid); margin-bottom: 0.85rem; }
.about-features { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.25rem 0 1.75rem; }
.about-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 500; }
.about-feature::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; min-width: 22px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem; font-weight: 700;
}
.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== WHO WE SERVE ===== */
.serve-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.serve-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: var(--t);
}
.serve-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.serve-icon { font-size: 2.25rem; min-width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; background: var(--light); border-radius: 12px; flex-shrink: 0; }
.serve-card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.serve-card p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.65; }

/* ===== QUOTE SECTION ===== */
.quote-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 5rem 0;
}
.quote-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.quote-info h2 { margin-bottom: 0.85rem; }
.quote-info > p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; }
.quote-details { display: flex; flex-direction: column; gap: 0.9rem; }
.quote-detail { display: flex; align-items: center; gap: 1rem; }
.quote-detail-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.quote-detail-text strong { display: block; color: white; font-size: 0.875rem; }
.quote-detail-text span { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
.quote-form-card { background: white; border-radius: 16px; padding: 2.25rem; }
.quote-form-card h3 { margin-bottom: 1.5rem; color: var(--text); font-size: 1.2rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: inherit;
  background: var(--off-white);
  transition: var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); background: white; box-shadow: 0 0 0 3px rgba(232,93,4,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 0.95rem;
  background: var(--accent); color: white;
  border: none; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: var(--t);
}
.form-submit:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(232,93,4,0.35); }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success .icon { font-size: 3rem; margin-bottom: 0.75rem; }
.form-success h3 { color: var(--text); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-mid); font-size: 0.9rem; }

/* ===== COVERAGE ===== */
.coverage-section { padding: 4rem 0; }
.coverage-section .section-header { margin-bottom: 2rem; }
.areas-list { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; max-width: 860px; margin: 0 auto; }
.area-tag {
  background: var(--light);
  color: var(--text-mid);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--t);
  cursor: default;
}
.area-tag:hover { background: var(--accent); color: white; transform: translateY(-2px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(21,101,192,0.2) 0%, transparent 55%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.page-hero-inner .section-label { color: rgba(255,255,255,0.55); }
.page-hero-inner h1 { margin-bottom: 0.8rem; }
.page-hero-inner p { color: rgba(255,255,255,0.72); font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer { background: var(--primary); color: white; padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: white; margin-bottom: 0.85rem; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.7; max-width: 270px; }
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 1.1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: var(--t); }
.footer-col ul li a:hover { color: white; }
.footer-contact-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact-links a { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: var(--t); }
.footer-contact-links a:hover { color: white; }
.footer-address { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.7; margin-top: 0.5rem; }
.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: var(--t); }
.footer-bottom a:hover { color: white; }

/* ===== FLOATING CALL BTN ===== */
.float-call {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
}
.float-call-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: white;
  padding: 0.9rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(232,93,4,0.5);
  transition: var(--t);
  animation: pulse-float 2.5s infinite;
}
.float-call-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 30px rgba(232,93,4,0.6); }
@keyframes pulse-float {
  0%, 100% { box-shadow: 0 6px 20px rgba(232,93,4,0.5); }
  50% { box-shadow: 0 6px 28px rgba(232,93,4,0.7), 0 0 0 8px rgba(232,93,4,0.12); }
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.1s; }
.fade-up:nth-child(6) { transition-delay: 0.2s; }
.fade-up:nth-child(7) { transition-delay: 0.3s; }
.fade-up:nth-child(8) { transition-delay: 0.4s; }

/* ===== ABOUT PAGE ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.value-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; text-align: center; transition: var(--t); }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-card .icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.value-card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.value-card p { font-size: 0.875rem; color: var(--text-mid); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .emergency-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .serve-grid { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .top-bar-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
  .float-call-btn .call-label { display: none; }
  .float-call-btn { padding: 0.9rem 1rem; border-radius: 50%; gap: 0; }
}

@media (max-width: 480px) {
  .hero { padding: 3.5rem 0; }
  .section { padding: 3.5rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-phones { flex-direction: column; gap: 0.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .serve-card { flex-direction: column; }
}
