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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Lora', serif; font-weight: 600; line-height: 1.25; }
.emerald { color: #065f46; }
.cream { color: #faf6f0; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 95, 70, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(6, 95, 70, 0.1); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 600;
  color: #065f46;
}
.nav-logo em { font-style: italic; font-weight: 400; color: #047857; }
.nav-logo-icon { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px; border-radius: 100px; font-size: 0.9rem; font-weight: 600;
  color: #1c1917; transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(6, 95, 70, 0.08); color: #065f46; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #065f46;
  border-radius: 2px; transition: transform 0.3s, opacity 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); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px; font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; font-weight: 700; border: 2px solid transparent;
  cursor: pointer; transition: all 0.25s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-emerald { background: #065f46; color: #faf6f0; border-color: #065f46; }
.btn-emerald:hover { background: #047857; border-color: #047857; box-shadow: 0 8px 24px rgba(6, 95, 70, 0.3); }
.btn-cream { background: #faf6f0; color: #065f46; border-color: #faf6f0; }
.btn-cream:hover { background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.btn-outline-cream { background: transparent; color: #faf6f0; border-color: rgba(250, 246, 240, 0.6); }
.btn-outline-cream:hover { background: rgba(250, 246, 240, 0.15); border-color: #faf6f0; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: #065f46; overflow: hidden; padding: 100px 0 0;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px),
                     radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(250, 246, 240, 0.12); color: #d1fae5;
  padding: 8px 18px; border-radius: 100px; font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 24px; border: 1px solid rgba(250, 246, 240, 0.15);
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem); color: #faf6f0;
  margin-bottom: 20px; line-height: 1.15;
}
.hero-title em {
  font-style: italic; color: #6ee7b7;
  display: inline;
}
.hero-subtitle {
  font-size: 1.1rem; color: rgba(250, 246, 240, 0.8);
  margin-bottom: 32px; max-width: 480px; line-height: 1.8;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 24px; }
.hero-trust-item { text-align: left; }
.trust-num { display: block; font-family: 'Lora', serif; font-size: 1.6rem; font-weight: 600; color: #faf6f0; }
.trust-label { font-size: 0.78rem; color: rgba(250, 246, 240, 0.6); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.hero-trust-divider { width: 1px; height: 40px; background: rgba(250, 246, 240, 0.2); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-stack { position: relative; }
.hero-img { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.3); }
.hero-img-1 { width: 100%; max-width: 420px; }
.hero-img-1 img { width: 100%; height: 560px; object-fit: cover; }
.hero-img-2 {
  position: absolute; bottom: -40px; left: -60px;
  width: 220px; border: 5px solid #065f46;
}
.hero-img-2 img { width: 100%; height: 300px; object-fit: cover; border-radius: 18px; }
.hero-card {
  position: absolute; top: 50px; right: -30px;
  background: #faf6f0; color: #1c1917; padding: 18px 22px;
  border-radius: 20px; box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center; max-width: 180px;
}
.hero-card strong { font-size: 0.95rem; }
.hero-card span { font-size: 0.8rem; color: #57534e; }

/* Hero Wave */
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em; color: #065f46;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #1c1917; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: #57534e; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: #f5f0e8; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: #faf6f0; border-radius: 24px; padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(6, 95, 70, 0.06);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(6, 95, 70, 0.12); }
.service-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #065f46;
}
.service-card h3 { font-size: 1.2rem; color: #1c1917; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: #57534e; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #faf6f0; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main { border-radius: 28px; overflow: hidden; box-shadow: 0 20px 60px rgba(6, 95, 70, 0.15); }
.about-img-main img { width: 100%; height: 640px; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -30px; right: -30px;
  border-radius: 20px; overflow: hidden;
  border: 5px solid #faf6f0; box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.about-img-float img { width: 280px; height: 340px; object-fit: cover; }
.about-badge {
  position: absolute; top: -20px; left: -20px;
  background: #065f46; color: #faf6f0; padding: 16px 20px;
  border-radius: 18px; display: flex; flex-direction: column; align-items: center; gap: 4px;
  box-shadow: 0 12px 32px rgba(6, 95, 70, 0.3);
}
.about-badge strong { font-size: 0.95rem; }
.about-badge span { font-size: 0.78rem; opacity: 0.7; }
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-content > p { color: #57534e; margin-bottom: 16px; font-size: 1rem; }
.about-features { margin-top: 28px; display: grid; gap: 14px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-weight: 600; color: #1c1917; font-size: 0.95rem; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: #f5f0e8; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.gallery-item { border-radius: 20px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 4; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 4 / 8; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 8 / 13; grid-row: 2 / 3; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: #065f46; position: relative; overflow: hidden; }
.testimonials .section-tag { color: #6ee7b7; }
.testimonials .section-title { color: #faf6f0; }
.testimonials .section-subtitle { color: rgba(250, 246, 240, 0.7); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(250, 246, 240, 0.08); border: 1px solid rgba(250, 246, 240, 0.12);
  border-radius: 24px; padding: 32px; transition: transform 0.3s, background 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); background: rgba(250, 246, 240, 0.12); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.testimonial-text { color: rgba(250, 246, 240, 0.9); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(110, 231, 183, 0.2); color: #6ee7b7;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-name { display: block; color: #faf6f0; font-size: 0.95rem; }
.testimonial-location { display: block; color: rgba(250, 246, 240, 0.5); font-size: 0.8rem; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; background: #047857; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #faf6f0; margin-bottom: 10px; }
.cta-subtitle { color: rgba(250, 246, 240, 0.75); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #f5f0e8; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 14px; }
.contact-info > p { color: #57534e; margin-bottom: 36px; }
.contact-details { display: grid; gap: 24px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: rgba(6, 95, 70, 0.08); color: #065f46;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item strong { display: block; color: #1c1917; font-size: 0.95rem; margin-bottom: 4px; }
.contact-item p { color: #57534e; font-size: 0.9rem; line-height: 1.6; }
.contact-item a { color: #065f46; text-decoration: underline; text-underline-offset: 3px; }
.contact-item a:hover { color: #047857; }

/* Form */
.contact-form-wrap { background: #faf6f0; border-radius: 28px; padding: 40px; border: 1px solid rgba(6, 95, 70, 0.08); }
.form-title { font-size: 1.4rem; color: #1c1917; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: #1c1917; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border-radius: 14px;
  border: 2px solid rgba(6, 95, 70, 0.15); background: #f5f0e8;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: #1c1917;
  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: #065f46; box-shadow: 0 0 0 4px rgba(6, 95, 70, 0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #a8a29e; }
.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 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23065f46'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-success {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  padding: 14px 18px; border-radius: 14px; background: #d1fae5; color: #065f46;
  font-weight: 600; font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer { background: #045c35; color: rgba(250, 246, 240, 0.7); padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 14px; max-width: 280px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { color: #faf6f0; font-size: 0.9rem; margin-bottom: 4px; }
.footer-links a { font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: #6ee7b7; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact strong { color: #faf6f0; font-size: 0.9rem; margin-bottom: 4px; }
.footer-contact p { font-size: 0.88rem; line-height: 1.7; }
.footer-contact a { color: rgba(250, 246, 240, 0.7); text-decoration: underline; text-underline-offset: 3px; }
.footer-contact a:hover { color: #6ee7b7; }
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  padding: 24px 0; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 0.82rem;
}

/* ===== REVEAL ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(245, 240, 232, 0.98); backdrop-filter: blur(12px);
    flex-direction: column; padding: 24px; gap: 8px;
    transform: translateY(-120%); transition: transform 0.35s ease;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; text-align: center; padding: 14px; }
  .nav-toggle { display: flex; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .hero-img-2 { left: -20px; bottom: -20px; }
  .hero-card { right: -10px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-content .section-tag, .about-content .section-title { text-align: center; }
  .about-content > p { text-align: center; }
  .about-features { max-width: 400px; margin-left: auto; margin-right: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) { grid-column: auto; grid-row: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info .section-tag, .contact-info .section-title { text-align: center; }
  .contact-info > p { text-align: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  .hero { padding: 90px 0 0; min-height: auto; padding-bottom: 80px; }
  .hero-img-2 { display: none; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-img-float { display: none; }
  .about-badge { top: -10px; left: 50%; transform: translateX(-50%); }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
