﻿:root {
  /* ── DEEP FOREST + AMBER PALETTE ── */

  /* Greens */
  --forest-dark:    #1e3a2f;
  --forest:         #2d5a3d;
  --forest-mid:     #3d7a52;
  --forest-light:   #6aaa82;

  /* Amber accents */
  --amber:          #d4850a;
  --amber-dark:     #b36d08;
  --amber-pale:     #fdf0d5;
  --amber-glow:     rgba(212, 133, 10, 0.45);

  /* Backgrounds */
  --cream:          #faf8f3;
  --cream-dark:     #f0f4eb;
  --white:          #ffffff;

  /* Text */
  --dark:           #1e3a2f;
  --text-body:      #1a1a14;
  --text-muted:     #6b6860;

  /* Borders & grays */
  --gray-light:     #e4e0d8;
  --gray-mid:       #9a9488;

  /* Semantic aliases */
  --color-primary:        var(--forest-dark);
  --color-primary-mid:    var(--forest);
  --color-primary-light:  var(--forest-light);
  --color-accent:         var(--amber);
  --color-accent-dark:    var(--amber-dark);
  --color-accent-pale:    var(--amber-pale);
  --color-accent-glow:    var(--amber-glow);
  --color-bg:             var(--cream);
  --color-bg-alt:         var(--cream-dark);
  --color-text:           var(--text-body);
  --color-text-muted:     var(--text-muted);
  --color-border:         var(--gray-light);

  /* Typography — unchanged */
  --font-head:      'Syne', sans-serif;
  --font-body:      'DM Sans', sans-serif;

  /* Spacing scale — unchanged */
  --space-xs:       0.5rem;
  --space-sm:       1rem;
  --space-md:       1.5rem;
  --space-lg:       2.5rem;
  --space-xl:       4rem;
  --space-xxl:      6rem;

  /* Layout — unchanged */
  --max-width:      1160px;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;

  /* Shadows — warmed for new palette */
  --shadow-sm:      0 1px 3px rgba(30,58,47,0.08), 0 1px 2px rgba(30,58,47,0.05);
  --shadow-md:      0 4px 12px rgba(30,58,47,0.10), 0 2px 4px rgba(30,58,47,0.06);
  --shadow-lg:      0 8px 24px rgba(30,58,47,0.13), 0 4px 8px rgba(30,58,47,0.08);

  /* Transitions — unchanged */
  --transition:     0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--forest);
  text-decoration: none;
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin: 0 0 var(--space-md);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--dark);
  margin: 0 0 var(--space-sm);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section {
  padding: var(--space-xxl) 0;
}

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark { background: var(--forest-dark); color: var(--white); }
.section-olive { background: var(--forest); color: var(--white); }
.section-yellow-pale { background: var(--amber-pale); }

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: var(--space-sm);
}

.section-dark .section-label,
.section-olive .section-label { color: var(--amber); opacity: 0.85; }

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.section-dark .section-heading,
.section-olive .section-heading { color: var(--white); }

.section-heading em { color: var(--amber); font-style: normal; }

.section-dark p,
.section-olive p { color: rgba(255,255,255,0.75); }

.small { font-size: 0.95rem; color: var(--text-muted); }
.lead { font-size: 1.05rem; color: var(--text-body); }
.eyebrow { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest-mid); margin-bottom: var(--space-xs); }

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250,248,243,0.95);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(250,248,243,0.98); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--dark);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.nav-link {
  font-weight: 600;
  color: var(--text-body);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.nav-link:hover,
.nav-link.active { color: var(--forest); background: var(--amber-pale); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
}

.main-nav { position: static; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.01em; }
.btn-full { width: 100%; }

.btn-primary { background: var(--amber); color: var(--white); border-color: var(--amber); font-weight: 700; }
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 4px 20px var(--amber-glow); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(212, 133, 10, 0.3); }

.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

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

.btn.link-arrow { padding: 0; border: none; background: none; }

/* Hero */
.hero {
  background-color: var(--forest-dark);
  background-image:
    linear-gradient(\n      135deg,\n      rgba(30, 58, 47, 0.93) 0%,\n      rgba(45, 90, 61, 0.87) 50%,\n      rgba(45, 90, 61, 0.78) 100%\n    ),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-label {
  display: inline-flex;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.hero-label span { opacity: 0.5; }

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero h1 em { color: var(--amber); font-style: normal; }

.hero-subtext {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-card {
  background: #fffdf7;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow:
    0 8px 32px rgba(30, 58, 47, 0.20),
    0 2px 8px rgba(30, 58, 47, 0.10);
  color: var(--text-body);
  border-top: 4px solid var(--amber);
  position: relative;
}

.hero-card-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--space-xs);
}

.hero-card-area {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--gray-light);
}

