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

:root {
  --green-900: #1a3a1a;
  --green-800: #264d26;
  --green-700: #2d6a2d;
  --green-600: #3a7d3a;
  --green-500: #4a9a4a;
  --green-100: #d8edd8;
  --green-50: #eef7ee;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 4px 24px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white); }
.text-light { color: rgba(255,255,255,.75); }

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary { background: var(--green-600); color: var(--white); }
.btn-primary:hover { background: var(--green-700); }
.btn-outline { border-color: var(--green-600); color: var(--green-600); background: transparent; }
.btn-outline:hover { background: var(--green-600); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; }
.btn-nav { padding: 10px 24px; font-size: .9rem; }

/* ========== Navigation ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled { background: rgba(255,255,255,.97); box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); transition: color .3s; }
.nav.scrolled .logo { color: var(--green-800); }
.logo-icon { font-size: 1.5rem; }
.logo-img { height: 72px; width: auto; transition: height .3s; }
.nav.scrolled .logo-img { height: 56px; }
.footer-logo-img { height: 80px; width: auto; margin-bottom: 16px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.9); transition: color .3s; }
.nav.scrolled .nav-links a { color: var(--gray-700); }
.nav.scrolled .nav-links a:hover { color: var(--green-600); }
.nav-links .btn-nav { color: var(--white); border-color: var(--white); }
.nav.scrolled .nav-links .btn-nav { color: var(--white); border-color: var(--green-600); background: var(--green-600); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.nav.scrolled .mobile-toggle span { background: var(--gray-700); }

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f2b0f 0%, #1a4a1a 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  background: rgba(255,255,255,.12); color: var(--green-100);
  font-size: .85rem; font-weight: 500; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 540px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* ========== Sections ========== */
.section { padding: 96px 0; }
.section-alt { background: var(--green-50); }
.section-dark { background: var(--green-900); color: var(--white); }
.section-label {
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  color: var(--green-600); margin-bottom: 12px; text-align: center;
}
.section-label-light { color: var(--green-500); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.2;
}
.section-dark .section-title { color: var(--white); }
.text-left.section-label, .text-left.section-title { text-align: left; }

/* ========== Services Grid ========== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  border-top: 3px solid var(--green-600);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.15rem; color: var(--gray-900); margin-bottom: 10px; }
.service-card p { font-size: .92rem; color: var(--gray-500); line-height: 1.6; }

/* ========== About ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-placeholder {
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  border-radius: var(--radius);
  height: 400px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--green-700); font-size: 1.1rem; font-weight: 600;
}
.about-image-placeholder span { font-size: 4rem; margin-bottom: 12px; }
.about-text p { margin-bottom: 16px; font-size: .95rem; line-height: 1.75; }
.stats-row { display: flex; gap: 40px; margin-top: 28px; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--green-700); font-weight: 700; }
.stat-label { font-size: .82rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }

/* ========== Pricing ========== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 960px; margin: 0 auto; }
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 32px;
  box-shadow: var(--shadow); text-align: center; position: relative;
  border: 2px solid transparent; transition: transform .2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card-featured { border-color: var(--green-600); transform: scale(1.04); }
.price-card-featured:hover { transform: scale(1.04) translateY(-4px); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green-600); color: var(--white); font-size: .75rem;
  font-weight: 600; padding: 5px 18px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px;
}
.price-tier { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-500); margin-bottom: 12px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--gray-900); font-weight: 700; }
.price-amount span { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 400; color: var(--gray-500); }
.price-desc { font-size: .88rem; color: var(--gray-500); margin: 8px 0 24px; }
.price-features { margin-bottom: 28px; }
.price-features li { padding: 8px 0; font-size: .92rem; color: var(--gray-700); }

/* ========== Testimonials ========== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow);
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: .95rem; line-height: 1.7; font-style: italic; color: var(--gray-700); margin-bottom: 20px; }
.testimonial-author { font-size: .85rem; font-weight: 600; color: var(--gray-500); }

/* ========== Service Area Tags ========== */
.area-desc { font-size: 1rem; color: var(--gray-500); margin-bottom: 32px; }
.areas-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 700px; margin: 0 auto; }
.area-tag {
  padding: 10px 20px; border-radius: 50px; font-size: .88rem; font-weight: 500;
  background: var(--green-50); color: var(--green-800); border: 1px solid var(--green-100);
}

/* ========== Contact ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-details { margin-top: 32px; }
.contact-item { display: flex; gap: 16px; align-items: start; margin-bottom: 24px; }
.contact-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-item a { color: var(--green-500); }
.contact-item a:hover { text-decoration: underline; }
.contact-item strong { color: var(--white); }

.contact-form {
  background: var(--white); border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-300);
  border-radius: 8px; font-family: inherit; font-size: .95rem;
  transition: border-color .2s; background: var(--white); color: var(--gray-900);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-600);
}

/* ========== Footer ========== */
.footer { background: var(--green-900); color: rgba(255,255,255,.6); padding: 48px 0 32px; }
.footer-inner { text-align: center; }
.footer-brand .logo { color: var(--white); font-size: 1.3rem; display: inline-block; margin-bottom: 8px; }
.footer-brand p { font-size: .88rem; margin-bottom: 24px; }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 28px; }
.footer-links a { font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--green-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; }
.footer-bottom p { font-size: .82rem; }

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .services-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 640px) {
  .services-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: var(--white);
    padding: 24px; gap: 16px; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--gray-700) !important; font-size: 1rem; }
  .nav-links .btn-nav { background: var(--green-600); color: var(--white) !important; text-align: center; }
  .mobile-toggle { display: flex; }
  .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero { min-height: 80vh; }
  .hero-actions { flex-direction: column; }
  .stats-row { gap: 24px; }
  .section { padding: 64px 0; }
  .contact-form { padding: 28px 20px; }
}
