/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #FDF8F0;
  color: #064E3B;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
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; }

/* ── 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(4, 120, 87, 0.1);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(4, 120, 87, 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: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #064E3B;
}
.nav-logo { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: #065F46;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #047857;
  transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #047857; }
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #047857;
  color: #FDF8F0 !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta-btn:hover { background: #065F46; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #064E3B;
  padding: 8px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  background: #047857;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 244, 212, 0.15);
  border: 1px solid rgba(253, 244, 212, 0.25);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #FDF4D4;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #34D399;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #FDF8F0;
  margin-bottom: 20px;
}
.hero-headline-accent { color: #FDF4D4; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(253, 248, 240, 0.8);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn--primary {
  background: #FDF4D4;
  color: #064E3B;
}
.btn--primary:hover { background: #FCECC8; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.btn--outline {
  background: transparent;
  color: #FDF8F0;
  border: 2px solid rgba(253, 248, 240, 0.4);
}
.btn--outline:hover { border-color: #FDF8F0; background: rgba(253, 248, 240, 0.1); }
.btn--cream {
  background: #FDF4D4;
  color: #064E3B;
}
.btn--cream:hover { background: #FCECC8; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn--outline-cream {
  background: transparent;
  color: #FDF4D4;
  border: 2px solid rgba(253, 244, 212, 0.5);
}
.btn--outline-cream:hover { border-color: #FDF4D4; background: rgba(253, 244, 212, 0.1); }
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* Hero Cards */
.hero-cards { position: relative; min-height: 480px; }
.hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.hero-card--main {
  width: 100%;
  max-width: 420px;
}
.hero-card-img { width: 100%; height: 380px; object-fit: cover; }
.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(2, 44, 34, 0.9), transparent);
}
.hero-card-tag {
  display: inline-block;
  background: #047857;
  color: #FDF4D4;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-card-text { color: #FDF8F0; font-size: 0.95rem; }

/* Floating stat cards */
.float-card {
  position: absolute;
  background: #FDF8F0;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  z-index: 3;
}
.float-card--1 { top: -20px; right: -20px; }
.float-card--2 { bottom: 60px; left: -30px; }
.float-card--3 { bottom: -16px; right: 20px; }
.float-card-icon {
  width: 44px;
  height: 44px;
  background: #D1FAE5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card-icon--cream { background: #FDF4D4; }
.float-card-num { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.95rem; color: #064E3B; }
.float-card-label { display: block; font-size: 0.78rem; color: #065F46; }

/* Hero decorative shapes */
.hero-shape { position: absolute; pointer-events: none; }
.hero-shape--circle1 {
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(253, 244, 212, 0.06);
  top: -100px; right: -100px;
}
.hero-shape--circle2 {
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  bottom: 60px; left: 5%;
}
.hero-shape--rect1 {
  width: 120px; height: 120px;
  background: rgba(253, 244, 212, 0.08);
  border-radius: 20px;
  transform: rotate(45deg);
  top: 20%; left: 2%;
}
.hero-shape--rect2 {
  width: 80px; height: 80px;
  background: rgba(110, 231, 183, 0.15);
  border-radius: 14px;
  transform: rotate(20deg);
  bottom: 15%; right: 8%;
}
.hero-shape--tri {
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(253, 244, 212, 0.07);
  top: 15%; right: 15%;
}

/* ── Section shared ── */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #047857;
  background: #D1FAE5;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #064E3B;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: #065F46;
  max-width: 560px;
  line-height: 1.7;
  opacity: 0.8;
}
.section-header { margin-bottom: 56px; }

/* ── Services ── */
.services {
  padding: 100px 24px;
  background: #FDF8F0;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, #047857 0px, #047857 40px, #FDF4D4 40px, #FDF4D4 50px);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(4, 120, 87, 0.08);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(4, 120, 87, 0.12); }
.service-card--alt { background: #047857; border-color: transparent; }
.service-card--alt .service-icon { color: #FDF4D4; }
.service-card--alt .service-title { color: #FDF8F0; }
.service-card--alt .service-body { color: rgba(253, 248, 240, 0.8); }
.service-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: #047857;
}
.service-card--alt .service-card-accent { background: #FDF4D4; }
.service-icon {
  width: 56px; height: 56px;
  background: #D1FAE5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #047857;
}
.service-card--alt .service-icon { background: rgba(253, 244, 212, 0.15); }
.service-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #064E3B;
  margin-bottom: 10px;
}
.service-body { font-size: 0.92rem; color: #065F46; line-height: 1.7; opacity: 0.8; }

/* ── Why Us ── */
.why-us {
  padding: 100px 24px;
  background: #ECFDF5;
  position: relative;
  overflow: hidden;
}
.why-us::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(4, 120, 87, 0.04);
  border-radius: 50%;
  bottom: -150px; right: -100px;
}
.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-us-images { position: relative; min-height: 560px; }
.img-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(4, 120, 87, 0.15);
}
.img-frame--large { width: 75%; }
.img-frame--small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border: 6px solid #ECFDF5;
}
.img-frame--offset { margin-top: -40px; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame-accent {
  position: absolute;
  border-radius: 16px;
}
.img-frame-accent--1 {
  width: 100px; height: 100px;
  background: #047857;
  top: 20px; left: 10%;
  opacity: 0.15;
  border-radius: 50%;
}
.img-frame-accent--2 {
  width: 60px; height: 60px;
  background: #FDF4D4;
  bottom: 30%; left: 5%;
  transform: rotate(30deg);
  opacity: 0.6;
}
.why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-marker {
  width: 32px; height: 32px;
  background: #D1FAE5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong { display: block; font-size: 1rem; color: #064E3B; margin-bottom: 2px; }
.why-item-desc { font-size: 0.88rem; color: #065F46; opacity: 0.75; }

/* ── Gallery ── */
.gallery {
  padding: 100px 24px;
  background: #FDF8F0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.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-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(2, 44, 34, 0.85), transparent);
  color: #FDF8F0;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-item-label { transform: translateY(0); }
.gallery-item--wide { grid-column: span 7; }
.gallery-item:not(.gallery-item--wide) { grid-column: span 5; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 24px;
  background: #047857;
  position: relative;
  overflow: hidden;
}
.cta-shape { position: absolute; pointer-events: none; }
.cta-shape--1 {
  width: 350px; height: 350px;
  background: rgba(253, 244, 212, 0.06);
  border-radius: 50%;
  top: -100px; left: -80px;
}
.cta-shape--2 {
  width: 200px; height: 200px;
  background: rgba(52, 211, 153, 0.1);
  border-radius: 30px;
  bottom: -60px; right: 5%;
  transform: rotate(30deg);
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #FDF8F0;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-desc { color: rgba(253, 248, 240, 0.8); font-size: 1.05rem; max-width: 480px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ── */
.contact {
  padding: 100px 24px;
  background: #FDF8F0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 28px;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  background: #D1FAE5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.95rem; color: #064E3B; margin-bottom: 2px; }
.contact-detail span, .contact-detail a { font-size: 0.9rem; color: #065F46; }
.contact-detail a:hover { color: #047857; text-decoration: underline; }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(4, 120, 87, 0.08);
  border: 1px solid rgba(4, 120, 87, 0.08);
}
.contact-form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #064E3B;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #065F46;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #D1FAE5;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #064E3B;
  background: #FDF8F0;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus { border-color: #047857; box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1); }
.form-input::placeholder { color: #065F46; opacity: 0.4; }
.form-select { appearance: none; cursor: pointer; 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='%23065F46' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Epolyline 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: 120px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #D1FAE5;
  color: #064E3B;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.form-success.show { display: block; }

/* ── Footer ── */
.footer {
  background: #022C22;
  color: rgba(253, 248, 240, 0.7);
  padding: 64px 24px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #FDF8F0;
  margin-bottom: 12px;
}
.footer-logo span { color: #34D399; }
.footer-tagline { font-size: 0.88rem; max-width: 280px; line-height: 1.7; }
.footer-links strong, .footer-contact strong {
  display: block;
  color: #FDF4D4;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: #34D399; }
.footer-bottom {
  border-top: 1px solid rgba(253, 248, 240, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 248, 240, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(4, 120, 87, 0.1);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-cta-btn { width: 100%; justify-content: center; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-cards { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-us-layout { grid-template-columns: 1fr; }
  .why-us-images { min-height: 400px; order: -1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item:not(.gallery-item--wide) { grid-column: span 1; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item--wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .hero { padding: 100px 20px 60px; }
  .footer-bottom { flex-direction: column; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .gallery-item img { transition: none; }
  .gallery-item:hover img { transform: none; }
}
