/* ==========================================================================
   Rat Control Chicago - Main Stylesheet
   Font: Poppins | Colors: Navy + Safety Orange
   ========================================================================== */

:root {
  --navy-900: #0b2447;
  --navy-800: #12325e;
  --navy-700: #16437e;
  --navy-600: #1e5cad;
  --orange-500: #f97316;
  --orange-600: #ea6a0c;
  --orange-100: #fff1e6;
  --teal-500: #0ea5a4;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(11, 36, 71, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 36, 71, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 36, 71, 0.18);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: var(--navy-900);
  line-height: 1.25;
  font-weight: 700;
}

.container { width: min(1200px, 92%); margin-inline: auto; }

.section { padding: 90px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: var(--orange-100);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
}

.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--gray-600); font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 100px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-orange { background: var(--orange-500); color: var(--white); box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35); }
.btn-orange:hover { background: var(--orange-600); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(249, 115, 22, 0.45); }

.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline { border-color: var(--navy-900); color: var(--navy-900); background: transparent; }
.btn-outline:hover { background: var(--navy-900); color: var(--white); }

.btn-white { background: var(--white); color: var(--navy-900); box-shadow: var(--shadow-md); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-3px); }

.btn-lg { padding: 18px 40px; font-size: 1.02rem; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--gray-100);
  font-size: 0.85rem;
  padding: 10px 0;
}

.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.topbar-info { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.topbar-info span { display: inline-flex; align-items: center; gap: 8px; }

.topbar-info svg { width: 15px; height: 15px; fill: var(--orange-500); flex-shrink: 0; }

.topbar-cta { display: inline-flex; align-items: center; gap: 14px; }
.topbar-cta a { color: var(--white); font-weight: 600; transition: var(--transition); }
.topbar-cta a:hover { color: var(--orange-500); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(11, 36, 71, 0.08);
  transition: var(--transition);
}

.site-header.scrolled { box-shadow: 0 4px 26px rgba(11, 36, 71, 0.16); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; }

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

.brand-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  border-radius: 12px;
}

.brand-icon img { width: 30px; height: 30px; }

.brand-name { font-size: 1.15rem; font-weight: 700; color: var(--navy-900); line-height: 1.2; }
.brand-name span { display: block; font-size: 0.72rem; font-weight: 500; color: var(--orange-600); letter-spacing: 0.1em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 6px; }

.nav-menu a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 10px 16px;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--orange-600); background: var(--orange-100); }

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  transition: var(--transition);
}

.header-phone svg { width: 20px; height: 20px; fill: var(--orange-500); }

.header-phone small { display: block; font-size: 0.68rem; color: var(--gray-400); line-height: 1.2; }
.header-phone strong { font-size: 0.92rem; color: var(--navy-900); line-height: 1.2; }
.header-phone:hover { border-color: var(--orange-500); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy-900); border-radius: 3px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, #1d4f95 100%);
  color: var(--white);
  padding: 100px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.25), transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 164, 0.18), transparent 65%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--orange-100);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge svg { width: 16px; height: 16px; fill: var(--orange-500); }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 em { font-style: normal; color: var(--orange-500); position: relative; }

.hero p.lead { font-size: 1.08rem; color: rgba(255, 255, 255, 0.85); max-width: 540px; margin-bottom: 34px; }

.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.9); }

.trust-item svg { width: 20px; height: 20px; fill: var(--teal-500); }

.hero-card {
  background: var(--white);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px dashed var(--gray-200);
  border-radius: 14px;
  pointer-events: none;
}

.hero-card-inner { position: relative; z-index: 1; }

.hero-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.hero-card > p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 22px; }

.hero-form .form-row { margin-bottom: 14px; }

.hero-form label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy-900); margin-bottom: 6px; }

.hero-form input, .hero-form select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: var(--transition);
  appearance: none;
}

.hero-form input:focus, .hero-form select:focus {
  outline: none;
  border-color: var(--orange-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.hero-form .btn { width: 100%; }

.form-note { text-align: center; font-size: 0.78rem; color: var(--gray-400); margin-top: 12px; }

.card-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-500);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.4);
  z-index: 2;
  white-space: nowrap;
}

/* ---------- Ticker / Trust Strip ---------- */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 26px 0; }

.trust-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }

.trust-strip .strip-item { display: flex; align-items: center; gap: 12px; }

.strip-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--orange-100);
  border-radius: 12px;
}

.strip-icon svg { width: 24px; height: 24px; fill: var(--orange-600); }

