/* ============================
   ROOT + GLOBAL STYLES
============================ */
:root {
  --emerald:#046A38;
  --emerald-2:#024A28;
  --gold:#C8A951;
  --gold-2:#E5C96E;
  --charcoal:#1B1B1B;
  --ivory:#F9F9F6;
  --max-width:1150px;
  --ease:cubic-bezier(.2,.9,.3,1);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--ivory);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   NAVIGATION
============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(4,106,56,0.95), rgba(2,40,30,0.9));
  padding: 12px 0;
  box-shadow: 0 8px 28px rgba(2,10,6,0.18);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ivory); text-decoration: none;
}
.logo {
  width: 56px; height: 56px; border-radius: 10px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-2));
}
.brand-text {
  display: flex; flex-direction: column; color: var(--ivory);
}
.brand-text .tag { font-size: 12px; opacity: .95; }
.nav-links { display: flex; gap: 16px; align-items: center; }
.nav-links a {
  color: var(--ivory); text-decoration: none; padding: 8px 10px;
  border-radius: 8px; font-weight: 600;
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px; border-radius: 10px;
}
#nav-toggle {
  display: none; background: none; border: 0; color: var(--ivory);
}
.hamburger {
  display: block; width: 22px; height: 2px; background: var(--ivory); position: relative;
}
.hamburger:before, .hamburger:after {
  content:''; position:absolute; left:0; right:0; height:2px; background:var(--ivory);
}
.hamburger:before { top:-6px; }
.hamburger:after { bottom:-6px; }

/* ============================
   HERO SECTION (HYBRID UPGRADE)
============================ */
/* HERO */
/* HERO */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding-top: 86px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-2) 45%, #070707 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  gap: 40px;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  font-family: Poppins, Inter, sans-serif;
  color: var(--ivory);
  font-size: clamp(28px, 5vw, 48px);
  margin: 0 0 12px;
  line-height: 1.05;
}

.lead {
  color: rgba(249, 249, 246, 0.95);
  max-width: 60ch;
  margin-bottom: 24px;
}

/* CTA BUTTONS */
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

/* GOLD PRIMARY BUTTON */
.btn.primary {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  color: var(--charcoal);
  box-shadow: 0 10px 30px rgba(200, 169, 81, 0.15);
}
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(200, 169, 81, 0.25);
}

/* GHOST BUTTON */
.btn.ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

/* HERO IMAGE */
.hero-image {
  position: relative;
  flex-shrink: 0;
  width: 44%;
  max-width: 460px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s var(--ease);
}

.hero-image img:hover {
  transform: scale(1.04);
}

/* GOLD GLOW OVERLAY */
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(200, 169, 81, 0.25),
    rgba(0, 0, 0, 0) 70%
  );
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 1;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-image {
    width: 80%;
    max-width: 400px;
    margin-top: 20px;
  }

  .hero-glow {
    background: radial-gradient(
      circle at center,
      rgba(200, 169, 81, 0.3),
      rgba(0, 0, 0, 0) 70%
    );
  }
}


/* ============================
   SECTIONS
============================ */
.section { padding: 72px 0; }
.section.alt { background: linear-gradient(180deg,#fff,#fbfbfb); }
.section-head {
  text-align: center; margin-bottom: 36px; color: var(--charcoal);
}
.section-head h2 {
  font-family: Poppins, Inter, sans-serif;
  font-size: 28px; margin: 0 0 8px;
}

/* ============================
   LAYOUT GRIDS
============================ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card {
  background: linear-gradient(180deg,var(--ivory),#fff);
  padding: 22px; border-radius: 12px;
  box-shadow: 0 14px 40px rgba(3,30,20,0.06);
  transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-10px); }

/* ============================
   ABOUT
============================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 28px; align-items: center;
}
.about-stats {
  display: flex; gap: 12px; list-style: none; padding: 0; margin-top: 18px;
}
.about-stats li {
  background: linear-gradient(180deg,#DDEAD1,#fff);
  padding: 12px; border-radius: 10px;
  text-align: center; min-width: 120px;
}

/* ============================
   TESTIMONIALS
============================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testimonial {
  background: #fff; padding: 18px; border-radius: 12px;
  box-shadow: 0 6px 20px rgba(20,20,20,0.03);
}

/* ============================
   CONTACT
============================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start;
}
.contact-form {
  background: #fff; padding: 22px; border-radius: 12px;
  box-shadow: 0 12px 40px rgba(20,20,20,0.06);
}
.row { display: flex; flex-direction: column; margin-bottom: 12px; }
.row label { font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.row input, .row textarea {
  padding: 12px; border-radius: 10px;
  border: 1px solid #e6e6e6; background: #fbfbfb; font-size: 15px;
}
.form-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 8px;
}
.contact-side {
  background: linear-gradient(180deg,#fff,#fbfbfb);
  padding: 18px; border-radius: 12px;
  box-shadow: 0 6px 24px rgba(12,12,12,0.03);
}

/* ============================
   FLOATING CTA
============================ */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px;
  background: linear-gradient(135deg,var(--gold),var(--gold-2));
  color: var(--charcoal); font-weight: 800;
  border-radius: 999px; padding: 12px 18px; text-decoration: none;
  box-shadow: 0 6px 30px rgba(200,169,81,0.35); z-index: 9999;
}

/* ============================
   FOOTER
============================ */
.footer {
  padding: 28px 0;
  background: linear-gradient(90deg,var(--emerald-2),var(--charcoal));
  color: var(--ivory);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.footer-left p { margin: 0; font-size: 14px; color: rgba(249,249,246,0.9); }

/* ============================
   ANIMATIONS
============================ */
.fade-in-up {
  opacity: 0; transform: translateY(12px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

/* ============================
   RESPONSIVE
============================ */
@media (max-width:1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
}
@media (max-width:680px) {
  .nav-links { display: none; }
  #nav-toggle { display: block; }
  .hero-inner { flex-direction: column; text-align: center; padding: 60px 18px; }
  .hero-image { margin-top: 32px; }
  .services-grid, .testimonials-grid, .contact-grid { grid-template-columns: 1fr; }
  .brand-text .tag { display: none; }
  .logo { width: 46px; height: 46px; }
}
