/* ── Grove Plumbing & Heating ─────────────────────── */
:root {
  --navy:   #1a2f4a;
  --navy2:  #0f1e30;
  --orange: #e07b2a;
  --orange2:#c96a1a;
  --light:  #f4f6f9;
  --text:   #1a1a1a;
  --muted:  #5a6a7a;
  --white:  #ffffff;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

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

/* ── Utilities ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--light); }
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.logo-img { height: auto; width: 100px; }
.main-nav { display: flex; gap: 2rem; align-items: center; }
.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta:hover { background: var(--orange2) !important; color: var(--white) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid #e5e7eb;
  padding: 1rem 1.25rem;
  gap: 0.75rem;
}
.mobile-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--navy);
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav.open { display: flex; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(15,30,48,0.82), rgba(15,30,48,0.82)),
              url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(224,123,42,0.18);
  border: 1px solid rgba(224,123,42,0.4);
  color: #f0a060;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}
.trust-icon { color: var(--orange); font-size: 1rem; }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(26,47,74,0.1); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(224,123,42,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.55; }

/* ── Why Us ── */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.why-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.why-point h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.why-point p { color: var(--muted); font-size: 0.92rem; }
.why-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--white);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.stat-block { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.25rem; }
.stat-block:last-child { border-bottom: none; padding-bottom: 0; }
.stat-num { font-size: 2.5rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-top: 0.25rem; }

/* ── About ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.about-placeholder {
  font-size: 5rem;
  opacity: 0.25;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; font-size: 0.97rem; line-height: 1.7; }
.service-area {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(224,123,42,0.1);
  color: var(--orange2);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ── CTA Band ── */
.cta-band {
  background: var(--navy);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(224,123,42,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.contact-item p, .contact-item a { color: var(--navy); font-weight: 600; font-size: 1rem; text-decoration: none; }
.contact-item a:hover { color: var(--orange); }

.contact-form { background: var(--light); border-radius: 16px; padding: 2.25rem; }
.contact-form h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success { display: none; text-align: center; padding: 2rem; color: #16a34a; font-weight: 600; }

/* ── Footer ── */
.site-footer {
  background: var(--navy2);
  color: rgba(255,255,255,0.5);
  padding: 2rem 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { height: auto; width: 80px; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-credit a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-credit a:hover { color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .why-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .why-visual { order: -1; }
  .section { padding: 3.5rem 0; }
  .logo-img { width: 70px; }
  .hero { padding-top: 110px; padding-bottom: 60px; }

  .hero-inner { align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}