.strip-item h4 { font-size: 1rem; }
.strip-item p { font-size: 0.83rem; color: var(--gray-600); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--teal-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  border-radius: 14px;
  margin-bottom: 20px;
}

.service-icon svg { width: 30px; height: 30px; fill: var(--orange-500); }

.service-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 16px; }

.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 600; color: var(--orange-600); transition: var(--transition); }
.card-link:hover { gap: 10px; color: var(--navy-900); }

/* ---------- Why Choose ---------- */
.why-section { background: var(--gray-50); }

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

.why-card { background: var(--white); border-radius: var(--radius); padding: 30px 24px; text-align: center; border: 1px solid var(--gray-200); transition: var(--transition); }

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

.why-card .why-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange-500);
  margin-bottom: 12px;
  display: block;
}

.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.86rem; color: var(--gray-600); }

/* ---------- Process ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }

.step { position: relative; text-align: center; padding: 0 10px; }

.step::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% + 45px);
  width: calc(100% - 90px);
  height: 2px;
  border-top: 2px dashed var(--gray-200);
}

.step:last-child::after { display: none; }

.step-dot {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: var(--orange-100);
  border: 3px solid var(--orange-500);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange-600);
  position: relative;
  z-index: 1;
}

.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.87rem; color: var(--gray-600); }

/* ---------- Service Area ---------- */
.area-section { background: var(--navy-900); color: var(--white); position: relative; overflow: hidden; }

.area-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}

.area-section .section-head h2 { color: var(--white); }
.area-section .section-head p { color: rgba(255, 255, 255, 0.75); }
.area-section .eyebrow { background: rgba(249, 115, 22, 0.15); color: #fdba74; }

.area-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.area-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: var(--transition);
}

.area-card:hover { background: rgba(249, 115, 22, 0.15); border-color: var(--orange-500); transform: translateX(6px); }

.area-card svg { width: 22px; height: 22px; fill: var(--orange-500); flex-shrink: 0; }

.area-card strong { color: var(--white); font-size: 1rem; font-weight: 600; display: block; line-height: 1.3; }
.area-card small { color: rgba(255, 255, 255, 0.6); font-size: 0.8rem; }

.area-note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.area-note a { color: var(--orange-500); font-weight: 600; }

/* ---------- About (Home) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.split-visual { position: relative; }

.split-visual .visual-card {
  background: var(--navy-900);
  border-radius: 20px;
  padding: 34px;
  color: var(--white);
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.split-visual .visual-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.4), transparent 70%);
}

.visual-icon {
  position: absolute;
  top: 34px;
  left: 34px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--orange-500);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.4);
}

.visual-icon svg { width: 32px; height: 32px; fill: var(--white); }

.visual-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 10px; position: relative; z-index: 1; }
.visual-card p { color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; position: relative; z-index: 1; }

.visual-badge {
  position: absolute;
  right: -14px;
  top: 34px;
  background: var(--teal-500);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 100px;
  transform: rotate(3deg);
  box-shadow: var(--shadow-md);
}

.split-text h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 18px; }
.split-text h2 em { font-style: normal; color: var(--orange-600); }
.split-text > p { color: var(--gray-600); margin-bottom: 16px; }

.check-list { margin: 24px 0 30px; display: grid; gap: 12px; }

.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }

.check-list li svg { width: 22px; height: 22px; fill: var(--teal-500); flex-shrink: 0; margin-top: 3px; }

.stats-row { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; margin-top: 32px; }

.stat h3 { font-size: 2rem; color: var(--orange-600); }
.stat p { font-size: 0.85rem; color: var(--gray-600); }

/* ---------- Testimonials ---------- */
.testi-section { background: var(--gray-50); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testi-stars { display: flex; gap: 3px; }
.testi-stars svg { width: 18px; height: 18px; fill: #fbbf24; }

.testi-card blockquote { font-size: 0.94rem; color: var(--gray-600); flex: 1; }
.testi-card blockquote::before { content: "\201C"; font-size: 2.4rem; color: var(--orange-500); display: block; line-height: 1; margin-bottom: 6px; font-weight: 800; }

.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--gray-100); padding-top: 16px; }

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--white);
  background: var(--navy-900);
  font-size: 0.95rem;
}

.testi-avatar.alt-1 { background: var(--orange-600); }
.testi-avatar.alt-2 { background: var(--teal-500); }

.testi-author strong { display: block; font-size: 0.95rem; color: var(--navy-900); }
.testi-author span { font-size: 0.8rem; color: var(--gray-400); }

