/* ============================================================
   SHERIDAN HEATING & COOLING — Shared Stylesheet
   sheridanheatingandcooling.com · Ocean County, NJ
   ============================================================ */

:root {
  --red:        #c0392b;
  --red-dark:   #96281b;
  --red-light:  #e74c3c;
  --blue:       #1a3a6b;
  --blue-mid:   #2453a0;
  --blue-light: #3498db;
  --white:      #ffffff;
  --off-white:  #f5f6f8;
  --gray:       #6c757d;
  --gray-light: #e9ecef;
  --text:       #2c3e50;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--blue);
  padding: 8px 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.top-bar-left { font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.top-bar-right { display: flex; gap: 1.5rem; align-items: center; }
.top-bar-right a { font-size: 0.82rem; color: var(--white); display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.top-bar-right a:hover { color: #aac8f0; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.nav-logo { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--blue); letter-spacing: 1px; line-height: 1.1; }
.nav-logo .logo-sub { font-size: 0.65rem; font-weight: 400; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; display: block; }
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--text); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.3px; text-transform: uppercase;
  padding: 0 0.9rem; height: 72px;
  display: flex; align-items: center;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
  transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--red); border-bottom-color: var(--red); }

/* Dropdown */
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  border-top: 3px solid var(--red); list-style: none; z-index: 9999;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 0.75rem 1.4rem;
  font-size: 0.82rem; font-weight: 600; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.3px;
  border-bottom: 1px solid var(--gray-light); transition: background 0.15s, color 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--off-white); color: var(--red); }
.caret { font-size: 0.65rem; margin-left: 2px; }

/* Nav CTA */
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 0.6rem 1.4rem !important; height: auto !important;
  border-radius: 3px; border-bottom: none !important; margin-bottom: 0 !important; margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  transition: transform 0.25s, opacity 0.25s; border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (homepage) ── */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 50%, #1a5276 100%);
  padding: 80px 8%;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center;
  position: relative; overflow: hidden; z-index: 0;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%); border-radius: 50%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.2); border: 1px solid rgba(192,57,43,0.5);
  color: #f1948a; font-size: 0.72rem; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600; padding: 5px 14px; border-radius: 2px; margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: '★'; }
.hero-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 700; color: var(--white); line-height: 1.05; letter-spacing: 0.5px; margin-bottom: 1.2rem;
}
.hero-title .red { color: var(--red-light); }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 2.2rem; max-width: 480px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-phone-block { border-left: 3px solid var(--red); padding-left: 1rem; }
.hero-phone-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 3px; }
.hero-phone { font-family: 'Oswald', sans-serif; font-size: 2rem; color: var(--white); letter-spacing: 2px; font-weight: 600; transition: color 0.2s; }
.hero-phone:hover { color: #f1948a; }
.hero-stats { display: flex; flex-direction: column; gap: 1.2rem; }
.hero-stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 1.5rem 1.8rem; display: flex; align-items: center; gap: 1.5rem; transition: background 0.2s;
}
.hero-stat:hover { background: rgba(255,255,255,0.1); }
.hero-stat-num { font-family: 'Oswald', sans-serif; font-size: 2.8rem; color: var(--red-light); font-weight: 700; line-height: 1; min-width: 80px; }
.hero-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.hero-stat-label strong { color: var(--white); display: block; font-size: 0.95rem; margin-bottom: 2px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, #1a5276 100%);
  padding: 64px 8% 72px; position: relative; overflow: hidden; z-index: 0;
}
.page-hero::before {
  content: ''; position: absolute; top: -30%; right: 0; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%); border-radius: 50%;
}
.page-hero-content { position: relative; max-width: 700px; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.2rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.2); border: 1px solid rgba(192,57,43,0.5);
  color: #f1948a; font-size: 0.72rem; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600; padding: 5px 14px; border-radius: 2px; margin-bottom: 1.2rem;
}
.page-hero-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700; color: var(--white); line-height: 1.08; margin-bottom: 1rem;
}
.page-hero-title .red { color: var(--red-light); }
.page-hero-desc { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 2rem; max-width: 580px; }
.page-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-red {
  background: var(--red); color: var(--white); padding: 0.9rem 2rem;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: 3px; transition: background 0.2s, transform 0.15s; display: inline-block;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 0.9rem 2rem; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.5px; text-transform: uppercase; border-radius: 3px;
  transition: all 0.2s; display: inline-block;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-white {
  background: var(--white); color: var(--red); padding: 0.85rem 2rem;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: 3px; transition: all 0.2s; display: inline-block;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-blue {
  background: var(--blue); color: var(--white); padding: 0.9rem 2rem;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: 3px; transition: all 0.2s; display: inline-block;
}
.btn-blue:hover { background: var(--blue-mid); transform: translateY(-2px); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--red); padding: 14px 5%;
  display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.trust-item svg { width: 16px; height: 16px; fill: white; opacity: 0.9; }
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.3); }

