/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Outfit', sans-serif;
  color: #1a3a2a;
  background: #fdfaf3;
  line-height: 1.6;
  -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 { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -999px; top: 0; background: #059669; color: #fff; padding: 8px 16px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Lora', serif; font-weight: 600; line-height: 1.25; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #059669;
  background: #d1fae5;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag.text-emerald { color: #059669; background: #d1fae5; }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f291e;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: #4a6b5a;
  max-width: 580px;
  margin: 0 auto;
}
.text-center { text-align: center; }
.text-dark { color: #0f291e; }
.text-emerald { color: #059669; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid #059669; outline-offset: 2px; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; border-radius: 10px; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; border-radius: 14px; }
.btn-full { width: 100%; }
.btn-emerald { background: #059669; color: #fff; border-color: #059669; }
.btn-emerald:hover { background: #047857; border-color: #047857; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,150,105,0.3); }
.btn-outline { background: transparent; color: #059669; border-color: #059669; }
.btn-outline:hover { background: #059669; color: #fff; transform: translateY(-2px); }
.btn-cream { background: #fdf6e3; color: #059669; border-color: #fdf6e3; }
.btn-cream:hover { background: #fef3c7; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(253,246,227,0.4); }
.btn-outline-light { background: transparent; color: #0f291e; border-color: #0f291e; }
.btn-outline-light:hover { background: #0f291e; color: #fff; transform: translateY(-2px); }
.btn-outline-emerald { background: transparent; color: #059669; border-color: #059669; }
.btn-outline-emerald:hover { background: #d1fae5; transform: translateY(-2px); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 250, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5, 150, 105, 0.1);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(15, 41, 30, 0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f291e;
  line-height: 1.2;
}
.logo-accent { color: #059669; }
.logo-text-light { color: #d1fae5; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-list a {
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1a3a2a;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-list a:hover { background: #d1fae5; color: #059669; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f291e;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger { top: 50%; transform: translate(-50%, -50%); }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; bottom: -7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { bottom: 0; transform: translate(-50%, 0) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(253, 250, 243, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(5,150,105,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-list a { padding: 14px 16px; font-size: 1rem; width: 100%; }
  .nav-list .btn { text-align: center; margin-top: 8px; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdf4 0%, #fdfaf3 40%, #fefce8 100%);
  padding-top: 76px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(5,150,105,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(16,185,129,0.06) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #059669 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #059669;
  background: rgba(5,150,105,0.1);
  border: 1px solid rgba(5,150,105,0.2);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #0f291e;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.1rem;
  color: #4a6b5a;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; flex-direction: column; gap: 12px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #2d5a3f;
  font-weight: 500;
}
.trust-item svg { flex-shrink: 0; color: #059669; }

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(15, 41, 30, 0.15);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 620/720;
}
.hero-float-card {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(253, 250, 243, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(15, 41, 30, 0.12);
}
.float-label { font-weight: 600; font-size: 0.95rem; color: #0f291e; }
.float-sub { font-size: 0.8rem; color: #4a6b5a; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { align-items: center; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .hero-float-card { left: 20px; bottom: 20px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: #fdfaf3;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(5,150,105,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(5,150,105,0.1);
  border-color: rgba(5,150,105,0.2);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.2rem;
  color: #0f291e;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  color: #4a6b5a;
  line-height: 1.65;
}
@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: linear-gradient(180deg, #f0fdf4 0%, #fdfaf3 100%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 560/640;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(15,41,30,0.12);
}
.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 24px;
  z-index: -1;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
  font-size: 1rem;
  color: #4a6b5a;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0 40px;
}
.stat { text-align: left; }
.stat-number {
  display: block;
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #059669;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.85rem; color: #4a6b5a; font-weight: 500; }
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 480px; }
  .about-stats { gap: 24px; }
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: #0f291e;
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(5,150,105,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(16,185,129,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.why-us .container { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(16,185,129,0.3);
  transform: translateY(-4px);
}
.why-num {
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 600;
  color: rgba(5,150,105,0.3);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.2rem;
  color: #d1fae5;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.95rem;
  color: rgba(209,250,229,0.7);
  line-height: 1.65;
}
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: #fdfaf3;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,41,30,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #fdfaf3 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(5,150,105,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5,150,105,0.1);
}
.quote-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  opacity: 0.15;
}
.testimonial-text {
  font-size: 0.98rem;
  color: #2d5a3f;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #059669, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.95rem; color: #0f291e; }
.author-location { font-size: 0.82rem; color: #4a6b5a; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  margin-bottom: 16px;
}
.cta-text {
  font-size: 1.05rem;
  color: rgba(209,250,229,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline-light:hover { background: #fff; color: #059669; border-color: #fff; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: #fdfaf3;
}
.contact-inner {
  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; }
.contact-desc {
  font-size: 1rem;
  color: #4a6b5a;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: #d1fae5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #059669;
  margin-bottom: 4px;
}
.contact-item p { font-size: 0.95rem; color: #1a3a2a; line-height: 1.5; }
.contact-item a { color: #059669; font-weight: 500; transition: color 0.2s; }
.contact-item a:hover { color: #047857; }
.map-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(15,41,30,0.08); }

.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(5,150,105,0.1);
  border-radius: 24px;
  padding: 40px;
}
.form-title {
  font-size: 1.5rem;
  color: #0f291e;
  margin-bottom: 8px;
}
.form-desc {
  font-size: 0.95rem;
  color: #4a6b5a;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a3a2a;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d1fae5;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #1a3a2a;
  background: #fdfaf3;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5,150,105,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }
.form-note { font-size: 0.82rem; color: #4a6b5a; margin-top: 12px; text-align: center; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h3 {
  font-size: 1.4rem;
  color: #0f291e;
  margin-bottom: 8px;
}
.form-success p { color: #4a6b5a; margin-bottom: 24px; }
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .contact-form-wrap { padding: 24px; } }

/* ===== FOOTER ===== */
.site-footer {
  background: #0a1f15;
  color: #d1fae5;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(209,250,229,0.6);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-links h4, .footer-contact h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10b981;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(209,250,229,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: #10b981; }
.footer-contact p {
  font-size: 0.9rem;
  color: rgba(209,250,229,0.65);
  line-height: 1.7;
}
.footer-contact a { color: rgba(209,250,229,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: #10b981; }
.footer-bottom {
  border-top: 1px solid rgba(209,250,229,0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(209,250,229,0.4); }
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
