/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background: #f5f0e8;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
.accent { color: #065f46; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 95, 70, 0.1);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(6, 95, 70, 0.1); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: #065f46; }
.nav__logo-text { white-space: nowrap; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 0.9rem; font-weight: 500; color: #1a1a1a; transition: color 0.2s; position: relative; }
.nav__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #065f46; transition: width 0.2s; }
.nav__links a:hover::after, .nav__links a:focus::after { width: 100%; }
.nav__links a:hover { color: #065f46; }
.nav__cta {
  background: #065f46; color: #f5f0e8 !important; padding: 10px 20px;
  border-radius: 8px; font-weight: 600; font-size: 0.88rem;
  transition: background 0.2s, transform 0.15s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: #047857; transform: translateY(-1px); }

/* Mobile toggle */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; color: #065f46; padding: 8px; }
.nav__toggle svg { display: block; }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .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: 32px 24px;
    gap: 20px;
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    border-bottom: 1px solid rgba(6, 95, 70, 0.1);
  }
  .nav__links.open { transform: translateY(0); opacity: 1; }
  .nav__links a { font-size: 1.05rem; }
  .nav__cta { text-align: center; }
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 60, 40, 0.88) 0%, rgba(6, 95, 70, 0.72) 50%, rgba(6, 60, 40, 0.6) 100%);
}
.hero__content {
  position: relative; z-index: 2; max-width: 780px;
  padding: 120px 24px 80px; color: #f5f0e8;
}
.hero__eyebrow {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #6ee7b7; margin-bottom: 20px;
}
.hero__headline {
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 24px;
}
.hero__sub { font-size: 1.1rem; line-height: 1.7; color: rgba(245, 240, 232, 0.85); max-width: 600px; margin-bottom: 40px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; color: rgba(245, 240, 232, 0.9); }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(245, 240, 232, 0.6); animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s ease; border: 2px solid transparent; cursor: pointer;
}
.btn--primary { background: #065f46; color: #f5f0e8; border-color: #065f46; }
.btn--primary:hover { background: #047857; border-color: #047857; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6, 95, 70, 0.3); }
.btn--outline { background: transparent; color: #f5f0e8; border-color: rgba(245, 240, 232, 0.6); }
.btn--outline:hover { background: rgba(245, 240, 232, 0.1); border-color: #f5f0e8; }
.btn--outline-light { background: transparent; color: #065f46; border-color: #065f46; }
.btn--outline-light:hover { background: #065f46; color: #f5f0e8; }
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ─── SECTION HELPERS ─── */
.section-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #065f46; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: #1a1a1a; margin-bottom: 16px;
}
.section-header--centered { text-align: center; }

/* ─── SERVICES ─── */
.services { padding: 100px 0; }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.service-card {
  background: #fff; border-radius: 16px; padding: 36px 28px;
  border: 1px solid rgba(6, 95, 70, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(6, 95, 70, 0.12); }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(6, 95, 70, 0.08); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card__title { font-size: 1.2rem; margin-bottom: 12px; color: #1a1a1a; }
.service-card__desc { font-size: 0.92rem; color: #555; line-height: 1.7; }

@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }

/* ─── 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: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(6, 95, 70, 0.15); }
.about__img-main img { width: 100%; height: 400px; object-fit: cover; }
.about__img-accent {
  position: absolute; bottom: -40px; right: -20px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(6, 95, 70, 0.2);
  border: 4px solid #fff;
}
.about__img-accent img { width: 100%; height: 200px; object-fit: cover; }
.about__badge {
  position: absolute; top: -20px; left: -16px;
  background: #065f46; color: #f5f0e8;
  padding: 12px 20px; border-radius: 12px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(6, 95, 70, 0.3);
}
.about__content .section-title { margin-bottom: 24px; }
.about__text { font-size: 1rem; color: #444; line-height: 1.8; margin-bottom: 16px; }
.about__stats { display: flex; gap: 32px; margin: 32px 0 40px; flex-wrap: wrap; }
.about__stat { flex: 1; min-width: 140px; }
.about__stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #065f46; }
.about__stat-label { font-size: 0.82rem; color: #666; line-height: 1.4; }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img-accent { right: 10px; bottom: -20px; }
  .about__badge { left: 10px; }
}

/* ─── WHY US ─── */
.why-us { padding: 100px 0; background: #065f46; color: #f5f0e8; }
.why-us .section-eyebrow { color: #6ee7b7; }
.why-us .section-title { color: #f5f0e8; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.why-card {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; padding: 36px 32px;
  transition: background 0.3s, transform 0.3s;
}
.why-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.why-card__num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: rgba(110, 231, 183, 0.3); line-height: 1; margin-bottom: 16px; }
.why-card__title { font-size: 1.2rem; margin-bottom: 12px; color: #f5f0e8; }
.why-card__desc { font-size: 0.92rem; color: rgba(245, 240, 232, 0.7); line-height: 1.7; }

@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 100px 0; background: #f5f0e8; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: #fff; border-radius: 16px; padding: 36px 28px;
  border: 1px solid rgba(6, 95, 70, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(6, 95, 70, 0.1); }
.testimonial-card__quote { position: absolute; top: 20px; right: 24px; }
.testimonial-card__text { font-size: 0.95rem; color: #444; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-card__author { font-size: 0.82rem; font-weight: 600; color: #065f46; letter-spacing: 0.02em; }

@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; max-width: 600px; } }

/* ─── CTA BANNER ─── */
.cta-banner { position: relative; padding: 80px 0; overflow: hidden; }
.cta-banner__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-banner__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6, 95, 70, 0.92) 0%, rgba(4, 120, 87, 0.88) 100%); }
.cta-banner__content { position: relative; z-index: 2; text-align: center; color: #f5f0e8; max-width: 700px; margin: 0 auto; }
.cta-banner__title { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 20px; }
.cta-banner__text { font-size: 1.05rem; color: rgba(245, 240, 232, 0.85); margin-bottom: 36px; line-height: 1.7; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact { padding: 100px 0; background: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__text { font-size: 1rem; color: #555; line-height: 1.8; margin-bottom: 36px; }
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail { display: flex; align-items: flex-start; gap: 16px; }
.contact__detail-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(6, 95, 70, 0.08); display: flex; align-items: center; justify-content: center;
}
.contact__detail-label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #065f46; margin-bottom: 4px; }
.contact__detail-value { font-size: 0.95rem; color: #1a1a1a; line-height: 1.6; }
.contact__detail-value a { color: #065f46; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.contact__detail-value a:hover { color: #047857; }

/* Form */
.contact__form-wrap { background: #f5f0e8; border-radius: 20px; padding: 40px; }
.contact__form-title { font-size: 1.4rem; margin-bottom: 28px; color: #1a1a1a; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #065f46; margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 14px 16px; border: 1.5px solid rgba(6, 95, 70, 0.2);
  border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.95rem;
  background: #fff; color: #1a1a1a; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus { border-color: #065f46; box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.1); }
.form-input::placeholder { color: #aaa; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23065f46' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; margin-top: 20px; padding: 16px 20px;
  background: rgba(6, 95, 70, 0.08); border: 1px solid rgba(6, 95, 70, 0.2);
  border-radius: 10px; font-size: 0.9rem; color: #065f46; font-weight: 500;
}
.form-success.show { display: block; }

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

/* ─── MAP ─── */
.map-section { height: 380px; filter: grayscale(30%); }
.map-section iframe { width: 100%; height: 100%; }

/* ─── FOOTER ─── */
.footer { background: #0a2e23; color: rgba(245, 240, 232, 0.7); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: #f5f0e8; margin-bottom: 16px; }
.footer__tagline { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer__heading { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #6ee7b7; margin-bottom: 20px; }
.footer__links ul { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 0.88rem; transition: color 0.2s; }
.footer__links a:hover { color: #f5f0e8; }
.footer__link { font-size: 0.88rem; transition: color 0.2s; }
.footer__link:hover { color: #f5f0e8; }
.footer__bottom { border-top: 1px solid rgba(245, 240, 232, 0.08); padding: 24px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(245, 240, 232, 0.4); }
.footer__bottom a { color: rgba(245, 240, 232, 0.5); transition: color 0.2s; }
.footer__bottom a:hover { color: #f5f0e8; }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