/* ── SECTION HELPERS ── */
.section-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 3px; color: var(--red); font-weight: 700; margin-bottom: 0.6rem; }
.section-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: var(--blue); line-height: 1.1; margin-bottom: 0.8rem; }
.section-sub { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-pad { padding: 80px 8%; }
.section-pad-sm { padding: 56px 8%; }
.bg-offwhite { background: var(--off-white); }
.bg-white { background: var(--white); }
.bg-blue { background: var(--blue); }

/* ── SERVICES GRID (homepage) ── */
.services { padding: 90px 8%; background: var(--white); }
.services-intro { margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-light); border: 1px solid var(--gray-light); }
.svc-card { background: var(--white); padding: 2.5rem 2rem; transition: background 0.25s; position: relative; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--red); transition: width 0.3s; }
.svc-card:hover { background: var(--off-white); }
.svc-card:hover::after { width: 100%; }
.svc-icon { width: 50px; height: 50px; border-radius: 4px; background: rgba(26,58,107,0.07); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.svc-name { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 600; color: var(--blue); margin-bottom: 0.6rem; letter-spacing: 0.5px; }
.svc-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 1rem; transition: gap 0.2s; }
.svc-link:hover { gap: 10px; }

/* ── DETAIL CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.detail-card {
  background: var(--white); border-radius: 4px; padding: 2rem;
  border: 1px solid var(--gray-light); box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s, transform 0.2s; position: relative;
}
.detail-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); border-radius: 4px 4px 0 0; }
.detail-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-3px); }
.detail-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.detail-card-title { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--blue); margin-bottom: 0.6rem; }
.detail-card-text { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ── FEATURE (2-col) ── */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-visual {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: 6px; padding: 3rem 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 320px; text-align: center;
}
.feature-visual-icon { font-size: 5rem; margin-bottom: 1.5rem; }
.feature-visual-label { font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--white); letter-spacing: 1px; margin-bottom: 0.5rem; }
.feature-visual-sub { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── SERVICE LIST ── */
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin: 1.4rem 0; }
.service-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.9rem; color: var(--text); line-height: 1.55; }
.service-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 5px; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; counter-reset: step; }
.process-step { text-align: center; position: relative; }
.process-step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: var(--white);
  font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; margin: 0 auto 1.2rem;
}
.process-step-title { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--blue); margin-bottom: 0.5rem; }
.process-step-text { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ── PLAN CARDS ── */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.plan-card { background: var(--white); border-radius: 6px; padding: 2.5rem; border: 2px solid var(--gray-light); box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.plan-card.featured { border-color: var(--red); box-shadow: 0 8px 32px rgba(192,57,43,0.15); }
.plan-badge { display: inline-block; background: var(--red); color: var(--white); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 12px; border-radius: 20px; margin-bottom: 1rem; }
.plan-name { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--blue); margin-bottom: 0.3rem; }
.plan-price { font-family: 'Oswald', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--red); line-height: 1; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.plan-divider { border: none; border-top: 1px solid var(--gray-light); margin: 1.5rem 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.875rem; color: var(--text); line-height: 1.5; }
.plan-features li .check { color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--text); gap: 1rem; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-toggle { width: 26px; height: 26px; border-radius: 50%; background: var(--off-white); border: 1px solid var(--gray-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; color: var(--blue); transition: background 0.2s, transform 0.3s; }
details[open] .faq-toggle { background: var(--blue); color: white; transform: rotate(45deg); }
.faq-a { padding: 0 0 1.2rem; font-size: 0.9rem; color: var(--gray); line-height: 1.75; }

/* ── CONTACT FORM ── */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: 6px; padding: 2.5rem; box-shadow: 0 4px 24px rgba(0,0,0,0.08); border: 1px solid var(--gray-light); }
.form-title { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--blue); margin-bottom: 0.4rem; }
.form-sub { font-size: 0.875rem; color: var(--gray); margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem; border: 1.5px solid var(--gray-light);
  border-radius: 3px; font-size: 0.9rem; font-family: inherit;
  color: var(--text); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,58,107,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; background: var(--red); color: var(--white); border: none; border-radius: 3px; cursor: pointer; font-family: inherit; transition: background 0.2s, transform 0.15s; }