.hero-card-badges {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin: var(--space-sm) 0 var(--space-md) 0;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-green { background: #e6f4ec; color: #1e5c35; }
.badge-yellow { background: var(--amber-pale); color: #7a4500; }

/* Trust bar */
.trust-bar {
  background: var(--forest-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: var(--space-lg) 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.trust-item { display: flex; flex-direction: column; align-items: center; gap: var(--space-xs); }

.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,133,10,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-number {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.trust-label { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.trust-sublabel { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber-pale);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.section-cta {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

#how-it-works .section-cta { margin-top: var(--space-md); }

#services .section-heading { font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.15; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  align-items: start;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--amber);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  height: 100%;
  min-height: 200px;
}

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

.service-card-icon {
  width: 40px;
  height: 40px;
  background: var(--amber-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.service-card p {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.service-card a {
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card a:hover { color: var(--amber-dark); }

#services .service-card:nth-child(even) .service-card-icon { background: #eaedd8; }

.service-area-banner {
  text-align: center;
  color: var(--white);
  padding: var(--space-xl) 0;
  background: var(--forest);
}

.service-area-banner p { margin: 0; font-weight: 600; letter-spacing: 0.02em; }

/* Testimonials */
.testimonials { padding: var(--space-xxl) 0; background: var(--amber-pale); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,133,10,0.2);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
}

.testimonial-card::before {
  content: '\\201C';
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--amber);
  line-height: 1;
  position: absolute;
  top: var(--space-sm);
  right: var(--space-md);
  opacity: 0.35;
}

.testimonial-stars { display: flex; gap: 2px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--amber); stroke: var(--amber-dark); stroke-width: 1; }

.testimonial-quote { font-size: 0.95rem; color: var(--text-body); line-height: 1.6; flex: 1; font-style: italic; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--gray-light);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.testimonial-location { font-size: 0.75rem; color: var(--text-muted); }

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.blog-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.blog-card-tag {
  display: inline-block;
  background: var(--forest);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin: 0;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  margin: 0;
}

.blog-card-footer {
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card-read {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-card-read:hover { color: var(--amber-dark); }
.blog-card-meta { font-size: 0.75rem; color: var(--text-muted); }

/* Cards / utilities */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
}

.highlight { border-top: 3px solid var(--amber); }

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.page-hero {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.page-hero .lead { max-width: 720px; }

.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-sm); }

.form-layout { grid-template-columns: 1.2fr 0.8fr; }

.link-arrow { font-weight: 700; font-size: 0.95rem; }
.link-arrow:hover { color: var(--amber-dark); }

.checklist { list-style: none; padding: 0; margin: 0 0 var(--space-md); }
.checklist li { position: relative; padding-left: 26px; margin-bottom: var(--space-xs); }
.checklist li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--forest); font-weight: 800; }

.bullet-list { margin: 0; padding-left: var(--space-md); }
.bullet-list li { margin-bottom: var(--space-xs); }

.info-box {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--gray-light);
}

.form-photo-tip {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--amber-pale);
  border: 1px solid rgba(212, 133, 10, 0.25);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.form-photo-tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.form-photo-tip p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.5;
}

.form-photo-tip a {
  color: var(--amber-dark);
  font-weight: 600;
  text-decoration: none;
}

.form-photo-tip a:hover { text-decoration: underline; }

.map-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

@media (max-width: 768px) {
  .map-container iframe { height: 260px; }
}

.ordered { padding-left: var(--space-md); margin: 0 0 var(--space-md); }

.tagline { margin: 0 0 var(--space-xs); color: var(--text-muted); }
.disclaimer { font-size: 0.85rem; color: var(--text-muted); }

/* Forms */
.form {
  display: grid;
  gap: var(--space-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

label { font-weight: 600; color: var(--dark); }

input, textarea, select {
  font: inherit;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-light);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,133,10,0.15);
}

textarea { min-height: 140px; resize: vertical; }

.radio-group { display: flex; gap: var(--space-md); flex-wrap: wrap; }

.error { color: #c62828; font-size: 0.85rem; min-height: 1em; }
.error-state { border-color: #c62828 !important; }

.small.text-muted { color: var(--text-muted); }

.checkbox { align-items: flex-start; }
.checkbox input { width: auto; margin-right: var(--space-xs); }
input[type="checkbox"] { accent-color: var(--amber); }

/* ── FILE UPLOAD INPUT ──────────────────────────────── */
.file-input {
  width: 100%;
  padding: 0;
  border: 2px dashed var(--gray-light);
  border-radius: var(--radius-md);
  background: var(--cream);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.file-input:hover {
  border-color: var(--amber);
  background: var(--amber-pale);
}

.file-input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 133, 10, 0.15);
}

.file-input::file-selector-button {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 1rem;
  transition: background var(--transition);
}

.file-input::file-selector-button:hover { background: var(--forest-mid); }

.field-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
  line-height: 1.5;
}

.field-hint strong { color: var(--text-body); }
.field-hint a { color: var(--amber-dark); font-weight: 600; text-decoration: none; }
.field-hint a:hover { text-decoration: underline; }

.label-optional {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}

.file-message { margin-top: 6px; font-size: 0.8rem; font-weight: 600; }

.btn.full { width: 100%; }
.btn.loading { opacity: 0.7; pointer-events: none; position: relative; }
.btn.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.15);
  border-top-color: var(--dark);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Exit intent */
#exit-intent {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(3px);
}

#exit-intent.active { display: flex; }

.exit-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  width: min(420px, 90vw);
  position: relative;
}

.exit-close {
  position: absolute;
  top: var(--space-xs);
  right: var(--space-xs);
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Footer */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.75);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.site-footer h4 { color: var(--white); margin-bottom: var(--space-sm); }
.site-footer a { color: rgba(255,255,255,0.65); }
.site-footer a:hover { color: var(--amber); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-xs); }

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.footer-logo span { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.show { opacity: 1; transform: translateY(0); }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .two-col, .card-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav { position: absolute; top: 64px; right: 0; background: var(--white); padding: var(--space-sm); box-shadow: var(--shadow-md); border-radius: var(--radius-md); display: none; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; }
  .hero { padding: var(--space-xl) 0; }
  .steps-grid,
  .services-grid,
  .blog-grid,
  .testimonials-grid,
  .trust-bar-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr; }
}

