/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1a3a2a;
  background: #fdf8f0;
  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; }
button { font: inherit; cursor: pointer; border: none; background: 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; line-height: 1.2; color: #0f2918; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f5e2e;
  background: #d4f5e0;
  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: #3d5c4a;
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 14px 28px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #0f5e2e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(15,94,46,0.3);
}
.btn-primary:hover { background: #0a4722; box-shadow: 0 6px 24px rgba(15,94,46,0.4); }
.btn-outline-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.25); border-color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,248,240,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,94,46,0.1);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(253,248,240,0.97);
  box-shadow: 0 2px 20px rgba(15,94,46,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f2918;
}
.nav-brand-icon {
  color: #0f5e2e;
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.nav-cta) {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3d5c4a;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: #0f5e2e; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0f5e2e;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #0a4722; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-toggle-bar {
  width: 24px;
  height: 2.5px;
  background: #0f2918;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) 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(-7.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: #fdf8f0;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a:not(.nav-cta) { font-size: 1.1rem; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-overlay.active { opacity: 1; pointer-events: all; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0f2918;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,41,24,0.92) 0%, rgba(15,94,46,0.75) 50%, rgba(15,41,24,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,245,224,0.15);
  border: 1px solid rgba(212,245,224,0.3);
  color: #d4f5e0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero-accent {
  color: #a8e6c3;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.trust-item svg { color: #a8e6c3; flex-shrink: 0; }

/* ========== SERVICES ========== */
.services {
  padding: 100px 0;
  background: #fdf8f0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(15,94,46,0.06);
  border: 1px solid rgba(15,94,46,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15,94,46,0.12);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e8f8ee, #d4f5e0);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f5e2e;
  margin-bottom: 20px;
}
.service-name {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #0f2918;
}
.service-desc {
  font-size: 0.95rem;
  color: #4a6b54;
  line-height: 1.65;
}

/* ========== ABOUT ========== */
.about {
  padding: 100px 0;
  background: #f0f7f2;
  overflow: hidden;
}
.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 16px 48px rgba(15,94,46,0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -24px;
  width: 55%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15,94,46,0.2);
  border: 4px solid #f0f7f2;
}
.about-accent-circle {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: #d4f5e0;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}
.about-content .section-title { margin-top: 8px; }
.about-text {
  font-size: 1.02rem;
  color: #3d5c4a;
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: #0f5e2e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.about-feature-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a3a2a;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 480px; }
}

/* ========== GALLERY ========== */
.gallery {
  padding: 100px 0;
  background: #fdf8f0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 5/3.8;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ========== REVIEWS ========== */
.reviews {
  padding: 100px 0;
  background: #0f2918;
}
.reviews .section-tag { background: rgba(212,245,224,0.15); color: #a8e6c3; }
.reviews .section-title { color: #fff; }
.reviews .section-header { margin-bottom: 56px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s;
}
.review-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.review-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: #a8e6c3;
  margin-bottom: -8px;
}
.review-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0f5e2e, #2d8a54);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.review-name {
  display: block;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}
.review-location {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0;
  background: #fdf8f0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title { margin-top: 8px; }
.contact-desc {
  font-size: 1.02rem;
  color: #3d5c4a;
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e8f8ee, #d4f5e0);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f5e2e;
  flex-shrink: 0;
}
.contact-detail-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b8f76;
  margin-bottom: 2px;
}
.contact-detail-value {
  display: block;
  font-size: 0.95rem;
  color: #1a3a2a;
  font-weight: 500;
}
.contact-detail-value a { color: #0f5e2e; transition: color 0.2s; }
.contact-detail-value a:hover { color: #0a4722; }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(15,94,46,0.1); }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(15,94,46,0.08);
  border: 1px solid rgba(15,94,46,0.06);
}
.contact-form-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: #0f2918;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a3a2a;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d4e8dc;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #1a3a2a;
  background: #fdf8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: #0f5e2e;
  box-shadow: 0 0 0 3px rgba(15,94,46,0.1);
  background: #fff;
}
.form-input::placeholder { color: #9bb5a5; }
.form-select { 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='%231a3a2a' stroke-width='2.5' 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 14px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon { color: #0f5e2e; margin-bottom: 16px; }
.form-success-title { font-size: 1.4rem; margin-bottom: 8px; color: #0f2918; }
.form-success-text { color: #4a6b54; font-size: 0.95rem; line-height: 1.7; }
.form-success-text a { color: #0f5e2e; font-weight: 600; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ========== FOOTER ========== */
.footer {
  background: #0f2918;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 14px;
}
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a8e6c3;
  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;
}
.footer-links a:hover { color: #fff; }
.footer-contact address { font-style: normal; font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: #a8e6c3; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== SCROLL REVEAL (progressive enhancement) ========== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fallback: always visible if JS is disabled or prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