.testi-note { text-align: center; margin-top: 40px; font-size: 0.9rem; color: var(--gray-600); }
.testi-note a { color: var(--orange-600); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--orange-500); box-shadow: 0 6px 20px rgba(249, 115, 22, 0.12); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
}

.faq-icon { width: 28px; height: 28px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: var(--orange-100); transition: var(--transition); }

.faq-icon svg { width: 14px; height: 14px; fill: var(--orange-600); transition: var(--transition); }

.faq-item.open .faq-icon { background: var(--orange-500); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { fill: var(--white); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }

.faq-answer p { padding: 0 24px 22px; font-size: 0.92rem; color: var(--gray-600); }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--orange-500) 0%, var(--orange-600) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px dashed rgba(255, 255, 255, 0.3);
}

.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; z-index: 1; }

.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, 0.92); }

.cta-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.2), transparent 70%);
  pointer-events: none;
}

.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }

.breadcrumb { display: inline-flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); }

.breadcrumb a { color: var(--orange-500); }
.breadcrumb a:hover { color: #fdba74; }
.breadcrumb svg { width: 14px; height: 14px; fill: rgba(255, 255, 255, 0.5); }

.page-hero p { max-width: 640px; margin: 0 auto; color: rgba(255, 255, 255, 0.85); }

/* ---------- About Page ---------- */
.mission-band { background: var(--gray-50); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 60px; }

.value-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 30px; transition: var(--transition); }

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

.value-card .value-icon { width: 54px; height: 54px; display: grid; place-items: center; background: var(--orange-100); border-radius: 12px; margin-bottom: 16px; }
.value-card .value-icon svg { width: 26px; height: 26px; fill: var(--orange-600); }

.value-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--gray-600); }

/* ---------- Services Page ---------- */
.service-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 40px 0; }

.service-feature:nth-child(even) .feature-visual { order: -1; }

.feature-visual {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--white);
  text-align: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.feature-visual .feature-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  background: var(--orange-500);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.4);
  position: relative;
  z-index: 1;
}

.feature-visual .feature-icon svg { width: 40px; height: 40px; fill: var(--white); }
.feature-visual h3 { color: var(--white); font-size: 1.3rem; position: relative; z-index: 1; }
.feature-visual p { color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; max-width: 300px; position: relative; z-index: 1; }

.feature-text h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; }
.feature-text > p { color: var(--gray-600); margin-bottom: 18px; font-size: 0.96rem; }

.feature-list { display: grid; gap: 10px; margin-bottom: 24px; }

.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; }
.feature-list li svg { width: 20px; height: 20px; fill: var(--teal-500); flex-shrink: 0; margin-top: 3px; }

/* ---------- Reviews Page ---------- */
.reviews-summary { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; margin-bottom: 60px; }

.rating-box {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.rating-box::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.25);
}

.rating-box .big-rating { font-size: 4rem; font-weight: 800; color: var(--white); line-height: 1; }
.rating-box .rating-stars { display: flex; justify-content: center; gap: 4px; margin: 14px 0 8px; position: relative; z-index: 1; }
.rating-box .rating-stars svg { width: 24px; height: 24px; fill: #fbbf24; }
.rating-box p { color: rgba(255, 255, 255, 0.75); position: relative; z-index: 1; }

.review-breakdown h3 { font-size: 1.3rem; margin-bottom: 20px; }

.bar-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; font-size: 0.88rem; }
.bar-row .bar-label { width: 60px; color: var(--gray-600); font-weight: 500; flex-shrink: 0; }
.bar-row .bar { flex: 1; height: 10px; background: var(--gray-200); border-radius: 100px; overflow: hidden; }
.bar-row .bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--orange-500), var(--orange-600)); border-radius: 100px; }
.bar-row .bar-pct { width: 40px; text-align: right; color: var(--gray-600); font-weight: 600; }

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}

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

.review-card .testi-stars svg { width: 16px; height: 16px; }
.review-card blockquote { font-size: 0.95rem; color: var(--gray-600); flex: 1; }
.review-card .testi-author span { font-size: 0.78rem; }

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

.review-date { font-size: 0.75rem; color: var(--gray-400); margin-left: auto; }

.verified { display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; color: var(--teal-500); font-weight: 600; }
.verified svg { width: 14px; height: 14px; fill: var(--teal-500); }

