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

:root {
  --forest: #2d5016;
  --forest-light: #4a7c2e;
  --sage: #8ba870;
  --cream: #faf8f0;
  --warm: #f5efe0;
  --gold: #c8a951;
  --rust: #b8633e;
  --dark: #2a2a2a;
  --gray: #5a5a5a;
  --light: #f0ece2;
  --radius: 12px;
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--dark);
  line-height: 1.7;
  font-size: 18px;
  background: var(--cream);
}

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

/* Header */
.header {
  background: var(--forest);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.logo { color: #fff; font-size: 1.5rem; font-weight: 700; text-decoration: none; letter-spacing: 0.5px; }
.logo span { color: var(--gold); font-weight: 400; }
.header-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.header-nav a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 1rem; font-family: 'Segoe UI', system-ui, sans-serif; }
.header-nav a:hover { color: var(--gold); }
.header-phone { color: var(--gold); font-weight: 600; text-decoration: none; font-size: 1.15rem; font-family: 'Segoe UI', system-ui, sans-serif; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-light) 100%);
  color: #fff;
  padding: 60px 0;
}
.hero-inner { display: flex; align-items: center; gap: 48px; }
.hero-text { flex: 1; }
.hero-image { flex: 1; text-align: center; }
.hero-image img { max-width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero h1 { font-size: 2.5rem; margin-bottom: 16px; line-height: 1.3; }
.hero-sub { font-size: 1.15rem; opacity: 0.92; margin-bottom: 32px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-sm { padding: 48px 0; }

/* Buttons */
.btn {
  display: inline-block; padding: 16px 36px; border-radius: 50px;
  font-size: 1.05rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: 'Segoe UI', system-ui, sans-serif;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-primary { background: var(--rust); color: #fff; }
.btn-secondary { background: #fff; color: var(--forest); }
.btn-full { width: 100%; text-align: center; }

/* Trust Bar */
.trust-bar { background: var(--warm); padding: 22px 0; border-bottom: 3px solid var(--sage); }
.trust-bar ul { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; list-style: none; font-weight: 600; font-size: 1rem; font-family: 'Segoe UI', system-ui, sans-serif; color: var(--forest); }

/* Services */
.services { padding: 72px 0; }
.services h2 { text-align: center; margin-bottom: 44px; font-size: 1.9rem; color: var(--forest); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border-top: 5px solid var(--sage);
}
.service-card h3 { margin: 16px 0 12px; color: var(--forest); font-size: 1.3rem; }
.service-card p { color: var(--gray); font-family: 'Segoe UI', system-ui, sans-serif; font-size: 0.95rem; }
.service-img { width: 100%; border-radius: var(--radius); }

/* About */
.about { padding: 72px 0; background: var(--warm); }
.about-inner { display: flex; gap: 44px; align-items: center; }
.about-img { max-width: 380px; border-radius: var(--radius); flex-shrink: 0; box-shadow: var(--shadow); }
.about h2 { color: var(--forest); margin-bottom: 20px; font-size: 1.9rem; }
.about p { max-width: 700px; margin-bottom: 16px; font-family: 'Segoe UI', system-ui, sans-serif; }

/* Testimonial */
.testimonial {
  padding: 56px 0; text-align: center;
  background: var(--forest); color: #fff;
  border-top: 4px solid var(--gold); border-bottom: 4px solid var(--gold);
}
.testimonial blockquote { font-size: 1.25rem; font-style: italic; max-width: 620px; margin: 0 auto 16px; line-height: 1.7; }
.testimonial cite { opacity: 0.85; font-size: 1rem; font-family: 'Segoe UI', system-ui, sans-serif; }

/* Content Pages */
.content { padding: 72px 0; }
.content h2 { color: var(--forest); margin: 36px 0 16px; font-size: 1.6rem; }
.content h2:first-child { margin-top: 0; }
.content p { margin-bottom: 16px; max-width: 760px; font-family: 'Segoe UI', system-ui, sans-serif; font-size: 1rem; }

.benefit-list { margin-bottom: 20px; padding-left: 24px; }
.benefit-list li { margin-bottom: 12px; font-family: 'Segoe UI', system-ui, sans-serif; font-size: 1rem; }
.benefit-list li strong { color: var(--forest); }

.internal-link { text-align: center; padding: 16px 0; font-size: 1rem; font-family: 'Segoe UI', system-ui, sans-serif; }
.internal-link a { color: var(--forest); font-weight: 600; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--forest), var(--forest-light)); color: #fff; padding: 56px 0; text-align: center; }
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { opacity: 0.9; margin-bottom: 20px; font-family: 'Segoe UI', system-ui, sans-serif; }

/* Contact Form */
.contact { padding: 72px 0; background: var(--cream); }
.contact h2 { text-align: center; color: var(--forest); margin-bottom: 8px; font-size: 1.9rem; }
.contact-sub { text-align: center; margin-bottom: 32px; color: var(--gray); font-family: 'Segoe UI', system-ui, sans-serif; }
.contact form { max-width: 540px; margin: 0 auto; }
.form-row { display: flex; gap: 16px; }
.form-group { margin-bottom: 18px; flex: 1; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.95rem; font-family: 'Segoe UI', system-ui, sans-serif; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px; border: 2px solid #d4d0c8; border-radius: var(--radius);
  font-size: 1rem; font-family: 'Segoe UI', system-ui, sans-serif; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--sage);
}
.form-note { text-align: center; font-size: 0.85rem; color: var(--gray); margin-top: 12px; font-family: 'Segoe UI', system-ui, sans-serif; }

/* Contact Grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { color: var(--forest); margin: 24px 0 12px; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { margin-bottom: 8px; font-family: 'Segoe UI', system-ui, sans-serif; }
.contact-form-wrap h2 { color: var(--forest); margin-bottom: 8px; }

/* FAQ */
.faq { padding: 72px 0; background: var(--warm); }
.faq h2 { text-align: center; color: var(--forest); margin-bottom: 32px; font-size: 1.9rem; }
details { background: #fff; margin-bottom: 14px; border-radius: var(--radius); padding: 18px 22px; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
summary { font-weight: 600; color: var(--forest); font-family: 'Segoe UI', system-ui, sans-serif; font-size: 1.05rem; }
details p { margin-top: 14px; color: var(--gray); line-height: 1.7; font-family: 'Segoe UI', system-ui, sans-serif; }

/* Footer */
.footer { background: #1e1e1e; color: #bbb; padding: 48px 0 32px; font-size: 0.9rem; font-family: 'Segoe UI', system-ui, sans-serif; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-links h4 { color: #fff; margin-bottom: 14px; font-family: Georgia, serif; font-size: 1rem; }
.footer-links a { display: block; color: #bbb; text-decoration: none; margin-bottom: 8px; }
.footer-links a:hover { color: var(--gold); }
.footer-address { color: #888; font-size: 0.85rem; }


/* Nav Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: default; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--forest); border-radius: 0 0 8px 8px; min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); z-index: 200; padding: 8px 0;
}
.dropdown-menu a {
  display: block; padding: 10px 20px; color: rgba(255,255,255,0.9);
  text-decoration: none; font-size: 0.9rem; white-space: nowrap;
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.08); }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }

/* Mobile */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-image img { max-width: 320px; }
  .about-inner { flex-direction: column; }
  .about-img { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; text-align: center; }
  body { font-size: 17px; }
}
@media (max-width: 500px) {
  .form-row { flex-direction: column; gap: 0; }
  .trust-bar ul { gap: 16px; font-size: 0.9rem; }
  .header-nav { gap: 12px; }
  .header-nav a { font-size: 0.8rem; }
  .nav-dropdown { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
  .nav-dropdown { position: static; }
  .dropdown-menu {
    display: block; position: static; transform: none;
    background: none; box-shadow: none; padding: 0; min-width: auto;
  }
  .dropdown-menu a { padding: 4px 0; font-size: 0.8rem; }
  .dropdown-toggle { display: none; }

  .header .container { justify-content: center; }
}
