/* ===========================
   GLOBAL RESET & VARIABLES
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2e7d5e;
  --primary-dark: #1f5c44;
  --primary-light: #e8f5ee;
  --accent: #f5a623;
  --accent-light: #fff8ec;
  --text: #2d3748;
  --text-muted: #718096;
  --bg: #ffffff;
  --bg-alt: #f7fafc;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--text-muted); }

/* ===========================
   LAYOUT HELPERS
   =========================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.center-btn { text-align: center; margin-top: 40px; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover { background: var(--primary-light); }

/* ===========================
   NAVBAR
   =========================== */
header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.navbar { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 32px; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.logo-icon { font-size: 1.5rem; }
.logo-text { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text); padding: 4px 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); border-color: var(--primary); }
.nav-cta { padding: 9px 20px; font-size: 0.9rem; }

/* ===========================
   HERO
   =========================== */
.hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 60%);
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-content { flex: 1; }
.hero-content h1 { color: var(--text); margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; max-width: 520px; margin-bottom: 32px; color: var(--text-muted); }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image { flex: 0 0 320px; }
.hero-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-stat { text-align: center; }
.stat-number { display: block; font-size: 2.4rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ===========================
   SECTION TITLES
   =========================== */
.section-title { text-align: center; margin-bottom: 12px; color: var(--text); }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 560px; margin: 0 auto 48px; font-size: 1.05rem; }

/* ===========================
   WHY US CARDS
   =========================== */
.why-us { background: var(--bg); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; color: var(--text); }

/* ===========================
   SERVICES PREVIEW
   =========================== */
.services-preview { background: var(--bg-alt); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.service-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.service-item:hover { border-color: var(--primary); }
.service-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.service-item h4 { margin-bottom: 8px; color: var(--text); }
.service-item p { font-size: 0.88rem; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: var(--bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--primary);
}
.testimonial p { font-style: italic; color: var(--text); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--text); }
.testimonial-author span { font-size: 0.82rem; color: var(--text-muted); }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: var(--primary);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 28px; }

/* ===========================
   FOOTER
   =========================== */
footer { background: #1a202c; color: #a0aec0; padding: 60px 24px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; }
footer h4 { color: #fff; margin-bottom: 16px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: #a0aec0; transition: color 0.2s; font-size: 0.92rem; }
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: 0.92rem; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid #2d3748; padding: 20px 0; text-align: center; font-size: 0.85rem; }

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ===========================
   SERVICES PAGE
   =========================== */
.services-list { display: grid; gap: 32px; }
.service-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.service-block-icon {
  font-size: 2.4rem;
  width: 64px; height: 64px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-block h3 { margin-bottom: 10px; color: var(--text); }
.service-block ul { margin-top: 10px; padding-left: 18px; list-style: disc; }
.service-block ul li { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 4px; }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { margin-bottom: 16px; }
.about-visual {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.about-visual .big-icon { font-size: 5rem; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.value-card .v-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h4 { margin-bottom: 8px; color: var(--text); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.team-card h4 { color: var(--text); margin-bottom: 4px; }
.team-card .role { color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 0.88rem; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info h3 { margin-bottom: 20px; }
.info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.info-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-item h4 { color: var(--text); margin-bottom: 4px; font-size: 0.95rem; }
.info-item p { font-size: 0.9rem; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.contact-form h3 { 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-weight: 600; font-size: 0.9rem; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(46,125,94,0.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 24px;
  text-align: center;
  margin-top: 48px;
}
.map-placeholder .map-icon { font-size: 3rem; margin-bottom: 12px; }
.map-placeholder p { font-size: 0.9rem; }

/* ===========================
   COMING SOON PAGE
   =========================== */
:root {
  --cs-bg: #fefefe;
  --cs-green: #3c4a20;
  --cs-gold: #b8923f;
}
body.coming-soon-page { background: var(--cs-bg); min-height: 100vh; display: flex; flex-direction: column; }
.coming-soon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
.coming-soon-inner { max-width: 560px; margin: 0 auto; }
.coming-soon-logo { max-width: 180px; width: 100%; margin: 0 auto 28px; }
.coming-soon-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--cs-gold);
  border-radius: 999px;
  color: var(--cs-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.coming-soon h1 { color: var(--cs-green); margin-bottom: 16px; }
.coming-soon p { color: var(--text-muted); font-size: 1.05rem; }
.coming-soon-footer { text-align: center; padding: 24px; color: var(--text-muted); font-size: 0.85rem; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hero { flex-direction: column; padding: 48px 24px; gap: 40px; }
  .hero-image { width: 100%; }
  .hero-card { flex-direction: row; justify-content: space-around; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
}
