/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #1a2e1f;
  background: #FAFBF7;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

.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(250, 251, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 90, 61, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(45, 90, 61, 0.08);
  background: rgba(250, 251, 247, 0.97);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 15px;
  color: #2D5A3D;
  line-height: 1.2;
}

.nav-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #6FA560;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.nav-cta) {
  font-size: 14px;
  font-weight: 500;
  color: #1a2e1f;
  position: relative;
  padding: 4px 0;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2D5A3D;
  border-radius: 1px;
  transition: width 0.25s ease;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #2D5A3D;
  color: #E8F0E4 !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  background: #234730;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.25);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #2D5A3D;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('https://images.pexels.com/photos/7580644/pexels-photo-7580644.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 37, 25, 0.82) 0%,
    rgba(45, 90, 61, 0.72) 50%,
    rgba(26, 54, 37, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 24px 80px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 240, 228, 0.15);
  border: 1px solid rgba(232, 240, 228, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #E8F0E4;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: #FAFBF7;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-accent {
  color: #9BBF8E;
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(232, 240, 228, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #2D5A3D;
  color: #E8F0E4;
  box-shadow: 0 4px 20px rgba(45, 90, 61, 0.3);
}

.btn-primary:hover {
  background: #234730;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 90, 61, 0.35);
}

.btn-secondary {
  background: rgba(232, 240, 228, 0.12);
  color: #E8F0E4;
  border: 1px solid rgba(232, 240, 228, 0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(232, 240, 228, 0.2);
  transform: translateY(-2px);
}

.btn-white {
  background: #FAFBF7;
  color: #2D5A3D;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  background: transparent;
  color: #FAFBF7;
  border: 1px solid rgba(232, 240, 228, 0.5);
}

.btn-outline-white:hover {
  background: rgba(232, 240, 228, 0.1);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E8F0E4;
}

.stat-label {
  font-size: 12px;
  color: rgba(232, 240, 228, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(232, 240, 228, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(232, 240, 228, 0.5);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Section Shared ─── */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6FA560;
  margin-bottom: 16px;
}

.section-tag--light {
  color: #9BBF8E;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #1a2e1f;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title--light {
  color: #FAFBF7;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #4a6352;
  line-height: 1.7;
}

.section-subtitle--light {
  color: rgba(232, 240, 228, 0.75);
}

/* ─── Services ─── */
.services {
  background: #FAFBF7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(45, 90, 61, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(45, 90, 61, 0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: #E8F0E4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2e1f;
  margin-bottom: 12px;
}

.service-card > p {
  font-size: 0.95rem;
  color: #4a6352;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #1a2e1f;
  font-weight: 500;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #6FA560;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── About ─── */
.about {
  background: #F4F6EE;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
}

.about-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  background: #2D5A3D;
  border-radius: 20px;
  z-index: -1;
  opacity: 0.15;
}

.about-content {
  max-width: 520px;
}

.about-text {
  font-size: 1.02rem;
  color: #4a6352;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #1a2e1f;
  font-weight: 500;
}

.about-highlight svg {
  flex-shrink: 0;
}

/* ─── Why Choose Us ─── */
.why-us {
  background: #2D5A3D;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155, 191, 142, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 240, 228, 0.1);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(155, 191, 142, 0.35);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #E8F0E4;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: rgba(232, 240, 228, 0.7);
  line-height: 1.75;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: #F4F6EE;
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
  min-width: 280px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a2e1f;
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: #4a6352;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
  background: #FAFBF7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-desc {
  font-size: 1.02rem;
  color: #4a6352;
  line-height: 1.75;
  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: 48px;
  height: 48px;
  background: #E8F0E4;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6FA560;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: #1a2e1f;
  line-height: 1.6;
}

.contact-detail a:hover {
  color: #2D5A3D;
  text-decoration: underline;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(45, 90, 61, 0.07);
  box-shadow: 0 8px 40px rgba(45, 90, 61, 0.06);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a2e1f;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2e1f;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #D5D9C8;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #1a2e1f;
  background: #FAFBF7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #6FA560;
  box-shadow: 0 0 0 3px rgba(111, 165, 96, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9BBF8E;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #E8F0E4;
  border-radius: 12px;
  margin-top: 16px;
}

.form-success.show {
  display: flex;
}

.form-success p {
  font-size: 0.9rem;
  color: #2D5A3D;
  font-weight: 500;
}

/* ─── Footer ─── */
.footer {
  background: #1a2e1f;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(232, 240, 228, 0.1);
}

.footer-brand p {
  color: rgba(232, 240, 228, 0.55);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 15px;
  color: #E8F0E4;
  line-height: 1.2;
}

.footer-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #6FA560;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6FA560;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(232, 240, 228, 0.6);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #E8F0E4;
}

.footer-contact address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(232, 240, 228, 0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact a {
  font-size: 0.9rem;
  color: rgba(232, 240, 228, 0.6);
}

.footer-contact a:hover {
  color: #E8F0E4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(232, 240, 228, 0.35);
}

/* ─── Mobile Menu ─── */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(250, 251, 247, 0.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid rgba(45, 90, 61, 0.08);
  box-shadow: 0 12px 32px rgba(45, 90, 61, 0.08);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links.open {
    display: flex;
  }

  section {
    padding: 72px 0;
  }

  .hero-content {
    padding: 100px 24px 80px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-divider {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap img {
    height: 360px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 90px 16px 70px;
  }
}
