/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.skip-link { position: absolute; top: -100%; left: 16px; background: #1b5e20; color: #fff; padding: 8px 16px; border-radius: 0 0 8px 8px; z-index: 9999; font-weight: 600; }
.skip-link:focus { top: 0; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 94, 32, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(27, 94, 32, 0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 72px; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Lora', serif; font-weight: 600; font-size: 1.1rem; color: #1b5e20; }
.nav-logo-text { line-height: 1.2; }
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-links a { padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; color: #1b5e20; transition: background 0.2s, color 0.2s; }
.nav-links a:hover { background: #e8f5e9; }
.nav-cta { display: flex; align-items: center; gap: 6px; background: #1b5e20 !important; color: #fff !important; }
.nav-cta:hover { background: #144a17 !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-toggle-line { width: 24px; height: 2px; background: #1b5e20; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.active .nav-toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #1b5e20; color: #fff; box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3); }
.btn-primary:hover { background: #144a17; box-shadow: 0 8px 30px rgba(27, 94, 32, 0.35); }
.btn-secondary { background: #fff; color: #1b5e20; border: 2px solid #1b5e20; }
.btn-secondary:hover { background: #f1f8e9; }
.btn-outline-light { background: transparent; color: #1b5e20; border: 2px solid rgba(27, 94, 32, 0.3); }
.btn-outline-light:hover { background: rgba(27, 94, 32, 0.08); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Section Tags ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: #2e7d32; background: #e8f5e9; padding: 6px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Lora', serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600; line-height: 1.2; color: #0d300f; margin-bottom: 16px;
}
.section-desc { font-size: 1.1rem; color: #4a6b4a; line-height: 1.7; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Hero ── */
.hero {
  padding: 120px 0 0;
  background: linear-gradient(135deg, #fefdf8 0%, #f1f8e9 50%, #e8f5e9 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 201, 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 700; color: #1b5e20;
  background: rgba(255,255,255,0.8); border: 1px solid rgba(27,94,32,0.15);
  padding: 8px 18px; border-radius: 50px; margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge svg { opacity: 0.7; }
.hero-headline {
  font-family: 'Lora', serif; font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600; line-height: 1.15; color: #0d300f; margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem; line-height: 1.8; color: #4a6b4a; margin-bottom: 36px; max-width: 520px;
}
.hero-sub em { color: #1b5e20; font-style: italic; }
.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: 600; color: #1b5e20; }

/* Hero Images */
.hero-image-col { position: relative; min-height: 600px; }
.hero-img-main {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(27, 94, 32, 0.15);
  aspect-ratio: 560/700;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute; bottom: 60px; left: -40px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(27, 94, 32, 0.2);
  border: 4px solid #fff;
}
.hero-img-float img { width: 100%; height: 200px; object-fit: cover; }
.hero-float-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(27, 94, 32, 0.85); backdrop-filter: blur(8px);
  color: #fff; font-size: 0.8rem; font-weight: 700;
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
}
.hero-img-accent {
  position: absolute; top: 30px; right: -20px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(27, 94, 32, 0.12);
  border: 3px solid #fff;
}
.hero-img-accent img { width: 100%; height: 180px; object-fit: cover; }

/* Hero Wave */
.hero-wave { margin-top: 0; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ── Services ── */
.services { padding: 100px 0; background: #e8f5e9; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}
.service-card {
  background: #fff; border-radius: 20px; padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(27, 94, 32, 0.06);
  border: 1px solid rgba(27, 94, 32, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(27, 94, 32, 0.12); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: #e8f5e9; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Lora', serif; font-size: 1.25rem; font-weight: 600;
  color: #0d300f; margin-bottom: 12px;
}
.service-card p { font-size: 0.95rem; line-height: 1.7; color: #4a6b4a; }

/* ── About ── */
.about { padding: 100px 0; background: #fefdf8; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; min-height: 500px; }
.about-img-large {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(27, 94, 32, 0.12);
  aspect-ratio: 520/600;
}
.about-img-large img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
  position: absolute; bottom: -30px; right: -20px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(27, 94, 32, 0.15);
  border: 4px solid #fefdf8;
  aspect-ratio: 340/260;
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.about-exp-badge {
  position: absolute; top: -20px; left: -20px;
  background: #1b5e20; color: #fff; border-radius: 20px;
  padding: 20px 24px; text-align: center;
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.3);
}
.about-exp-number { display: block; font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 600; }
.about-exp-text { display: block; font-size: 0.75rem; font-weight: 600; opacity: 0.85; margin-top: 2px; }
.about-content .section-title { margin-top: 8px; }
.about-text { font-size: 1.05rem; line-height: 1.8; color: #4a6b4a; margin-bottom: 20px; }
.about-text em { color: #1b5e20; font-style: italic; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-value { display: flex; gap: 16px; align-items: flex-start; }
.about-value-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
  background: #e8f5e9; display: flex; align-items: center; justify-content: center;
}
.about-value strong { display: block; font-size: 1rem; color: #0d300f; margin-bottom: 4px; }
.about-value span { font-size: 0.9rem; line-height: 1.6; color: #4a6b4a; }

/* ── Why Us ── */
.why-us { padding: 100px 0; background: linear-gradient(135deg, #1b5e20 0%, #0d300f 100%); position: relative; overflow: hidden; }
.why-us::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(129, 199, 132, 0.1);
}
.why-us::after {
  content: ''; position: absolute; bottom: -80px; right: 200px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(129, 199, 132, 0.08);
}
.why-us-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative;
}
.why-us-content .section-tag { background: rgba(255,255,255,0.15); color: #c8e6c9; }
.why-us-content .section-title { color: #fff; }
.why-us-text { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.why-us-stats { display: flex; gap: 32px; align-items: center; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 600; color: #a5d6a7; }
.stat-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }
.why-us-image { border-radius: 24px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.3); aspect-ratio: 480/560; }
.why-us-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Process ── */
.process { padding: 100px 0; background: #fefdf8; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 44px; left: 16%; right: 16%;
  height: 2px; background: linear-gradient(90deg, #c8e6c9, #81c784, #c8e6c9);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.process-step-num {
  font-family: 'Lora', serif; font-size: 3rem; font-weight: 600;
  color: #c8e6c9; line-height: 1; margin-bottom: 16px;
}
.process-step-line {
  background: #fff; border-radius: 20px; padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(27, 94, 32, 0.06);
  border: 1px solid rgba(27, 94, 32, 0.06);
}
.process-step-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #e8f5e9; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.process-step h3 {
  font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 600;
  color: #0d300f; margin-bottom: 10px;
}
.process-step p { font-size: 0.9rem; line-height: 1.7; color: #4a6b4a; }

/* ── Testimonials ── */
.testimonials { padding: 100px 0; background: #e8f5e9; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: 20px; padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(27, 94, 32, 0.06);
  border: 1px solid rgba(27, 94, 32, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(27, 94, 32, 0.1); }
.testimonial-quote { margin-bottom: 20px; }
.testimonial-text { font-size: 1rem; line-height: 1.8; color: #4a6b4a; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.testimonial-name { display: block; font-weight: 700; font-size: 0.95rem; color: #0d300f; }
.testimonial-location { display: block; font-size: 0.8rem; color: #81c784; margin-top: 2px; }

/* ── CTA ── */
.cta { padding: 80px 0; background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%); }
.cta-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.cta-text .section-tag { margin-bottom: 12px; }
.cta-text .section-title { margin-bottom: 12px; }
.cta-desc { font-size: 1.1rem; line-height: 1.7; color: #4a6b4a; max-width: 560px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── Contact ── */
.contact { padding: 100px 0; background: #fefdf8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .section-title { margin-top: 8px; }
.contact-desc { font-size: 1.05rem; line-height: 1.7; color: #4a6b4a; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 52px; height: 52px; min-width: 52px; border-radius: 14px;
  background: #e8f5e9; display: flex; align-items: center; justify-content: center;
}
.contact-detail strong { display: block; font-size: 1rem; color: #0d300f; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.95rem; line-height: 1.6; color: #4a6b4a; }
.contact-detail a:hover { color: #1b5e20; }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(27, 94, 32, 0.1); }

/* Contact Form */
.contact-form-wrap { }
.contact-form-card {
  background: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 8px 40px rgba(27, 94, 32, 0.08);
  border: 1px solid rgba(27, 94, 32, 0.06);
}
.contact-form-card h3 {
  font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 600;
  color: #0d300f; margin-bottom: 8px;
}
.contact-form-desc { font-size: 0.95rem; color: #4a6b4a; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 700; color: #1b5e20;
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 2px solid #e8f5e9; background: #fefdf8;
  color: #0d300f; font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #1b5e20; box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success-icon { color: #1b5e20; margin-bottom: 16px; }
.form-success h4 { font-family: 'Lora', serif; font-size: 1.3rem; color: #0d300f; margin-bottom: 8px; }
.form-success p { font-size: 0.95rem; color: #4a6b4a; margin-bottom: 20px; }

/* ── Footer ── */
.footer { background: #0d300f; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Lora', serif; font-weight: 600; font-size: 1.1rem; color: #fff; margin-bottom: 16px; }
.footer-logo span { color: #81c784; }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.footer ul li svg { opacity: 0.6; min-width: 16px; }
.footer ul a:hover { color: #81c784; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.8rem;
}
.footer-disclaimer { font-size: 0.75rem; opacity: 0.6; }

/* ── Back to Top ── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: #1b5e20; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #144a17; transform: translateY(-2px); }

/* ── Animations ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-col { min-height: 400px; order: -1; }
  .hero-img-float { left: 10px; bottom: 30px; }
  .hero-img-accent { right: 10px; top: 10px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { min-height: 400px; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-image { max-height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(254, 253, 248, 0.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 24px; gap: 8px;
    border-bottom: 1px solid rgba(27, 94, 32, 0.08);
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 20px 40px rgba(27, 94, 32, 0.1);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 0; }
  .hero-image-col { min-height: 300px; }
  .hero-img-main { border-radius: 16px; }
  .hero-img-float { border-radius: 12px; left: 5px; bottom: 20px; }
  .hero-img-accent { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-exp-badge { top: -10px; left: -10px; padding: 14px 18px; }
  .about-img-small { right: -10px; bottom: -15px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .hero-headline { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .why-us-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 48px; height: 1px; }
}
