/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: #1a3c34;
  background: #fdf9f3;
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.2; }
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); color: #065f46; margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; color: #4a7c6d; max-width: 600px; }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  background: #d1fae5;
  color: #065f46;
  margin-bottom: 16px;
}
.badge--green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16,185,129,0.45);
}
.btn-outline {
  background: rgba(255,255,255,0.7);
  color: #065f46;
  border: 2px solid rgba(6,95,70,0.2);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: #fff;
  border-color: #10b981;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: #065f46;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.18); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; padding: 18px 36px; font-size: 1.05rem; }

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,249,243,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16,185,129,0.1);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 30px rgba(6,95,70,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #065f46;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo--white { color: #fff; }
.logo-icon { color: #10b981; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a3c34;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #10b981;
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover { color: #10b981; }
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #065f46;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #fdf9f3 0%, #ecfdf5 40%, #d1fae5 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 { width: 500px; height: 500px; background: #a7f3d0; top: -100px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: #fef3c7; bottom: -50px; left: -50px; animation-delay: -3s; }
.blob-3 { width: 300px; height: 300px; background: #cffafe; top: 40%; left: 30%; animation-delay: -5s; }
@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content .badge { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #065f46;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title em {
  font-style: italic;
  color: #10b981;
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  right: 0;
  height: 8px;
  background: rgba(16,185,129,0.2);
  border-radius: 4px;
  z-index: -1;
}
.hero-sub {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  color: #4a7c6d;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 1.1rem;
  color: #3d6b5c;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Stat Cards ─────────────────────────────────────────────── */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.stat-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(6,95,70,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 50px rgba(6,95,70,0.14); }
.stat-card--1 { animation: floatCard1 4s ease-in-out infinite; }
.stat-card--2 { animation: floatCard2 5s ease-in-out infinite; }
.stat-card--3 { animation: floatCard3 4.5s ease-in-out infinite; }
@keyframes floatCard1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatCard2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes floatCard3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #065f46;
  flex-shrink: 0;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #065f46;
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: #4a7c6d; margin-top: 4px; line-height: 1.3; }

/* ── Section ────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Services ───────────────────────────────────────────────── */
.services { background: #fdf9f3; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(6,95,70,0.06);
  border: 1px solid rgba(16,185,129,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 50px rgba(6,95,70,0.12); }
.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-body { padding: 28px; }
.service-body h3 {
  font-size: 1.4rem;
  color: #065f46;
  margin-bottom: 10px;
}
.service-body p { font-size: 0.95rem; color: #4a7c6d; margin-bottom: 16px; line-height: 1.7; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #1a3c34;
}
.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Gallery ────────────────────────────────────────────────── */
.gallery { background: linear-gradient(180deg, #ecfdf5 0%, #fdf9f3 100%); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
}
.gallery-item {
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,95,70,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

/* ── About ──────────────────────────────────────────────────── */
.about { background: #fdf9f3; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 24px;
  height: 500px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 60px rgba(6,95,70,0.12);
}
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 280px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  border: 6px solid #fdf9f3;
  box-shadow: 0 12px 40px rgba(6,95,70,0.15);
}
.about-badge-card {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(16,185,129,0.35);
}
.about-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-weight: 600; opacity: 0.8; letter-spacing: 0.1em; text-transform: uppercase; }
.about-badge-year { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; }
.about-content .section-title { margin-bottom: 24px; }
.about-content > p { color: #4a7c6d; margin-bottom: 16px; font-size: 1.02rem; }
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: #1a3c34;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #065f46;
  flex-shrink: 0;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials { background: linear-gradient(180deg, #fdf9f3 0%, #ecfdf5 100%); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(16,185,129,0.08);
  box-shadow: 0 4px 30px rgba(6,95,70,0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 50px rgba(6,95,70,0.1); }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: #a7f3d0;
  position: absolute;
  top: 16px;
  left: 28px;
  pointer-events: none;
}
.testimonial-text {
  font-size: 1rem;
  color: #3d6b5c;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 2px solid #d1fae5;
}
.testimonial-name { font-weight: 700; color: #065f46; font-size: 0.95rem; }
.testimonial-detail { font-size: 0.82rem; color: #4a7c6d; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 100%);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}
.cta-blob-1 { width: 400px; height: 400px; background: #34d399; top: -100px; left: -100px; }
.cta-blob-2 { width: 300px; height: 300px; background: #fcd34d; bottom: -80px; right: -80px; }
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 20px;
}
.cta-desc { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ────────────────────────────────────────────────── */
.contact { background: #fdf9f3; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 20px; }
.contact-desc { color: #4a7c6d; margin-bottom: 36px; font-size: 1.02rem; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #065f46;
  flex-shrink: 0;
}
.contact-detail dd { font-size: 1rem; color: #3d6b5c; line-height: 1.7; }
.contact-detail a { color: #10b981; font-weight: 600; transition: color 0.3s; }
.contact-detail a:hover { color: #059669; }
.contact-detail dt { margin-bottom: 6px; }

/* ── Form ───────────────────────────────────────────────────── */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 8px 50px rgba(6,95,70,0.08);
  border: 1px solid rgba(16,185,129,0.08);
}
.form-title { font-size: 1.8rem; color: #065f46; margin-bottom: 8px; }
.form-subtitle { color: #4a7c6d; margin-bottom: 28px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.88rem; font-weight: 700; color: #1a3c34; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #1a3c34;
  background: #fdf9f3;
  border: 2px solid #e2efe8;
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }
.form-group select { cursor: pointer; appearance: none; 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='%234a7c6d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
  color: #065f46;
}
.form-success svg { color: #10b981; margin: 0 auto 16px; }
.form-success h4 { font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: #4a7c6d; font-size: 0.95rem; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: #064e3b; color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { margin-top: 16px; font-size: 0.92rem; line-height: 1.7; max-width: 280px; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.92rem; transition: color 0.3s; }
.footer-links a:hover { color: #34d399; }
.footer-contact p { font-size: 0.92rem; margin-bottom: 8px; }
.footer-contact a { color: #34d399; font-weight: 600; }
.footer-hours { font-size: 0.85rem !important; opacity: 0.7; margin-top: 12px !important; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  opacity: 0.6;
}

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

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; margin-top: 40px; }
  .stat-card { flex: 1; min-width: 200px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,249,243,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(16,185,129,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-cards { gap: 12px; }
  .stat-card { padding: 16px 20px; }
  .stat-icon { width: 42px; height: 42px; }
  .stat-num { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-row: span 1; }
  .gallery-item { height: 200px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-float { right: 0; bottom: -30px; width: 180px; height: 220px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .hero-cards { flex-direction: column; }
  .stat-card { animation: none !important; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
