/* ============================================
   SUMMIT DOOR SERVICES — STYLESHEET
   Clean, modern, high-converting home services
   ============================================ */

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

:root {
  --navy:       #1a3320;
  --blue:       #254d2e;
  --accent:     #d4a017;
  --accent2:    #e8b830;
  --white:      #ffffff;
  --off:        #f5f7f5;
  --text:       #141f17;
  --muted:      #4a5e4e;
  --border:     #dce8de;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(26,51,32,0.10);
  --shadow-lg:  0 8px 40px rgba(26,51,32,0.16);
  --green-dark: #0d1a0f;
  --green-mid:  #1a3320;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,160,32,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-nav {
  background: var(--accent);
  color: var(--green-dark);
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
}
.btn-nav:hover { background: var(--accent2); }
.nav-info-badge {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 0 8px;
  white-space: nowrap;
}
.btn-nav-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-nav-outline:hover { background: var(--accent); color: var(--navy); }
.nav-emergency {
  display: inline-flex;
  align-items: center;
  background: #e8302a;
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  text-decoration: none;
  animation: pulse-red 2s infinite;
}
.nav-emergency:hover { background: #c42520; }
.btn-gold {
  background: var(--accent) !important;
  color: var(--navy) !important;
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--off); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,51,32,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-lg); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  height: 96px;
  width: auto;
  max-width: 220px;
  display: block;
  border-radius: 6px;
}
.logo-img-footer {
  height: 88px;
  max-width: 200px;
}
.logo-peak {
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-weight: 400;
  font-size: 0.9rem;
  opacity: 0.75;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}
.nav-mobile.open { display: flex; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1a0f 0%, #1a3320 40%, #254d2e 70%, #162a1c 100%);
  background-image: url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,26,15,0.88) 0%,
    rgba(26,51,32,0.82) 50%,
    rgba(37,77,46,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,160,32,0.18);
  color: var(--accent);
  border: 1px solid rgba(232,160,32,0.35);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.hero-heading {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.accent { color: var(--accent); }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust span {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-emergency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8302a;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  text-decoration: none;
  animation: pulse-red 2s infinite;
  transition: background 0.2s;
}
.trust-emergency:hover { background: #c42520; }
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,48,42,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(232,48,42,0); }
}
.btn-emergency-card {
  display: block;
  margin-top: 14px;
  background: #e8302a;
  color: white;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-emergency-card:hover { background: #c42520; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll a {
  color: rgba(255,255,255,0.4);
  font-size: 1.5rem;
  text-decoration: none;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.trust-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(212,160,23,0.12);
  color: #8a6a0a;
  border: 1px solid rgba(212,160,23,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-header p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ---- SERVICES ---- */
.services { padding: 96px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.service-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all 0.25s ease;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  text-align: center;
  display: block;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.6;
}
.service-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-tag-red {
  background: #e8302a;
  color: white;
}
.emergency-card {
  border-color: rgba(232, 48, 42, 0.3);
  background: #fff8f8;
}
.emergency-card:hover {
  border-color: #e8302a !important;
}
.services-cta {
  text-align: center;
  padding: 40px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.services-cta p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.services-cta p strong { color: var(--text); }

/* ---- THE SUMMIT DIFFERENCE ---- */
.difference {
  background: var(--accent);
  padding: 80px 0;
}
.difference-inner { }
.difference-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 36px;
}
.difference-body {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.difference-body p {
  font-size: 1.05rem;
  color: rgba(13,26,15,0.82);
  line-height: 1.75;
  margin-bottom: 16px;
}
.difference-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.difference-reviews-link {
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.difference-reviews-link:hover { opacity: 0.7; }
.difference .btn-primary {
  background: var(--green-dark);
  color: var(--accent);
  border-color: var(--green-dark);
}
.difference .btn-primary:hover { background: var(--green-mid); }
.difference-pillars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.pillar {
  background: var(--green-mid);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.pillar:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); background: #254d2e; }
.pillar-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.pillar strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
.pillar p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .difference-pillars { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .difference-pillars { grid-template-columns: repeat(2, 1fr); }
}

/* ---- DOOR SALES ---- */
.door-sales { padding: 96px 0; background: var(--off); }
.door-category { margin-bottom: 64px; }
.door-cat-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.door-cat-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.door-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.door-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.25s ease;
}
.door-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.door-card-featured { border-color: var(--accent); }
.door-badge-featured {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--accent);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}
.door-img {
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.door-img-flush    { background: linear-gradient(135deg, #c8d4e0, #a0b0c0); }
.door-img-6panel   { background: linear-gradient(135deg, #b8956a, #8b6914); }
.door-img-shaker   { background: linear-gradient(135deg, #e0e0d8, #b0b0a0); color: rgba(0,0,0,0.6); text-shadow: none; }
.door-img-steel    { background: linear-gradient(135deg, #708090, #4a5568); }
.door-img-fiberglass { background: linear-gradient(135deg, #a0785a, #7a5a3a); }
.door-img-steel-glass { background: linear-gradient(135deg, #5a7a90, #3a5a70); }
.door-info { padding: 20px; }
.door-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.door-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.door-pricing {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.85rem;
}
.price-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 7px 12px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: var(--off); }
.price-row span { color: var(--text); font-weight: 500; }
.price { color: var(--navy) !important; font-weight: 700 !important; }
.price-installed { color: var(--accent) !important; font-weight: 700 !important; }
.door-sales-cta {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 8px;
}
.door-sales-cta p { color: var(--muted); font-size: 1rem; margin-bottom: 20px; }
.door-sales-cta p strong { color: var(--text); }

@media (max-width: 900px) { .door-grid { grid-template-columns: 1fr; } }

/* ---- WHY US ---- */
.why-us {
  padding: 96px 0;
  background: var(--navy); /* kept for fallback */
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-content .section-tag {
  background: rgba(212,160,23,0.15);
  color: var(--accent);
  border-color: rgba(212,160,23,0.3);
}
.why-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.why-content > p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.why-list {
  list-style: none;
  margin-bottom: 36px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.why-list li:last-child { border-bottom: none; }
.why-list li span { flex-shrink: 0; }
.why-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ---- REVIEWS ---- */
.reviews {
  padding: 96px 0;
  background: var(--green-dark);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--green-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.stars {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.reviewer {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

/* ---- FAQ ---- */
.faq { padding: 96px 0; background: var(--white); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--off); }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
}
.faq-a.open {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a a { color: var(--accent); font-weight: 600; text-decoration: none; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, #254d2e, #1a3320);
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.cta-band p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer {
  background: #0a1410;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding: 64px 24px 48px;
}
.footer-brand .logo-light .logo-text { color: white; }
.footer-brand > p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}
.footer-links h4, .footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-contact p {
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.65);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-stat-card { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .trust-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-stat-card { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { justify-content: center; }
}

/* ── CONTACT FORM ─────────────────── */
.contact-section {
  background: var(--off);
  padding: 80px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.contact-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-details p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.contact-details a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: none;
}
.contact-details a:hover { text-decoration: underline; }
.contact-form {
  background: white;
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s;
  box-sizing: border-box;
  background: var(--off);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  background: white;
}
.form-group textarea { resize: vertical; }
.btn-full { width: 100%; justify-content: center; }
.hidden { display: none; }
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Reviews section heading + stars on dark bg */
.reviews h2 { color: var(--white); }
.reviews .section-tag { color: var(--accent); opacity: 1; }
