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

/* ── FONTS ── */
@font-face { font-family: 'Outfit'; src: url('https://fonts.gstatic.com/s/outfit/v16/NKVaWRd3O9mlkpbiSzZZ.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; src: url('https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQjVLzPIWeen6gjAcyhP.woff2') format('woff2'); }

/* ── UTILITIES ── */
.text-green { color: #166534; }
.text-gradient {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #166534;
  color: #fff;
  border-color: #166534;
}
.btn-primary:hover { background: #14532d; border-color: #14532d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,101,52,0.3); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: #fff; color: #166534; border-color: #fff; transform: translateY(-2px); }
.btn-accent {
  background: #fbbf24;
  color: #1a2e1a;
  border-color: #fbbf24;
}
.btn-accent:hover { background: #f59e0b; border-color: #f59e0b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(251,191,36,0.4); }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; padding: 16px 24px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(248,246,241,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  transition: color 0.3s;
}
.nav.scrolled .logo { color: #1a2e1a; }
.logo-accent { color: #22c55e; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  transition: all 0.2s;
}
.nav.scrolled .nav-links a { color: #1a2e1a; }
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav.scrolled .nav-links a:hover { background: rgba(22,101,52,0.08); color: #166534; }
.nav-cta .btn-nav {
  background: #22c55e;
  color: #fff !important;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
}
.nav-cta .btn-nav:hover { background: #16a34a; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: #1a2e1a; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1a2e1a;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.85) !important; width: 100%; padding: 12px 16px; }
  .nav-links a:hover { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
  .nav-cta { margin-top: 16px; width: 100%; }
  .nav-cta a { display: flex; justify-content: center; width: 100%; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,10,0.88) 0%, rgba(22,101,52,0.75) 50%, rgba(10,30,10,0.85) 100%);
}
.hero-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.hero-geo--1 {
  width: 600px;
  height: 600px;
  background: #22c55e;
  top: -200px;
  right: -150px;
}
.hero-geo--2 {
  width: 300px;
  height: 300px;
  background: #fbbf24;
  bottom: 10%;
  left: 5%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.hero-geo--3 {
  width: 150px;
  height: 150px;
  background: #fff;
  top: 30%;
  right: 15%;
  border-radius: 20%;
  transform: rotate(45deg);
  opacity: 0.06;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.3);
  color: #fbbf24;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #166534;
  background: rgba(22,101,52,0.08);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a2e1a;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: #4a5e4a;
  max-width: 560px;
  margin: 0 auto;
}
.section-header--light .section-tag { background: rgba(255,255,255,0.15); color: #22c55e; }
.section-header--light .section-title { color: #fff; }
.section-header--light .section-desc { color: rgba(255,255,255,0.7); }

/* ── SERVICES ── */
.services {
  position: relative;
  padding: 100px 0;
  background: #f8f6f1;
  overflow: hidden;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  border: 1px solid rgba(22,101,52,0.06);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #166534, #22c55e);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(22,101,52,0.12); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  color: #4a5e4a;
  line-height: 1.65;
}
.geo-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  pointer-events: none;
}
.geo-shape {
  position: absolute;
  opacity: 0.06;
}
.geo-shape--circle {
  width: 300px;
  height: 300px;
  background: #166534;
  border-radius: 50%;
  bottom: -80px;
  right: -60px;
}
.geo-shape--square {
  width: 120px;
  height: 120px;
  background: #22c55e;
  bottom: 40px;
  right: 80px;
  transform: rotate(30deg);
  border-radius: 16px;
}
.geo-shape--triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid #fbbf24;
  bottom: 80px;
  right: -20px;
  opacity: 0.08;
}

@media (max-width: 1024px) {
  .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;
  overflow: hidden;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(22,101,52,0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(22,101,52,0.18);
  border: 4px solid #fff;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  background: #166534;
  color: #fff;
  padding: 24px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(22,101,52,0.3);
  z-index: 2;
}
.about-badge-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #22c55e;
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge-text {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.4;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; text-align: left; }
.about-text {
  font-size: 1.05rem;
  color: #4a5e4a;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(22,101,52,0.1);
  border-bottom: 1px solid rgba(22,101,52,0.1);
}
.stat { text-align: center; flex: 1; }
.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #166534;
}
.stat-label {
  font-size: 0.85rem;
  color: #4a5e4a;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(22,101,52,0.15);
}
.about-content .btn { margin-top: 8px; }

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }
  .about-content .section-title { text-align: center; }
  .about-content .section-tag { display: block; text-align: center; }
  .about-text { text-align: center; }
  .about-stats { justify-content: center; }
}

/* ── WHY US ── */
.why {
  position: relative;
  padding: 100px 0;
  background: #1a2e1a;
  overflow: hidden;
}
.why-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.why-shape {
  position: absolute;
  opacity: 0.06;
}
.why-shape--1 {
  width: 500px;
  height: 500px;
  background: #22c55e;
  border-radius: 50%;
  top: -200px;
  left: -150px;
}
.why-shape--2 {
  width: 250px;
  height: 250px;
  background: #fbbf24;
  border-radius: 40%;
  bottom: -60px;
  right: 10%;
}
.why-shape--3 {
  width: 100px;
  height: 100px;
  background: #fff;
  top: 30%;
  right: 5%;
  border-radius: 12px;
  transform: rotate(45deg);
  opacity: 0.04;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(34,197,94,0.3);
  transform: translateY(-4px);
}
.why-card-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(34,197,94,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

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

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #166534 0%, #14532d 100%);
  overflow: hidden;
}
.cta-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}
.cta-geo--1 { width: 400px; height: 400px; background: #22c55e; top: -150px; left: -100px; }
.cta-geo--2 { width: 200px; height: 200px; background: #fbbf24; bottom: -80px; right: 15%; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 260px; }
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: #f8f6f1;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 16px; text-align: left; }
.contact-desc {
  font-size: 1.05rem;
  color: #4a5e4a;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(22,101,52,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: #1a2e1a;
  margin-bottom: 2px;
}
.contact-detail p {
  font-size: 0.95rem;
  color: #4a5e4a;
  line-height: 1.6;
}
.contact-detail a { color: #166534; font-weight: 600; }
.contact-detail a:hover { text-decoration: underline; }

/* Form */
.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(22,101,52,0.08);
  border: 1px solid rgba(22,101,52,0.06);
}
.form-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 6px;
}
.form-note { font-size: 0.9rem; color: #4a5e4a; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2e1a;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(22,101,52,0.12);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: #1a2e1a;
  background: #f8f6f1;
  transition: all 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #166534;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22,101,52,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  padding: 32px 16px;
}
.success-icon { margin-bottom: 16px; }
.form-success h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  color: #166534;
  margin-bottom: 8px;
}
.form-success p { color: #4a5e4a; line-height: 1.6; }
.form-success a { color: #166534; font-weight: 600; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-info .section-title { text-align: center; }
  .contact-info .section-tag { display: block; text-align: center; }
  .contact-desc { text-align: center; }
  .form-card { padding: 28px; }
}

/* ── MAP ── */
.map-section {
  position: relative;
  height: 400px;
}
.map-overlay-geo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, #f8f6f1, transparent);
  pointer-events: none;
  z-index: 1;
}

/* ── FOOTER ── */
.footer {
  position: relative;
  background: #1a2e1a;
  color: #fff;
  padding: 64px 0 0;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-brand .logo { margin-bottom: 4px; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #22c55e;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #22c55e; }
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: #22c55e; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.footer-geo {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  pointer-events: none;
}
.footer-circle {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(34,197,94,0.06);
  border-radius: 50%;
  bottom: -100px;
  right: -50px;
}
.footer-square {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(251,191,36,0.05);
  bottom: 20px;
  right: 60px;
  transform: rotate(30deg);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
