/* ============================================
   SK SERVICES — Gas Line Specialists GTA
   Main Stylesheet
   ============================================ */

:root {
  --red-emergency: #b71c1c;
  --red-primary:   #c62828;
  --red-dark:      #8b0000;
  --red-light:     #ef5350;
  --dark-1: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #2d2d2d;
  --dark-4: #3d3d3d;
  --white:  #ffffff;
  --gray-1: #f8f9fa;
  --gray-2: #eeeeee;
  --gray-3: #e0e0e0;
  --gray-4: #9e9e9e;
  --text-1: #1a1a1a;
  --text-2: #444444;
  --text-3: #777777;
  --gold:   #ffc107;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --radius:    8px;
  --radius-lg: 16px;
  --transition: all .3s ease;
  --max-w: 1200px;
}

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

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-1);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
ul  { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── EMERGENCY BANNER ── */
.emergency-banner {
  background: var(--red-emergency);
  color: var(--white);
  padding: 9px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1010;
  box-shadow: 0 2px 12px rgba(183,28,28,.5);
}
.emergency-banner .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.emergency-banner .pulse-text {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.55} }

.emergency-banner .phones { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.emergency-banner .phones a {
  color: var(--white);
  font-weight: 700;
  font-size: .92rem;
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 3px 14px;
  border-radius: 20px;
}
.emergency-banner .phones a:hover { background: rgba(255,255,255,.18); border-color: var(--white); }

/* ── NAVBAR ── */
.site-header {
  position: sticky;
  top: 38px;
  z-index: 1000;
}
.navbar {
  background: var(--dark-2);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--red-primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.logo-name { font-size: 1.25rem; font-weight: 800; color: var(--white); line-height: 1; }
.logo-sub  { font-size: .6rem; color: var(--gray-4); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: #cccccc;
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(198,40,40,.2); }
.nav-links .nav-cta { background: var(--red-primary); color: var(--white) !important; padding: 8px 18px; }
.nav-links .nav-cta:hover { background: var(--red-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700; font-size: .9rem;
  text-transform: uppercase; letter-spacing: .06em;
  cursor: pointer; border: none;
  transition: var(--transition);
}
.btn-primary { background: var(--red-primary); color: var(--white); box-shadow: 0 4px 14px rgba(198,40,40,.3); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(198,40,40,.4); }
.btn-outline-w { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-w:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--red-primary); }
.btn-white:hover { background: #f5f5f5; transform: translateY(-2px); }
.btn-outline-r { background: transparent; color: var(--red-primary); border: 2px solid var(--red-primary); }
.btn-outline-r:hover { background: var(--red-primary); color: var(--white); }
.btn-lg { padding: 16px 38px; font-size: .95rem; }

/* ── SECTION BASE ── */
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--red-primary); margin-bottom: 10px;
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-title {
  font-size: 2.3rem; font-weight: 900;
  color: var(--text-1); line-height: 1.15;
  margin-bottom: 14px;
}
.section-title span { color: var(--red-primary); }
.section-sub { font-size: 1rem; color: var(--text-3); max-width: 580px; margin: 0 auto; }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 45%, #2a0808 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 80px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(198,40,40,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to top right, var(--gray-1) 49%, transparent 51%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(198,40,40,.15);
  border: 1px solid rgba(198,40,40,.3);
  color: var(--red-light);
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 18px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--red-light); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.6} }

.hero h1 {
  font-size: 3.2rem; font-weight: 900;
  color: var(--white); line-height: 1.08;
  margin-bottom: 18px; letter-spacing: -.02em;
}
.hero h1 span { color: var(--red-light); }

