:root {
  --green: #2db34a;
  --dark-green: #1a8a35;
  --black: #111111;
  --yellow: #f5d200;
  --white: #ffffff;
  --gray: #f4f4f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }

/* HEADER */
header {
  background: var(--black);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--green);
}
.logo-img { height: 44px; object-fit: contain;  }
nav { display: flex; gap: 28px; align-items: center; }
nav a { color: var(--white); text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: color .2s; }
nav a:hover { color: var(--green); }
.nav-cta { background: var(--green); color: var(--white) !important; padding: 10px 22px; border-radius: 6px; }
.nav-cta:hover { background: var(--dark-green) !important; }

/* HERO */
.hero {
  background: var(--black);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 68px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--yellow); font-style: italic; display: block; }
.hero-sub { font-family: 'Open Sans', sans-serif; font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 40px; max-width: 420px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--dark-green); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.35);
  cursor: pointer;
  transition: border-color .2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); }

/* HERO RIGHT */
.hero-right { position: relative; overflow: hidden; background: #0a0a0a; }
.hero-collage { position: absolute; inset: 0; }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.hero-right-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 0%, transparent 35%); z-index: 2; pointer-events: none; }

/* STATS BAR */
.stats-bar { background: var(--green); padding: 28px 60px; display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Montserrat', sans-serif; font-size: 38px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -1px; }
.stat-item .label { font-family: 'Open Sans', sans-serif; font-size: 11px; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-top: 6px; }

/* SECTION HELPERS */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

/* SERVICES */
.services { background: #f8f8f8; padding: 90px 60px; }
.services-header { max-width: 600px; margin-bottom: 50px; }
.services-header p { font-size: 16px; color: #666; line-height: 1.7; margin-top: 12px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 16px 48px rgba(0,0,0,.14); }
.service-card.featured { border: 3px solid var(--green); }
.service-card.featured .svc-body { background: var(--black); }
.service-card.featured .svc-title { color: var(--white); }
.service-card.featured .svc-desc { color: rgba(255,255,255,.65); }

.svc-img-wrap { width: 100%; height: 200px; overflow: hidden; position: relative; background: #222; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s; }
.service-card:hover .svc-img-wrap img { transform: scale(1.06); }

.svc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
}
.service-card.featured .svc-tag { background: var(--yellow); color: var(--black); }

.svc-body { padding: 24px 24px 28px; flex: 1; }
.svc-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--black);
  letter-spacing: -.3px;
}
.svc-desc { font-family: 'Open Sans', sans-serif; font-size: 13.5px; line-height: 1.65; color: #555; }

/* WHY */
.why { background: var(--black); color: var(--white); display: flex; gap: 80px; align-items: center; padding: 100px 60px; }
.why-left { flex: 1; }
.why-left .section-title { color: var(--white); }
.why-left .section-title span { color: var(--yellow); font-style: italic; }
.why-desc { font-family: 'Open Sans', sans-serif; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.8; margin-bottom: 36px; }
.why-right { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.why-item { background: rgba(255,255,255,.05); padding: 26px 30px; border-left: 4px solid var(--green); transition: background .2s; }
.why-item:hover { background: rgba(255,255,255,.09); }
.why-item h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 6px; letter-spacing: -.2px; }
.why-item p { font-family: 'Open Sans', sans-serif; font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* CTA STRIP */
.cta-strip { background: var(--yellow); padding: 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-strip h2 { font-family: 'Montserrat', sans-serif; font-size: 44px; font-weight: 900; line-height: 1.1; color: var(--black); letter-spacing: -1.5px; }
.cta-strip h2 span { color: var(--dark-green); font-style: italic; }
.cta-phone { display: flex; align-items: center; gap: 16px; }
.phone-icon-wrap { background: var(--black); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; color: #fff; }
.phone-label { font-family: 'Montserrat', sans-serif; font-size: 10px; color: rgba(0,0,0,.55); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.phone-num { font-family: 'Montserrat', sans-serif; font-size: 27px; font-weight: 900; color: var(--black); line-height: 1.2; letter-spacing: -1px; }

/* SCHEDULE */
.schedule { background: var(--gray); padding: 50px 60px; display: flex; gap: 60px; align-items: center; justify-content: center; flex-wrap: wrap; border-top: 4px solid var(--green); }
.schedule-block { text-align: center; }
.schedule-day { background: var(--green); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 20px; border-radius: 20px; display: inline-block; margin-bottom: 12px; }
.schedule-time { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; line-height: 1.3; color: var(--black); letter-spacing: -.5px; }
.schedule-div { width: 2px; height: 60px; background: #ccc; }
.schedule-location { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: -.3px; }

/* CONTACT */
.contact { background: var(--white); padding: 90px 60px; display: flex; gap: 80px; align-items: flex-start; }
.contact-left { flex: 1; }
.contact-right { flex: 1; }
.contact-left .section-title span { color: var(--green); font-style: italic; }
.contact-desc { font-family: 'Open Sans', sans-serif; color: #555; font-size: 15px; line-height: 1.7; margin-bottom: 40px; }
.info-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.info-icon { background: var(--green); color: var(--white); width: 44px; height: 44px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.info-text { font-size: 14px; }
a.info-text { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
a.info-text:hover strong { color: var(--green); }
.info-text strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; color: #333; transition: color 0.2s; }
.info-text span { font-family: 'Open Sans', sans-serif; color: #555; line-height: 1.6; font-size: 14px; }
.form-row { display: flex; gap: 16px; margin-bottom: 16px; }
.form-group { flex: 1; display: flex; flex-direction: column; }
.form-group label { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #777; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { border: 2px solid #e0e0e0; border-radius: 6px; padding: 13px 16px; font-family: 'Open Sans', sans-serif; font-size: 14px; background: #fafafa; outline: none; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; background: var(--green); color: var(--white); padding: 18px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; border: none; border-radius: 6px; cursor: pointer; margin-top: 8px; transition: background .2s, transform .15s; }
.btn-submit:hover { background: var(--dark-green); transform: translateY(-2px); }
.form-group input.is-invalid, .form-group select.is-invalid, .form-group textarea.is-invalid { border-color: #e53935; background: #fff5f5; }
.form-group input.is-valid, .form-group select.is-valid, .form-group textarea.is-valid { border-color: var(--green); }
.error-msg { color: #e53935; font-family: 'Open Sans', sans-serif; font-size: 11px; margin-top: 4px; min-height: 16px; display: block; }

/* FOOTER */
footer { background: var(--black); padding: 50px 60px 30px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 24px; }
.footer-tagline { font-family: 'Open Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,.45); max-width: 260px; line-height: 1.7; margin-top: 14px; }
.footer-col h5 { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--green); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-family: 'Open Sans', sans-serif; color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-family: 'Open Sans', sans-serif; font-size: 12px; color: rgba(255,255,255,.3); }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,.5); text-decoration: none; transition: all .2s; }
.social-link:hover { background: var(--green); border-color: var(--green); color: var(--white); }

/* WA FLOAT */
.wa-float { position: fixed; bottom: 28px; right: 28px; background: #25d366; width: 76px; height: 76px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 38px; color: var(--white); text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 999; transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }

/* =====================
   RESPONSIVE — TABLET (≤ 1024px)
   ===================== */
@media (max-width: 1024px) {
  /* Header */
  header { padding: 0 24px; }
  nav { gap: 18px; }

  /* Hero */
  .hero { grid-template-columns: 1fr 1.3fr; min-height: 70vh; }
  .hero-left { padding: 60px 36px; }
  .hero h1 { font-size: 52px; }

  /* Stats */
  .stats-bar { padding: 24px 36px; gap: 40px; }

  /* Services */
  .services { padding: 70px 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why */
  .why { padding: 80px 36px; gap: 50px; }

  /* CTA Strip */
  .cta-strip { padding: 50px 36px; }
  .cta-strip h2 { font-size: 36px; }

  /* Schedule */
  .schedule { padding: 40px 36px; gap: 40px; }

  /* Contact */
  .contact { padding: 70px 36px; gap: 50px; }

  /* Footer */
  footer { padding: 40px 36px 24px; }

  /* Section title */
  .section-title { font-size: 38px; }
}

/* HAMBURGER BUTTON (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
/* X state */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   RESPONSIVE — MOBILE (≤ 768px)
   ===================== */
@media (max-width: 768px) {
  /* Header */
  header { padding: 0 20px; height: 60px; }
  .logo-img { height: 34px; }
  .hamburger { display: flex; }

  /* Nav — hidden off-screen by default */
  nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--black);
    border-top: 3px solid var(--green);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    z-index: 99;
  }
  nav.nav-open {
    max-height: 400px;
    padding: 8px 0 16px;
  }
  nav a {
    font-size: 14px;
    padding: 14px 24px;
    letter-spacing: .5px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-cta {
    margin: 12px 24px 0;
    padding: 12px 24px;
    border-radius: 6px;
    text-align: center;
  }

  /* Hero — stack vertically */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 48px 24px 40px;
    order: 1;
  }
  .hero-right {
    order: 2;
    height: 260px;
  }
  .hero-right-overlay {
    background: linear-gradient(180deg, var(--black) 0%, transparent 40%);
  }
  .hero h1 { font-size: 42px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary { text-align: center; padding: 15px 24px; }

  /* Stats bar */
  .stats-bar { padding: 24px 20px; gap: 28px; }
  .stat-item .num { font-size: 30px; }

  /* Services */
  .services { padding: 56px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; letter-spacing: -1px; }

  /* Why */
  .why {
    flex-direction: column;
    padding: 60px 20px;
    gap: 36px;
  }
  .why-left, .why-right { width: 100%; }

  /* CTA Strip */
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 44px 20px;
    gap: 28px;
  }
  .cta-strip h2 { font-size: 30px; }
  .phone-num { font-size: 22px; }

  /* Schedule */
  .schedule { flex-direction: column; padding: 36px 20px; gap: 28px; text-align: center; }
  .schedule-div { width: 60px; height: 2px; }
  .schedule-time { font-size: 20px; }

  /* Contact */
  .contact {
    flex-direction: column;
    padding: 56px 20px;
    gap: 40px;
  }
  .contact-left, .contact-right { width: 100%; }
  .form-row { flex-direction: column; gap: 0; }

  /* Footer */
  footer { padding: 36px 20px 20px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* WA Float */
  .wa-float { width: 64px; height: 64px; font-size: 32px; bottom: 20px; right: 20px; }
}

/* =====================
   RESPONSIVE — SMALL MOBILE (≤ 420px)
   ===================== */
@media (max-width: 420px) {
  .hero h1 { font-size: 34px; }
  .cta-strip h2 { font-size: 26px; }
  .section-title { font-size: 28px; }
  .stats-bar { gap: 20px; }
  .stat-item .num { font-size: 26px; }
}
