/* ─── 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;
  color: #0f3d2e;
  background: #FFFBF5;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(5, 150, 105, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(5, 150, 105, 0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-family: 'Playfair Display', Georgia, serif; }
.nav-tag { letter-spacing: 0.12em; }
.nav-links { gap: 2rem; }
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: #0f3d2e;
  position: relative; transition: color 0.25s ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #059669;
  transition: width 0.3s ease;
}
.nav-link:hover { color: #059669; }
.nav-link:hover::after { width: 100%; }

/* Nav CTA */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.5rem; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #059669; color: #fff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}
.btn-primary:hover {
  background: #047857; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}
.btn-outline {
  background: transparent; color: #059669;
  border: 1.5px solid rgba(5, 150, 105, 0.3);
}
.btn-outline:hover {
  background: rgba(5, 150, 105, 0.06);
  border-color: #059669;
}
.btn-light {
  background: #fff; color: #059669;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-outline-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

/* Nav toggle */
.nav-toggle { color: #059669; padding: 0.5rem; }
.nav-mobile { background: rgba(255, 251, 245, 0.98); border-top: 1px solid rgba(5,150,105,0.08); }
.mobile-link { font-size: 1.1rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(5,150,105,0.06); }

/* ─── HERO ─── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #FFFBF5 0%, #ECFDF5 50%, #D1FAE5 100%);
  overflow: hidden; min-height: 90vh;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, #059669 1px, transparent 0);
  background-size: 40px 40px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-eyebrow { display: inline-block; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1rem; border-radius: 50px;
  background: rgba(5, 150, 105, 0.08); color: #059669;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
}
.hero-headline { font-weight: 600; }
.hero-subtitle { max-width: 520px; }
.hero-actions { gap: 1rem; }
.scroll-indicator { opacity: 0.5; }

/* Floating cards */
.hero-cards { perspective: 1000px; }
.hero-card { transition: transform 0.4s ease; }
.hero-card:hover { transform: translateY(-6px) !important; }
.hero-card-main { width: 300px; }
@media (min-width: 1280px) { .hero-card-main { width: 320px; } }
.hero-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6, 78, 59, 0.6) 0%, transparent 50%);
}
.hero-card-stat1 { animation: floatSlow 6s ease-in-out infinite; }
.hero-card-stat2 { animation: floatMedium 5s ease-in-out infinite; }
.hero-card-stat3 { animation: floatFast 4s ease-in-out infinite; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes floatMedium {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes floatFast {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.stat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #ECFDF5; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon-light {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ─── SECTIONS ─── */
.section { padding: 7rem 0; }
.section-header { margin-bottom: 4rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: #059669;
  padding: 0.35rem 1rem; border-radius: 50px;
  background: rgba(5, 150, 105, 0.08);
}
.section-title { font-weight: 600; }
.section-subtitle { max-width: 540px; margin: 0 auto; }

/* ─── SERVICES ─── */
.services { background: #FFFBF5; }
.service-card {
  background: #fff; border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(5, 150, 105, 0.08);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(5, 150, 105, 0.1);
  border-color: rgba(5, 150, 105, 0.2);
}
.service-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  display: flex; align-items: center; justify-content: center;
}
.service-card-title { font-weight: 600; }
.service-card-text { font-size: 0.95rem; }
.service-card-line { transition: width 0.5s ease; }

/* ─── ABOUT ─── */
.about { background: linear-gradient(180deg, #FFFBF5 0%, #ECFDF5 100%); }
.about-image-wrapper { position: relative; }
.about-image-accent {
  position: absolute; top: -20px; left: -20px;
  width: 120px; height: 120px; border-radius: 24px;
  background: linear-gradient(135deg, #A7F3D0, #6EE7B7);
  opacity: 0.4; z-index: -1;
}
.about-image-main { box-shadow: 0 25px 60px rgba(5, 150, 105, 0.12); }
.about-image-badge { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about-value-item { display: flex; align-items: center; gap: 0.6rem; }
.about-value-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: #ECFDF5; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ─── APPROACH ─── */
.approach { background: #fff; }
.approach-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem;
}
@media (min-width: 1024px) { .approach-grid { grid-template-columns: repeat(4, 1fr); } }
.approach-step { position: relative; padding-left: 0; }
.approach-step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.approach-step-title { font-weight: 600; }
.approach-step-text { font-size: 0.95rem; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: linear-gradient(180deg, #ECFDF5 0%, #FFFBF5 100%); }
.testimonial-card {
  background: #fff; border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(5, 150, 105, 0.08);
  transition: all 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(5, 150, 105, 0.08);
}
.testimonial-quote-icon { opacity: 0.6; }
.testimonial-text { font-size: 1.05rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author-name { font-size: 1rem; }

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #064E3B 0%, #059669 60%, #10B981 100%);
}
.cta-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 32px 32px;
}
.cta-eyebrow { letter-spacing: 0.2em; }
.cta-title { font-weight: 700; }
.cta-subtitle { max-width: 480px; }

/* ─── CONTACT ─── */
.contact { background: #FFFBF5; }
.contact-info-item { }
.contact-info-label { font-size: 0.7rem; }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: #ECFDF5; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Form */
.contact-form-wrapper {
  border: 1px solid rgba(5, 150, 105, 0.1);
}
.contact-form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #0f3d2e; margin-bottom: 0.4rem;
}
.contact-form-input {
  width: 100%; padding: 0.75rem 1rem; border-radius: 12px;
  border: 1.5px solid rgba(5, 150, 105, 0.15);
  background: #FFFBF5; color: #0f3d2e;
  font-family: 'Inter', system-ui, sans-serif; font-size: 0.95rem;
  transition: all 0.25s ease; outline: none;
}
.contact-form-input:focus {
  border-color: #059669; background: #fff;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.08);
}
.contact-form-input::placeholder { color: #94a3b8; }
.contact-form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form textarea.contact-form-input { resize: vertical; }

/* Form success */
.contact-form-success { padding: 2rem 0; }
.form-success-icon { margin: 0 auto; }

/* ─── FOOTER ─── */
.footer { background: #042f21; }
.footer-brand { }
.footer-logo-mark { flex-shrink: 0; }
.footer-link { font-size: 0.9rem; color: rgba(200, 235, 220, 0.6); transition: color 0.25s ease; }
.footer-link:hover { color: #fff; }
.footer-bottom { }

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1023px) {
  .hero { min-height: auto; padding-top: 8rem; }
  .hero-cards { display: none; }
  .hero-headline { font-size: 2.5rem; }
  .section { padding: 5rem 0; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hero-headline { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-title { font-size: 2rem; }
  .section { padding: 4rem 0; }
  .approach-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-wrapper { margin-bottom: 2rem; }
  .about-image-badge { position: relative; bottom: auto; right: auto; margin-top: 1rem; display: inline-block; }
  .cta-title { font-size: 2rem; }
}
