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

:root {
  --green-dark: #1a5f3a;
  --green-mid: #237a4a;
  --green-light: #2d9258;
  --green-pale: #e8f5ee;
  --off-white: #f7f8f5;
  --cream: #faf9f6;
  --text-dark: #1a1f1d;
  --text-mid: #3d4a44;
  --text-light: #6b7c72;
  --border: #e0e6e1;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(26,95,58,0.06);
  --shadow-md: 0 4px 16px rgba(26,95,58,0.08);
  --shadow-lg: 0 8px 32px rgba(26,95,58,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--text-dark); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.938rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline:hover { background: var(--green-dark); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== Section Headers ===== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag.light { background: rgba(255,255,255,0.15); color: var(--white); }

.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }
.section-title.light { color: var(--white); }

.section-sub { font-size: 1.063rem; color: var(--text-light); max-width: 560px; }
.section-header { margin-bottom: 56px; }
.section-header.light { text-align: center; }
.section-header.light .section-sub { margin: 0 auto; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.125rem; color: var(--text-dark); }
.logo-accent { color: var(--green-dark); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 0.938rem; font-weight: 500; color: var(--text-mid); transition: color var(--transition); }
.nav a:hover { color: var(--green-dark); }
.nav-cta {
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-mid); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--transition); }
.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); }

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 8px; max-width: 400px; margin: 0 auto; }
.mobile-link { font-size: 1.25rem; font-weight: 600; color: var(--text-dark); padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-cta { color: var(--green-dark); border-bottom: none; }
.mobile-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.mobile-contact a { color: var(--text-mid); font-size: 0.938rem; }
.mobile-contact a:hover { color: var(--green-dark); }

/* ===== Hero ===== */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 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(26,95,58,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-sub {
  font-size: 1.063rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 500; color: var(--text-mid); }

.hero-image { position: relative; }
.hero-img-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-wrapper img { width: 100%; height: 500px; object-fit: cover; }
.hero-img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  background: var(--green-dark);
  z-index: -1;
}

.hero-stats {
  display: flex;
  gap: 16px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding: 0 16px;
}

.stat-card {
  flex: 1;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--green-dark); }
.stat-label { font-size: 0.813rem; color: var(--text-light); margin-top: 4px; }

/* ===== Services ===== */
.services { padding: 100px 0; background: var(--white); }

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

.service-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
  background: var(--cream);
}
.service-card:hover { border-color: var(--green-dark); transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--white); }
.service-icon { margin-bottom: 20px; }
.service-card h3 { font-size: 1.188rem; margin-bottom: 12px; font-family: 'Inter', sans-serif; font-weight: 600; }
.service-card p { font-size: 0.938rem; color: var(--text-light); line-height: 1.7; }

/* ===== About ===== */
.about { padding: 100px 0; background: var(--cream); }

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

.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-img-secondary img { width: 100%; height: 250px; object-fit: cover; }

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green-dark);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
}
.about-experience .exp-number { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-experience .exp-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; margin-top: 4px; }

.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; }
.about-lead { font-size: 1.063rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-content > p { font-size: 0.938rem; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }

.about-values { display: flex; flex-direction: column; gap: 14px; }
.value-item { display: flex; align-items: center; gap: 12px; font-size: 0.938rem; font-weight: 500; color: var(--text-mid); }
.value-check { width: 24px; height: 24px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ===== Why Us ===== */
.why-us { padding: 100px 0; background: var(--green-dark); position: relative; overflow: hidden; }
.why-us::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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");
  pointer-events: none;
}

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

.why-card {
  padding: 40px 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.why-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: rgba(255,255,255,0.15); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 12px; font-family: 'Inter', sans-serif; font-weight: 600; }
.why-card p { font-size: 0.938rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ===== Testimonials ===== */
.testimonials { padding: 100px 0; background: var(--off-white); }

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

.testimonial-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.testimonial-quote { margin-bottom: 20px; opacity: 0.6; }
.testimonial-text { font-size: 0.938rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.813rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.875rem; color: var(--text-dark); }
.testimonial-author span { font-size: 0.813rem; color: var(--text-light); }

/* ===== CTA Banner ===== */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-title { font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--white); margin-bottom: 16px; }
.cta-text { font-size: 1.063rem; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Contact ===== */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.contact-desc { font-size: 1.063rem; color: var(--text-light); line-height: 1.7; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.875rem; color: var(--text-dark); margin-bottom: 4px; }
.contact-item p { font-size: 0.938rem; color: var(--text-light); line-height: 1.6; }
.contact-item a { color: var(--green-dark); transition: color var(--transition); }
.contact-item a:hover { color: var(--green-mid); }

.contact-form-wrapper {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-form h3 { font-size: 1.375rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.813rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.938rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(26,95,58,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success p { font-size: 0.938rem; color: var(--green-dark); font-weight: 500; }

/* ===== Map ===== */
.map-section { padding: 0; }
.map-placeholder {
  background: var(--green-pale);
  padding: 48px 24px;
  text-align: center;
}
.map-content { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.map-content h3 { font-size: 1.25rem; }
.map-content p { color: var(--text-light); font-size: 0.938rem; }

/* ===== Footer ===== */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.6); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer .logo-text { color: var(--white); }
.footer p { font-size: 0.875rem; line-height: 1.7; }
.footer h4 { font-family: 'Inter', sans-serif; font-size: 0.813rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; text-align: center; font-size: 0.813rem; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-img-wrapper img { height: 350px; }
  .hero-stats { margin-top: -24px; }
  .stat-card { padding: 16px 20px; }
  .stat-number { font-size: 1.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { right: 0; }
  .about-experience { right: -10px; bottom: -10px; }

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

  .cta-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .cta-actions { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrapper { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