.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 4px; background: rgba(26,58,107,0.07); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); font-weight: 700; margin-bottom: 0.3rem; }
.contact-info-value { font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.contact-info-value a { color: var(--blue); font-weight: 600; }
.contact-info-value a:hover { color: var(--red); }
.map-wrap { border-radius: 6px; overflow: hidden; margin-top: 1.5rem; border: 1px solid var(--gray-light); }
.map-wrap iframe { width: 100%; height: 260px; border: none; display: block; }

/* ── WHY CHOOSE ── */
.why { padding: 90px 8%; background: var(--blue); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-left .section-tag { color: #f1948a; }
.why-left .section-title { color: var(--white); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin: 1.5rem 0 2.5rem; }
.why-list li { display: flex; align-items: flex-start; gap: 0.9rem; color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.5; }
.why-check { width: 22px; height: 22px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.why-check svg { width: 10px; height: 10px; fill: white; }
.why-right { display: flex; flex-direction: column; gap: 1.2rem; }
.why-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 1.8rem; }
.why-card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.7rem; }
.why-card-icon { font-size: 1.5rem; }
.why-card-title { font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--white); font-weight: 600; }
.why-card-text { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── REVIEWS ── */
.reviews { padding: 90px 8%; background: var(--off-white); }
.reviews-intro { text-align: center; margin-bottom: 3rem; }
.star-row { font-size: 1.5rem; color: #f39c12; letter-spacing: 4px; margin-bottom: 0.5rem; }
.rating-display { font-family: 'Oswald', sans-serif; font-size: 4.5rem; color: var(--blue); line-height: 1; font-weight: 700; }
.rating-info { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.review-card { background: var(--white); border-radius: 3px; padding: 1.8rem; box-shadow: 0 2px 12px rgba(0,0,0,0.07); border-top: 4px solid var(--red); }
.rev-stars { color: #f39c12; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.rev-text { font-style: italic; font-size: 0.925rem; color: #555; line-height: 1.75; margin-bottom: 1rem; }
.rev-author { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); }

/* ── SERVICE AREA ── */
.area-section { padding: 70px 8%; background: var(--white); text-align: center; }
.area-section .section-sub { max-width: 560px; margin: 0 auto 2.5rem; }
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; max-width: 760px; margin: 0 auto; }
.area-tag { background: var(--off-white); border: 1.5px solid var(--gray-light); color: var(--text); padding: 0.45rem 1.1rem; border-radius: 20px; font-size: 0.82rem; font-weight: 600; transition: all 0.2s; cursor: default; }
.area-tag:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ── STAT STRIP ── */
.stat-strip { background: var(--blue); padding: 50px 8%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item-num { font-family: 'Oswald', sans-serif; font-size: 3rem; font-weight: 700; color: var(--red-light); line-height: 1; margin-bottom: 0.4rem; }
.stat-item-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.stat-item-label strong { color: var(--white); display: block; margin-bottom: 2px; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--red); padding: 70px 8%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 3.5vw, 3rem); color: var(--white); font-weight: 700; line-height: 1.1; margin-bottom: 0.5rem; }
.cta-sub { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.8rem; }
.cta-phone-big { font-family: 'Oswald', sans-serif; font-size: 2.8rem; color: var(--white); letter-spacing: 3px; font-weight: 600; line-height: 1; }
.cta-phone-big:hover { opacity: 0.85; }

/* ── ABOUT ── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-photo { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-mid) 100%); border-radius: 6px; padding: 3rem; min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; }
.about-photo-cap { font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.about-photo-sub { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.cert-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.cert-badge { background: rgba(26,58,107,0.08); border: 1.5px solid rgba(26,58,107,0.2); color: var(--blue); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 0.4rem 0.9rem; border-radius: 3px; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 1.5rem; padding-bottom: 2rem; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: 0; width: 2px; background: var(--gray-light); }
.timeline-item:last-child::before { display: none; }
.timeline-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 700; color: white; text-align: center; line-height: 1.2; }
.timeline-year { font-family: 'Oswald', sans-serif; font-size: 0.85rem; color: var(--red); font-weight: 700; letter-spacing: 1px; margin-bottom: 0.3rem; }
.timeline-text { font-size: 0.9rem; color: var(--text); line-height: 1.6; }

/* ── SAVINGS BOX ── */
.savings-box { background: var(--blue); border-radius: 6px; padding: 2.5rem; color: white; }
.savings-box-title { font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.savings-row { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
.savings-row:last-of-type { border-bottom: none; }
.savings-label { color: rgba(255,255,255,0.75); }
.savings-val { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--red-light); }
.savings-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 1rem; line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--blue); padding: 60px 8% 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; display: block; }
.footer-logo span { color: var(--red-light); }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 1rem; }
.footer-lic { font-size: 0.72rem; color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.12); padding: 4px 10px; display: inline-block; border-radius: 2px; }
.footer-col h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px; color: var(--red-light); margin-bottom: 1.2rem; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.contact-line { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; line-height: 1.5; }
.contact-line a { color: inherit; }
.contact-line a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-1 { animation: fadeUp 0.5s ease both; }
.animate-2 { animation: fadeUp 0.5s 0.1s ease both; }
.animate-3 { animation: fadeUp 0.5s 0.2s ease both; }
.animate-4 { animation: fadeUp 0.5s 0.3s ease both; }
.animate-5 { animation: fadeUp 0.5s 0.4s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    border-top: 1px solid var(--gray-light); box-shadow: 0 8px 20px rgba(0,0,0,0.12); z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { height: auto; padding: 0.9rem 5%; border-bottom: 1px solid var(--gray-light); margin-bottom: 0 !important; }
  .nav-links > li > a.active,
  .nav-links > li > a:hover { border-bottom-color: var(--gray-light); border-left: 3px solid var(--red); padding-left: calc(5% - 3px); }
  /* Mobile dropdown: hide on hover, show on .dd-open */
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.dd-open .dropdown { display: block; position: static; box-shadow: none; border-top: none; border-left: 3px solid var(--red); margin-left: 1.5rem; min-width: auto; }
  .nav-cta { margin: 0.8rem 5% !important; border-radius: 3px; text-align: center; height: auto !important; display: block; }
  /* Layout */
  .hero { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hero-stat { flex: 1 1 200px; }
  .why { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-right { align-items: flex-start; }
  .feature-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip { gap: 1rem; }
  .trust-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stat-strip { gap: 1.5rem; }
  .plans-grid { grid-template-columns: 1fr; }
  .top-bar { justify-content: center; text-align: center; }
  .top-bar-left { display: none; }
}