/* Print */
@media print {
  .site-header,
  .site-footer,
  #exit-intent,
  .nav-toggle,
  .btn { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ════════════════════════════════════════════════════
   WHATSAPP COMPONENTS
   ════════════════════════════════════════════════════ */

/* ── Floating button ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45),
              0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  font-family: var(--font-body);
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5),
              0 4px 12px rgba(0,0,0,0.15);
}

.whatsapp-float:active { transform: translateY(-1px); }

.whatsapp-float-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 3px solid #25d366;
  opacity: 0;
  animation: whatsapp-pulse 2.5s ease-out infinite;
}

@keyframes whatsapp-pulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.25); }
}

@media (max-width: 400px) {
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float-label { display: none; }
}

/* ── CTA block — thank-you page ───────────────────── */
.whatsapp-cta {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid #25d366;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.whatsapp-cta-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.whatsapp-icon-wrap {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.whatsapp-cta-text { flex: 1; min-width: 200px; }

.whatsapp-cta-text h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px 0;
}

.whatsapp-cta-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
}

.btn-whatsapp:active { transform: translateY(0); }

.whatsapp-secondary-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  text-align: center;
}

.whatsapp-secondary-note a {
  color: #128c7e;
  font-weight: 600;
  text-decoration: none;
}

.whatsapp-secondary-note a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .whatsapp-cta-inner { flex-direction: column; align-items: flex-start; }
  .btn-whatsapp { width: 100%; justify-content: center; }
}

/* ── Nudge link — quote form ──────────────────────── */
.whatsapp-nudge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-xs);
}

.whatsapp-nudge svg { fill: #25d366; flex-shrink: 0; }

.whatsapp-nudge a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #128c7e;
  text-decoration: none;
  transition: color 0.2s;
}

.whatsapp-nudge a:hover { color: #25d366; }

/* ── Photo tip box ────────────────────────────────── */
.form-photo-tip {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--amber-pale);
  border: 1px solid rgba(212,133,10,0.25);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.form-photo-tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.form-photo-tip strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 4px;
}

.form-photo-tip p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── File input ───────────────────────────────────── */
.file-input {
  width: 100%;
  padding: 0;
  border: 2px dashed var(--gray-light);
  border-radius: var(--radius-md);
  background: var(--cream);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.file-input:hover { border-color: var(--amber); background: var(--amber-pale); }

.file-input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,133,10,0.15);
}

.file-input::file-selector-button {
  background: var(--forest);
  color: white;
  border: none;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 1rem;
  transition: background 0.2s;
}

.file-input::file-selector-button:hover { background: var(--forest-mid); }

.label-optional { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; margin-left: 4px; }
.field-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: var(--space-xs); line-height: 1.5; }

/* ── Accessibility ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; }
  .whatsapp-float,
  .btn-whatsapp { transition: none; }
}











