/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1a2e22;
  background: #F7F5F0;
  line-height: 1.65;
  -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, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; color: #1a2e22; }
.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D5A3D;
  background: #D4E8D8;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: #4a6352;
  max-width: 600px;
}
.section-header--centered { text-align: center; }
.section-header--centered .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #2D5A3D;
  color: #fff;
  border-color: #2D5A3D;
}
.btn-primary:hover { background: #234730; border-color: #234730; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,90,61,0.3); }
.btn-secondary {
  background: transparent;
  color: #2D5A3D;
  border-color: #2D5A3D;
}
.btn-secondary:hover { background: #2D5A3D; color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: #2D5A3D;
  border-color: #fff;
}
.btn-white:hover { background: #f0f7f1; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247,245,240,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,90,61,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(45,90,61,0.1); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2e22;
}
.logo-accent { color: #2D5A3D; }
.logo--light .logo-text { color: #fff; }
.logo--light .logo-accent { color: #fff; }

/* Nav */
.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a6352;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.main-nav a:hover { color: #2D5A3D; background: rgba(45,90,61,0.06); }
.nav-cta {
  background: #2D5A3D !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #234730 !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a2e22;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: #F7F5F0;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(45,90,61,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(168,213,186,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 4px 40px rgba(45,90,61,0.08), 0 1px 3px rgba(45,90,61,0.04);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2D5A3D;
  background: #D4E8D8;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: #1a2e22;
}
.hero-accent { color: #2D5A3D; }
.hero-sub {
  font-size: 1.1rem;
  color: #4a6352;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-note { font-size: 0.85rem; color: #7a9482; }
.hero-visual { position: relative; }
.hero-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(45,90,61,0.12);
}
.hero-image-wrapper img { width: 100%; height: 420px; object-fit: cover; }

/* Floating stat cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(45,90,61,0.12);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
.float-card-1 { bottom: 60px; left: -30px; animation-delay: 0s; }
.float-card-2 { top: 40px; right: -20px; animation-delay: 1.3s; }
.float-card-3 { bottom: -10px; right: 30px; animation-delay: 2.6s; }
.float-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #D4E8D8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card-label { font-size: 0.72rem; color: #7a9482; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.float-card-value { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: #2D5A3D; line-height: 1.2; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: #F7F5F0;
}
.section-header { margin-bottom: 56px; }
.section-header + .services-grid { /* spacer handled by section margin */ }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(45,90,61,0.06);
  transition: all 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(45,90,61,0.12); }
.service-card-img { overflow: hidden; height: 200px; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #D4E8D8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-name { font-size: 1.2rem; margin-bottom: 10px; }
.service-desc { font-size: 0.92rem; color: #4a6352; margin-bottom: 18px; line-height: 1.65; }
.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2D5A3D;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.service-link:hover { gap: 10px; }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 8px 32px rgba(45,90,61,0.1); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45,90,61,0.15);
  border: 4px solid #fff;
}
.about-img-accent img { width: 280px; height: 200px; object-fit: cover; }
.about-text { font-size: 1rem; color: #4a6352; margin-bottom: 16px; line-height: 1.75; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.value-item { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.92rem; color: #1a2e22; }
.value-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #D4E8D8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: #F7F5F0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(45,90,61,0.06);
  transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(45,90,61,0.1); }
.why-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #D4E8D8;
  line-height: 1;
  margin-bottom: 12px;
}
.why-card-title { font-size: 1.2rem; margin-bottom: 10px; }
.why-card-desc { font-size: 0.92rem; color: #4a6352; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: #F7F5F0;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(45,90,61,0.08); }
.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.8;
  color: #D4E8D8;
  position: absolute;
  top: 16px;
  left: 24px;
  pointer-events: none;
}
.testimonial-text {
  font-size: 0.95rem;
  color: #4a6352;
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { flex-shrink: 0; }
.testimonial-name { display: block; font-weight: 600; font-size: 0.92rem; color: #1a2e22; }
.testimonial-detail { font-size: 0.8rem; color: #7a9482; }

/* ===== SERVICE AREA ===== */
.service-area {
  padding: 100px 0;
  background: #D4E8D8;
}
.service-area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-area-desc { font-size: 1rem; color: #2D5A3D; margin-bottom: 28px; line-height: 1.75; }
.service-area .section-title { color: #1a2e22; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1a2e22;
}
.area-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2D5A3D;
  flex-shrink: 0;
}
.service-area-map { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(45,90,61,0.15); }
.service-area-map img { width: 100%; height: 360px; object-fit: cover; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: #2D5A3D;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(168,213,186,0.2) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-content { max-width: 560px; }
.cta-title { font-size: clamp(1.5rem, 3.5vw, 2.25rem); color: #fff; margin-bottom: 16px; }
.cta-text { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: #F7F5F0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-desc { font-size: 1rem; color: #4a6352; margin-bottom: 32px; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; flex-direction: column; gap: 6px; }
.contact-detail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #1a2e22;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-detail dd { font-size: 0.95rem; color: #4a6352; line-height: 1.65; padding-left: 28px; }
.contact-detail a { color: #2D5A3D; transition: color 0.2s ease; }
.contact-detail a:hover { color: #1a2e22; text-decoration: underline; }

/* Form */
.contact-form-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(45,90,61,0.08);
}
.form-title { font-size: 1.35rem; margin-bottom: 24px; }
.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: #1a2e22;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d4e0d6;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: #1a2e22;
  background: #F7F5F0;
  transition: all 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2D5A3D;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-privacy { font-size: 0.78rem; color: #7a9482; margin-top: 12px; text-align: center; }
.form-success { text-align: center; padding: 40px 20px; }
.form-success-icon { margin-bottom: 16px; }
.form-success-title { font-size: 1.5rem; margin-bottom: 10px; color: #2D5A3D; }
.form-success-text { color: #4a6352; margin-bottom: 24px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1a2e22;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-tagline { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A8D5BA;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #A8D5BA; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-contact-list a { color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer-contact-list a:hover { color: #A8D5BA; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s ease; }
.footer-bottom a:hover { color: #A8D5BA; }

/* ===== MOBILE NAV OVERLAY ===== */
.main-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,46,34,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.main-nav-overlay.active { display: block; opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 560px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    padding: 90px 28px 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { padding: 12px 16px; border-radius: 12px; }
  .nav-cta { margin-left: 0 !important; text-align: center; margin-top: 12px; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-card { padding: 32px 24px; }
  .hero-image-wrapper img { height: 280px; }
  .float-card-1 { left: 10px; bottom: 30px; }
  .float-card-2 { right: 10px; top: 10px; }
  .float-card-3 { right: 10px; bottom: -5px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-main img { height: 320px; }
  .about-img-accent { right: 10px; bottom: -20px; }
  .about-values { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-area-inner { grid-template-columns: 1fr; }
  .service-area-map { order: -1; }
  .service-area-map img { height: 220px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrapper { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-card { padding: 24px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .float-card { padding: 10px 14px; }
  .float-card-icon { width: 36px; height: 36px; }
  .float-card-value { font-size: 1.1rem; }
  .area-list { grid-template-columns: 1fr; }
}

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