/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a2e2a;
  background: #FDFCFA;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #059669;
  background: #d1fae5;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #064e3b;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: #4a6359;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-emerald {
  background: #059669;
  color: #fff;
  border-color: #059669;
  box-shadow: 0 4px 14px rgba(5,150,105,0.35);
}
.btn-emerald:hover { background: #047857; border-color: #047857; box-shadow: 0 6px 20px rgba(5,150,105,0.45); }
.btn-outline {
  background: transparent;
  color: #064e3b;
  border-color: #064e3b;
}
.btn-outline:hover { background: #064e3b; color: #fff; }
.btn-cream {
  background: #FDF8F0;
  color: #064e3b;
  border-color: #FDF8F0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-cream:hover { background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline-cream {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-cream:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5,150,105,0.1);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(6,78,59,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: #064e3b;
}
.logo-icon { color: #059669; }
.logo-text { font-style: italic; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a2e2a;
  position: relative;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #059669;
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-menu a:hover { color: #059669; }
.nav-menu a:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #064e3b;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  padding: 120px 0 0;
  background: #FDFCFA;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-content { max-width: 520px; }
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #059669;
  background: #d1fae5;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: #064e3b;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-headline .accent {
  color: #059669;
  font-style: italic;
}
.hero-sub {
  font-size: 1.125rem;
  color: #4a6359;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2e2a;
}
.hero-image {
  position: relative;
  min-height: 520px;
}
.hero-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6,78,59,0.15);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute;
  bottom: -30px;
  left: -40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(6,78,59,0.2);
  border: 4px solid #FDFCFA;
}
.hero-badge-float {
  position: absolute;
  top: 24px;
  right: -20px;
  background: #059669;
  color: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(5,150,105,0.4);
}
.hb-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  line-height: 1;
}
.hb-label {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-wave { margin-top: -1px; }
.hero-wave svg { display: block; width: 100%; height: auto; }

/* ─── SERVICES ─── */
.services {
  padding: 96px 0;
  background: #F5F1E8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: #FDFCFA;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(5,150,105,0.08);
  transition: all 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6,78,59,0.1);
  border-color: rgba(5,150,105,0.2);
}
.svc-icon {
  width: 56px; height: 56px;
  background: #d1fae5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.svc-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #064e3b;
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 0.925rem;
  color: #4a6359;
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
  padding: 96px 0;
  background: #FDFCFA;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 520px;
}
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6,78,59,0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(6,78,59,0.15);
  border: 4px solid #FDFCFA;
}
.about-content .section-sub { margin-bottom: 20px; }
.about-content p {
  color: #4a6359;
  margin-bottom: 16px;
  font-size: 1.025rem;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(5,150,105,0.15);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: #059669;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a6359;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 96px 0;
  background: #064e3b;
  color: #fff;
}
.how .section-label { background: rgba(255,255,255,0.15); color: #6ee7b7; }
.how .section-title { color: #fff; }
.how .section-sub { color: rgba(255,255,255,0.7); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.step {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.step:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: #34d399;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.step p {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 96px 0;
  background: #F5F1E8;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: #FDFCFA;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(5,150,105,0.08);
  transition: all 0.3s ease;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6,78,59,0.1);
}
.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.test-card p {
  font-size: 0.975rem;
  color: #4a6359;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.test-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: #064e3b;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 80px 0;
  background: #059669;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: 8px;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-shrink: 0;
}

/* ─── CONTACT ─── */
.contact {
  padding: 96px 0;
  background: #FDFCFA;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cd-icon {
  width: 44px; height: 44px;
  background: #d1fae5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #064e3b;
  margin-bottom: 2px;
}
.cd-item span, .cd-item a {
  font-size: 0.95rem;
  color: #4a6359;
  transition: color 0.2s;
}
.cd-item a:hover { color: #059669; }
.contact-map {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(6,78,59,0.1);
}
.contact-map img { width: 100%; height: 200px; object-fit: cover; }
.map-link {
  position: absolute;
  bottom: 12px; right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: rgba(6,78,59,0.85);
  padding: 8px 14px;
  border-radius: 50px;
  transition: background 0.2s;
}
.map-link:hover { background: #064e3b; }

/* ─── FORM ─── */
.contact-form-wrap {
  background: #F5F1E8;
  border-radius: 24px;
  padding: 40px;
}
.contact-form h3 {
  font-size: 1.5rem;
  color: #064e3b;
  margin-bottom: 8px;
}
.form-note {
  font-size: 0.9rem;
  color: #4a6359;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2e2a;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(5,150,105,0.2);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a2e2a;
  background: #FDFCFA;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5,150,105,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h4 {
  font-size: 1.25rem;
  color: #064e3b;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 0.95rem;
  color: #4a6359;
}

/* ─── FOOTER ─── */
.footer {
  background: #064e3b;
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.925rem; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #34d399;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.925rem;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact a {
  display: block;
  font-size: 0.925rem;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }
.footer-contact span { font-size: 0.925rem; color: rgba(255,255,255,0.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
}

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-image { min-height: 420px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .test-card:last-child { grid-column: span 2; max-width: 50%; justify-self: center; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(253,252,250,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(5,150,105,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }
  .hero-content { max-width: 100%; }
  .hero-image {
    order: -1;
    min-height: 320px;
  }
  .hero-img-float { left: 16px; bottom: -16px; }
  .hero-badge-float { right: 16px; top: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { min-height: 360px; order: -1; }
  .about-img-accent { right: 16px; bottom: -16px; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .test-card:last-child { grid-column: auto; max-width: 100%; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; gap: 4px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 0; }
  .hero-headline { font-size: 2rem; }
  .about-stats { flex-direction: column; gap: 20px; }
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
