/* ============================================
   Shoreline Exterior Care — Styles
   Brand: #1B6B4A (deep teal green)
   Secondary: #1A1A1A (charcoal)
   ============================================ */

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

:root {
  --primary: #1B6B4A;
  --primary-dark: #145236;
  --primary-light: #e8f5ee;
  --primary-50: #f0faf4;
  --secondary: #1A1A1A;
  --text: #1A1A1A;
  --text-light: #555555;
  --text-muted: #888888;
  --white: #ffffff;
  --off-white: #f8faf9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08), 0 4px 10px -5px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ---- Section Tags & Titles ---- */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}
.logo-icon {
  font-size: 22px;
}
.nav {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
  transition: color 0.2s;
}
.phone-link:hover { color: var(--primary); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a3d2a;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/280222/pexels-photo-280222.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 61, 42, 0.82) 0%, rgba(27, 107, 74, 0.7) 40%, rgba(35, 140, 94, 0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 640px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  display: block;
  text-align: left;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius);
  color: var(--primary);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary);
}
.service-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-features li {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-50);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-placeholder {
  aspect-ratio: 4/3;
  background: var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}
.about-content .section-title { text-align: left; }
.about-content .section-tag { text-align: left; }
.about-content p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 100px 0;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--primary-50);
  border: 1px solid var(--primary-light);
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  margin: 0 auto 16px;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary);
}
.why-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   RECURRING PLANS
   ============================================ */
.plans {
  padding: 100px 0;
  background: var(--primary-50);
}
.plans .section-title,
.plans .section-subtitle {
  text-align: center;
}
.plans .section-subtitle {
  margin: 0 auto 48px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.plan-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.plan-card--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-frequency {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.plan-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary);
  margin: 0;
}
.plan-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-features li {
  font-size: 15px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.plan-card .btn {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}
.plans-note {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-light);
}
.plans-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.plans-note a:hover {
  text-decoration: underline;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: left;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--secondary);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   ESTIMATE CALCULATOR
   ============================================ */
.estimate {
  padding: 100px 0;
  text-align: center;
  background: var(--white);
}
.calc-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.calc-step {
  margin-bottom: 32px;
  padding: 32px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}
.calc-step-hidden {
  display: none;
}
.calc-step-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.calc-step-title-text {
  flex: 1;
  min-width: 0;
  padding-left: 4px;
}
.calc-step-desc {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Service selection buttons */
.calc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.calc-service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.2s ease;
}
.calc-service-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.calc-service-btn.selected {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 107, 74, 0.15);
}
.calc-service-btn svg {
  transition: color 0.2s;
}
.calc-service-btn.selected svg {
  color: var(--primary);
}

/* Detail form groups */
.calc-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.calc-detail-block {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.calc-detail-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.calc-detail-block h4 svg {
  flex-shrink: 0;
}
.calc-field {
  margin-bottom: 14px;
}
.calc-field:last-child {
  margin-bottom: 0;
}
.calc-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}
.calc-field input[type="number"],
.calc-field select {
  font-family: var(--font);
  font-size: 15px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  width: 100%;
  max-width: 200px;
  outline: none;
  transition: border-color 0.2s;
}
.calc-field input[type="number"]:focus,
.calc-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 107, 74, 0.1);
}

/* Toggle switches */
.calc-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
/* .calc-field label sets display:block and beats .calc-toggle specificity — restore flex */
.calc-field label.calc-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0;
}
.calc-toggle-text {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}
.calc-toggle input[type="checkbox"] {
  display: none;
}
.toggle-track {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--border);
  border-radius: 12px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.toggle-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: var(--shadow-sm);
}
.calc-toggle input:checked + .toggle-track {
  background: var(--primary);
}
.calc-toggle input:checked + .toggle-track::after {
  transform: translateX(20px);
}

/* Multi-select pills */
.calc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.calc-pill {
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.2s;
}
.calc-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.calc-pill.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Size selector */
.calc-sizes {
  display: flex;
  gap: 8px;
}
.calc-size-btn {
  flex: 1;
  padding: 10px 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.2s;
}
.calc-size-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.calc-size-btn.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.calc-size-btn small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  margin-top: 2px;
  opacity: 0.7;
}

/* Price result */
.calc-result {
  text-align: center;
}
.calc-price-display {
  padding: 32px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}
.calc-price-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.calc-price-range {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.calc-price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.calc-breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}
.calc-breakdown-item span:first-child {
  color: var(--text-light);
}
.calc-breakdown-item span:last-child {
  font-weight: 600;
  color: var(--secondary);
}
.calc-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 12px;
}

/* Calculator contact form */
.calc-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calc-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.calc-contact-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.calc-contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
}
.calc-contact-form input {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: all 0.2s;
  outline: none;
}
.calc-contact-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 107, 74, 0.1);
}
.calc-contact-form input::placeholder {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .calc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-step { padding: 24px 20px; }
  .calc-price-range { font-size: 36px; }
  .calc-contact-form .form-row { grid-template-columns: 1fr; }
  .calc-sizes { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .calc-services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .calc-service-btn { padding: 16px 8px; font-size: 12px; }
  .calc-price-range { font-size: 30px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 0;
  text-align: center;
}
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  content: '\2212';
  color: var(--primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a3d2a 0%, #1B6B4A 50%, #238c5e 100%);
  color: var(--white);
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-info .section-tag { text-align: left; }
.contact-info > p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-light);
}
.contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong {
  display: block;
  color: var(--secondary);
  font-size: 14px;
  margin-bottom: 2px;
}
.contact-item a {
  color: var(--primary);
  font-weight: 500;
  transition: opacity 0.2s;
}
.contact-item a:hover { opacity: 0.8; }
.contact-item span {
  font-size: 15px;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: all 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 107, 74, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 0;
  background: var(--secondary);
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--primary);
  color: var(--white);
}
.footer-links h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links a,
.footer-links span {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav-right { display: none; }
  .hamburger { display: flex; }

  /* Mobile Nav */
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 100px 32px 32px;
    gap: 0;
    z-index: 999;
  }
  .nav.open .nav-link {
    font-size: 22px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--secondary);
  }

  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero h1 { font-size: 36px; }
  .hero-trust { gap: 16px; }
  .trust-item { font-size: 13px; }

  .services,
  .about,
  .why-us,
  .testimonials,
  .faq,
  .contact {
    padding: 64px 0;
  }

  .services-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-banner { padding: 60px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
  .about-stats { flex-direction: column; gap: 16px; }
  .contact-form-wrap { padding: 24px; }
  .section-title { font-size: 28px; }
}