.hero-desc {
  font-size: 1.05rem; color: #aaa;
  margin-bottom: 32px; max-width: 460px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: #888; font-size: .82rem;
}
.hero-trust-item svg { color: var(--red-light); flex-shrink: 0; width: 16px; height: 16px; }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 30px 30px 56px; width: 100%; max-width: 400px;
  position: relative; backdrop-filter: blur(10px);
}
.hc-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.hc-icon svg { width: 28px; height: 28px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 6px; }
.hero-card p { color: #888; font-size: .88rem; margin-bottom: 18px; }
.hero-card-list { display: flex; flex-direction: column; gap: 10px; }
.hcl-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px; padding: 10px 14px;
}
.hcl-item svg { width: 16px; height: 16px; stroke: var(--red-light); fill: none; stroke-width: 2.5; stroke-linecap: round; flex-shrink: 0; }
.hcl-item span { color: #ccc; font-size: .84rem; }

.float-badge {
  position: absolute; top: -18px; right: -18px;
  background: var(--red-primary);
  color: var(--white); border-radius: 12px;
  padding: 12px 16px; text-align: center;
  box-shadow: 0 8px 24px rgba(198,40,40,.4);
}
.float-badge .fbn { font-size: 1.7rem; font-weight: 900; line-height: 1; }
.float-badge .fbl { font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; opacity: .9; margin-top: 2px; }

.float-badge-2 {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--dark-3); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
}
.fb2-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--red-light); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fb2-title { font-size: .84rem; font-weight: 700; }
.fb2-sub   { font-size: .7rem; color: #888; margin-top: 1px; }

/* ── STATS BAR ── */
.stats-bar { background: var(--dark-2); padding: 44px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item { padding: 16px 24px; border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border-right: none; }
.stat-num  { font-size: 2.6rem; font-weight: 900; color: var(--red-light); line-height: 1; margin-bottom: 6px; }
.stat-lbl  { font-size: .76rem; color: #888; text-transform: uppercase; letter-spacing: .08em; }

/* ── SERVICE CARDS ── */
.services-overview { background: var(--gray-1); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-3);
  box-shadow: var(--shadow-sm);
  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(--red-primary), var(--red-light));
  transform: scaleX(0); transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sc-icon {
  width: 52px; height: 52px;
  background: rgba(198,40,40,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: var(--transition);
  color: var(--red-primary);
}
.sc-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .sc-icon { background: var(--red-primary); color: var(--white); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.service-card p  { font-size: .87rem; color: var(--text-3); line-height: 1.65; }
.sc-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--red-primary); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  margin-top: 14px;
}
.sc-link:hover { gap: 9px; }

/* ── WHY CHOOSE US ── */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.fi-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(198,40,40,.08);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-primary);
}
.fi-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fi-text h4 { font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.fi-text p  { font-size: .85rem; color: var(--text-3); line-height: 1.55; }
.why-visual {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-radius: 20px; padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
}
.why-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.wb-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.wb-title { font-size: .9rem; font-weight: 700; color: var(--white); }
.wb-sub   { font-size: .75rem; color: #888; margin-top: 2px; }

/* ── AREAS ── */
.areas-section { background: var(--gray-1); }
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.area-chip {
  background: var(--white); border: 1px solid var(--gray-3);
  border-radius: 8px; padding: 11px 14px;
  text-align: center; font-size: .85rem; font-weight: 600;
  color: var(--text-1); transition: var(--transition);
}
.area-chip:hover { background: var(--red-primary); color: var(--white); border-color: var(--red-primary); transform: translateY(-2px); }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--red-emergency) 0%, var(--red-dark) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; top: -50%; right: -5%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 65%);
  pointer-events: none;
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 { font-size: 2.4rem; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.cta-content p  { font-size: 1.05rem; color: rgba(255,255,255,.8); margin: 0 auto 32px; max-width: 550px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--gray-1);
  border-radius: var(--radius-lg); padding: 26px;
  border: 1px solid var(--gray-3); transition: var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-quote { font-size: 3rem; color: var(--red-primary); opacity: .2; font-family: Georgia,serif; line-height: .8; margin-bottom: 10px; }
.stars { display: flex; gap: 2px; margin-bottom: 12px; }
.stars span { color: var(--gold); font-size: .95rem; }
.review-text { font-size: .88rem; color: var(--text-2); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--gray-3); padding-top: 14px; }
.author-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: .95rem;
  flex-shrink: 0;
}
.author-name { font-size: .88rem; font-weight: 700; color: var(--text-1); }
.author-loc  { font-size: .75rem; color: var(--gray-4); margin-top: 1px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 60%, #2a0808 100%);
  padding: 88px 0 72px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top right, var(--white) 49%, transparent 51%);
}
.page-hero-lbl {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--red-light);
  border: 1px solid rgba(198,40,40,.35);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px;
}
.page-hero h1 { font-size: 2.9rem; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.page-hero p  { font-size: 1.05rem; color: #aaa; max-width: 580px; margin: 0 auto; }

/* page-hero alt bg for gray sections */
.page-hero-gray::after {
  background: linear-gradient(to top right, var(--gray-1) 49%, transparent 51%);
}

/* ── ABOUT ── */
.about-intro { background: var(--white); }
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-content h2 { font-size: 2rem; font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.about-content h2 span { color: var(--red-primary); }
.about-content p { font-size: .93rem; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.about-sidebar {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.cert-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 11px; padding: 14px 18px;
}
.cert-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.cert-title { font-size: .9rem; font-weight: 700; color: var(--white); }
.cert-sub   { font-size: .74rem; color: #888; margin-top: 2px; }

.values-section { background: var(--gray-1); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px; text-align: center;
  border: 1px solid var(--gray-3); transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2.4rem; margin-bottom: 14px; line-height: 1; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p  { font-size: .85rem; color: var(--text-3); line-height: 1.6; }

/* ── SERVICES FULL ── */
.services-full { background: var(--white); }
.svc-detail-card {
  display: grid; grid-template-columns: 66px 1fr;
  gap: 22px; align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--gray-3);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 18px;
}
.svc-detail-card:hover { box-shadow: var(--shadow-md); border-color: rgba(198,40,40,.2); }
.sdi-icon {
  width: 56px; height: 56px;
  background: rgba(198,40,40,.08);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-primary);
}
.sdi-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sdi-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.sdi-content p  { font-size: .87rem; color: var(--text-3); line-height: 1.7; margin-bottom: 10px; }
.svc-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.svc-tag {
  background: rgba(198,40,40,.08); color: var(--red-primary);
  font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .05em;
}

/* ── PROCESS ── */
.process-section { background: var(--gray-1); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 35px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--red-primary), var(--red-light));
}
.process-step { text-align: center; }
.step-num {
  width: 70px; height: 70px;
  background: var(--white);
  border: 3px solid var(--red-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: var(--red-primary);
  margin: 0 auto 18px; position: relative; z-index: 1;
}
.process-step h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.process-step p  { font-size: .83rem; color: var(--text-3); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: var(--gray-1);
  border-radius: var(--radius); padding: 22px;
  border: 1px solid var(--gray-3);
}
.faq-item h4 {
  font-size: .93rem; font-weight: 700; color: var(--text-1);
  margin-bottom: 8px; padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-3);
}
.faq-item p { font-size: .86rem; color: var(--text-3); line-height: 1.65; }

/* ── CONTACT ── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h2 { font-size: 1.9rem; font-weight: 900; margin-bottom: 14px; }
.contact-info h2 span { color: var(--red-primary); }
.contact-info > p { font-size: .92rem; color: var(--text-2); margin-bottom: 28px; line-height: 1.75; }

.cdet {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--gray-1); border: 1px solid var(--gray-3);
  border-radius: var(--radius); padding: 18px;
  margin-bottom: 14px;
}
.cdet-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(198,40,40,.08); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-primary);
}
.cdet-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cdet-lbl { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red-primary); margin-bottom: 3px; }
.cdet-val a, .cdet-val p { font-size: .92rem; font-weight: 600; color: var(--text-1); }
.cdet-val a:hover { color: var(--red-primary); }

.contact-form-box {
  background: var(--gray-1); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--gray-3);
}
.contact-form-box h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 22px; }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group label {
  display: block; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-1); margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid var(--gray-3);
  border-radius: var(--radius);
  font-size: .93rem;
  font-family: inherit;
  color: var(--text-1);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px rgba(198,40,40,.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.hours-box { margin-top: 8px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 14px;
  background: var(--white); border: 1px solid var(--gray-3);
  border-radius: var(--radius); margin-bottom: 8px;
  font-size: .86rem;
}
.hours-row .day { font-weight: 600; }
.hours-row .time { color: var(--red-primary); font-weight: 700; }

/* ── FOOTER ── */
footer { background: var(--dark-1); color: #aaa; padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo-wrap { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.f-logo-icon {
  width: 40px; height: 40px; background: var(--red-primary);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
}
.f-logo-icon svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.f-logo-name { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.f-logo-sub  { font-size: .58rem; color: #666; text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }
.footer-brand > p { font-size: .84rem; color: #777; line-height: 1.75; max-width: 270px; margin-bottom: 18px; }

.f-contact-item { display: flex; align-items: center; gap: 9px; font-size: .84rem; color: #888; margin-bottom: 9px; }
.f-contact-item svg { width: 15px; height: 15px; fill: none; stroke: var(--red-light); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.f-contact-item a { color: #888; }
.f-contact-item a:hover { color: var(--white); }

.footer-col h4 {
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--white); margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: .84rem; color: #777;
  display: flex; align-items: center; gap: 5px;
}
.footer-links a::before { content: '›'; color: var(--red-light); font-size: .95rem; }
.footer-links a:hover { color: var(--white); padding-left: 3px; }

.footer-areas { display: flex; flex-wrap: wrap; gap: 7px; }
.f-area-chip {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  color: #777; font-size: .74rem;
  padding: 4px 10px; border-radius: 20px;
  transition: var(--transition);
}
.f-area-chip:hover { background: rgba(198,40,40,.15); color: var(--white); border-color: rgba(198,40,40,.3); }

.footer-bottom {
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .78rem; color: #555; }
.footer-bottom a { color: var(--red-light); font-weight: 600; }
.footer-bottom a:hover { color: var(--white); }
.footer-btm-links { display: flex; gap: 18px; }
.footer-btm-links a { font-size: .78rem; color: #555; }
.footer-btm-links a:hover { color: var(--white); }

/* ── FLOATING CALL BUTTON ── */
.float-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--red-primary);
  color: var(--white);
  padding: 13px 20px; border-radius: 50px;
  font-weight: 700; font-size: .88rem;
  box-shadow: 0 6px 24px rgba(198,40,40,.45);
  animation: float-pulse 3s ease-in-out infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.float-call.visible { opacity: 1; pointer-events: all; }
.float-call:hover { background: var(--red-dark); transform: scale(1.04); }
@keyframes float-pulse { 0%,100%{box-shadow:0 6px 24px rgba(198,40,40,.45)} 50%{box-shadow:0 6px 36px rgba(198,40,40,.65)} }
.float-call svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero h1     { font-size: 2.6rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .areas-grid  { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid    { grid-template-columns: 1fr; }
  .why-visual  { order: -1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .faq-grid    { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark-2);
    flex-direction: column;
    padding: 12px; gap: 4px;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 11px; }

  .hero .container { grid-template-columns: 1fr; }
  .hero-visual     { display: none; }
  .hero h1         { font-size: 2rem; }
  .hero            { min-height: auto; padding: 60px 0 80px; }
  section          { padding: 60px 0; }
  .section-title   { font-size: 1.8rem; }
  .services-grid   { grid-template-columns: 1fr; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .about-grid      { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 28px; }
  .areas-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .cta-content h2  { font-size: 1.8rem; }
  .emergency-banner .inner { flex-direction: column; gap: 7px; }
  .page-hero h1    { font-size: 2rem; }
  .contact-form-box { padding: 22px; }
  .process-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1    { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .btn        { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