/* ---------- Contact Page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }

.contact-info-cards { display: grid; gap: 18px; margin-bottom: 28px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  transition: var(--transition);
}

.contact-card:hover { border-color: var(--orange-500); box-shadow: var(--shadow-sm); }

.contact-card .cc-icon { width: 50px; height: 50px; flex-shrink: 0; display: grid; place-items: center; background: var(--orange-100); border-radius: 12px; }
.contact-card .cc-icon svg { width: 24px; height: 24px; fill: var(--orange-600); }

.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.92rem; color: var(--gray-600); }
.contact-card a:hover { color: var(--orange-600); }

.contact-hours {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.contact-hours h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.contact-hours h3 svg { width: 20px; height: 20px; fill: var(--orange-500); }

.hour-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.12); font-size: 0.9rem; }
.hour-row:last-child { border-bottom: none; }
.hour-row span:last-child { color: rgba(255, 255, 255, 0.8); }
.hour-row .open-now { color: var(--teal-500); font-weight: 600; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--gray-600); font-size: 0.94rem; margin-bottom: 26px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

.form-group { margin-bottom: 16px; }

.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy-900); margin-bottom: 7px; }
.form-group label span { color: var(--orange-600); }

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: var(--transition);
  appearance: none;
}

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

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.emergency-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-100);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--gray-700);
}

.emergency-note svg { width: 20px; height: 20px; fill: var(--orange-600); flex-shrink: 0; }
.emergency-note a { color: var(--orange-600); font-weight: 700; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.form-success.show { display: flex; animation: fadeUp 0.4s ease; }

.form-success svg { width: 22px; height: 22px; fill: #10b981; flex-shrink: 0; }

/* ---------- Map ---------- */
.map-wrap { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Legal Pages ---------- */
.legal-content { max-width: 820px; margin: 0 auto; }

.legal-content h2 { font-size: 1.4rem; margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--orange-100); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 26px 0 10px; }
.legal-content p { color: var(--gray-600); margin-bottom: 14px; font-size: 0.95rem; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal-content ul li { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 8px; }
.legal-content a { color: var(--orange-600); font-weight: 600; }

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-100);
  color: var(--orange-600);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 30px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.75); padding: 70px 0 0; position: relative; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }

.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-name span { color: var(--orange-500); }

.footer-brand p { font-size: 0.9rem; margin: 18px 0 22px; color: rgba(255, 255, 255, 0.65); }

.social-links { display: flex; gap: 10px; }

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.social-links a:hover { background: var(--orange-500); transform: translateY(-3px); }

.social-links svg { width: 18px; height: 18px; fill: var(--white); }

.footer-col h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--orange-500); border-radius: 3px; }

.footer-col ul { display: grid; gap: 11px; }

.footer-col ul a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }

.footer-col ul a::before { content: "\203A"; color: var(--orange-500); font-weight: 700; transition: var(--transition); }

.footer-col ul a:hover { color: var(--orange-500); transform: translateX(4px); }

.footer-contact { display: grid; gap: 14px; }

.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; }

.footer-contact svg { width: 18px; height: 18px; fill: var(--orange-500); flex-shrink: 0; margin-top: 4px; }

.footer-contact a { color: rgba(255, 255, 255, 0.75); transition: var(--transition); }
.footer-contact a:hover { color: var(--orange-500); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 0.85rem;
}

.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

.footer-bottom .legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .legal-links a { color: rgba(255, 255, 255, 0.6); transition: var(--transition); }
.footer-bottom .legal-links a:hover { color: var(--orange-500); }

/* ---------- Floating Call Button (mobile) ---------- */
.float-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
  animation: pulse 2s infinite;
}

.float-call svg { width: 26px; height: 26px; fill: var(--white); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .step::after { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .service-feature { grid-template-columns: 1fr; gap: 36px; }
  .service-feature:nth-child(even) .feature-visual { order: 0; }
  .reviews-summary { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .topbar .container { justify-content: center; text-align: center; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 96px 28px 40px;
    box-shadow: -10px 0 40px rgba(11, 36, 71, 0.2);
    transition: right 0.35s ease;
    z-index: 990;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { width: 100%; padding: 13px 16px; font-size: 1rem; }
  .nav-menu a:hover, .nav-menu a.active { background: var(--orange-100); }
  .nav-overlay { position: fixed; inset: 0; background: rgba(11, 36, 71, 0.55); z-index: 980; opacity: 0; visibility: hidden; transition: var(--transition); }
  .nav-overlay.show { opacity: 1; visibility: visible; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .float-call { display: grid; place-items: center; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .hero { padding: 70px 0; }
  .hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card { padding: 26px; }
  .contact-form-wrap { padding: 28px 22px; }
  .trust-strip .container { justify-content: center; }
  .btn-lg { width: 100%; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ---------- Print ---------- */
@media print {
  .topbar, .site-header, .site-footer, .float-call, .cta-band { display: none !important; }
}
