@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #2d6a2d;
  --green-light: #3a8a3a;
  --green-dark:  #1a4a1a;
  --yellow:      #f5c518;
  --yellow-dark: #d4a800;
  --white:       #ffffff;
  --off-white:   #f7f7f3;
  --gray:        #6b6b6b;
  --light-gray:  #e8e8e2;
  --dark:        #1a1a1a;
  --border:      #e0e0d8;
  --max-w:       1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
section { padding: 72px 0; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--green-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 1px; color: var(--yellow);
  line-height: 1.1; white-space: nowrap;
}
.nav-logo span { display: block; color: rgba(255,255,255,0.75); font-size: 0.68rem; letter-spacing: 2.5px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-links a {
  color: rgba(255,255,255,0.82); font-size: 0.88rem; font-weight: 600;
  padding: 6px 14px; border-radius: 6px; transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links a.active { color: var(--yellow); background: transparent; }
.nav-cta {
  background: var(--yellow); color: var(--green-dark);
  font-weight: 700; font-size: 0.88rem; padding: 10px 20px;
  border-radius: 7px; white-space: nowrap; transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 60px 0 52px; color: var(--white); position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: var(--yellow); opacity: 0.06;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-label {
  display: inline-block; background: var(--yellow); color: var(--green-dark);
  font-weight: 700; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 13px; border-radius: 20px; margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.0; letter-spacing: 1px;
  margin-bottom: 14px;
}
.page-hero p { font-size: 1.05rem; opacity: 0.88; max-width: 560px; }

/* ── SECTION HEADINGS ── */
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green); margin-bottom: 8px;
}
h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.05;
  color: var(--dark); margin-bottom: 12px;
}
.section-sub { color: var(--gray); font-size: 0.97rem; max-width: 560px; margin-bottom: 40px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--yellow); color: var(--green-dark);
  font-weight: 700; font-size: 1rem; padding: 14px 28px; border-radius: 8px;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.1s;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn-green {
  display: inline-block; background: var(--green); color: var(--white);
  font-weight: 700; font-size: 1rem; padding: 14px 28px; border-radius: 8px;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.1s;
  font-family: 'DM Sans', sans-serif;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  font-weight: 600; font-size: 1rem; padding: 13px 26px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5); transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--white); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--yellow); padding: 14px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; overflow: hidden;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 700; color: var(--green-dark);
  padding: 4px 20px; border-right: 2px solid rgba(0,0,0,0.1);
}
.trust-item:last-child { border-right: none; }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: 12px; padding: 32px 28px;
  border: 2px solid var(--border); transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--green); box-shadow: 0 6px 28px rgba(45,106,45,0.1); }
.card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  color: var(--green-dark); margin-bottom: 10px; letter-spacing: 0.5px;
}
.card p { font-size: 0.92rem; color: var(--gray); line-height: 1.65; }

/* ── CHECK LIST ── */
.check-list { margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.check-list li {
  font-size: 0.9rem; display: flex; align-items: flex-start; gap: 9px;
}
.check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── DIVIDER ── */
.divider { height: 4px; background: linear-gradient(90deg, var(--green), var(--yellow), var(--green)); }

/* ── CTA STRIP ── */
.cta-strip { background: var(--green-dark); color: var(--white); padding: 64px 0; text-align: center; }
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p { opacity: 0.8; margin-bottom: 32px; font-size: 1rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: #111; color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { font-size: 1.5rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  color: var(--white); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.88rem; color: rgba(255,255,255,0.6);
  margin-bottom: 8px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); font-size: 1rem;
  transition: background 0.2s; margin-bottom: 0;
}
.footer-social a:hover { background: var(--green); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding: 24px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--yellow); }

/* ── FORM STYLES ── */
.form-wrap { background: var(--white); border-radius: 16px; padding: 48px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.form-grid { display: grid; gap: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; letter-spacing: 0.3px; }
label .req { color: var(--green); }
input, select, textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: 8px;
  font-size: 0.97rem; font-family: 'DM Sans', sans-serif;
  background: var(--off-white); color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,45,0.12); background: var(--white);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
textarea { resize: vertical; min-height: 110px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.pill-label { cursor: pointer; }
.pill-label input[type="checkbox"] { display: none; }
.pill {
  padding: 9px 18px; border-radius: 25px; border: 2px solid var(--border);
  font-size: 0.88rem; font-weight: 600; color: var(--gray);
  background: var(--off-white); transition: all 0.18s; user-select: none;
}
.pill-label input:checked + .pill { background: var(--green); border-color: var(--green); color: var(--white); }
.form-note { text-align: center; font-size: 0.82rem; color: var(--gray); margin-top: 10px; }
.form-note a { color: var(--green); font-weight: 600; }
.form-success { display: none; text-align: center; padding: 48px 20px; animation: fadeUp 0.4s ease; }
.form-success .success-icon { font-size: 4rem; margin-bottom: 20px; }
.form-success h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--green); margin-bottom: 12px; }
.form-success p { color: var(--gray); font-size: 1rem; }
.form-success a { color: var(--green); font-weight: 700; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ── FAQ ── */
.faq-item { border-bottom: 2px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; text-align: left; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--dark); transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-q .faq-icon { font-size: 1.3rem; color: var(--green); flex-shrink: 0; transition: transform 0.25s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  overflow: hidden; max-height: 0; transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 0.95rem; color: var(--gray); line-height: 1.75; padding: 0;
}
.faq-a.open { max-height: 400px; padding-bottom: 20px; }

/* ── STEPS ── */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: var(--white); border-radius: 12px; padding: 28px 24px;
  border: 2px solid var(--border); text-align: center; position: relative;
}
.step-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
  color: var(--yellow); line-height: 1; margin-bottom: 10px;
}
.step-card h3 { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.step-card p { font-size: 0.88rem; color: var(--gray); }

/* ── GRID UTILITIES ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── SERVICE AREA TAGS ── */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.area-tag {
  background: var(--white); border: 2px solid var(--border); border-radius: 22px;
  padding: 8px 18px; font-size: 0.88rem; font-weight: 600;
}

/* ── CONTACT INFO CARDS ── */
.contact-info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.ci-card {
  background: var(--white); border-radius: 12px; padding: 28px 24px;
  border: 2px solid var(--border); display: flex; align-items: flex-start; gap: 16px;
}
.ci-icon { font-size: 1.8rem; flex-shrink: 0; }
.ci-card h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; color: var(--dark); }
.ci-card p, .ci-card a { font-size: 0.88rem; color: var(--gray); display: block; }
.ci-card a:hover { color: var(--green); }

/* ── TWO COL LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col-img { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,0.12); }
.two-col-img img { width: 100%; height: 420px; object-fit: cover; }

/* ── LOGO IMAGE ── */
.nav-logo-img {
  display: flex; align-items: center; flex-shrink: 0;
}
.nav-logo-img img {
  height: 48px; width: auto;
  /* White background looks bad on dark nav — make it pop with a slight filter */
  filter: brightness(1.05) drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  border-radius: 6px;
}
.footer-logo-img { margin-bottom: 14px; }
.footer-logo-img img {
  height: 72px; width: auto;
  filter: brightness(1.05);
  border-radius: 8px;
}
@media (max-width: 768px) {
  .nav-logo-img img { height: 40px; }
}

/* ── HAMBURGER MENU ── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--green-dark); z-index: 199; flex-direction: column;
  padding: 32px 24px; gap: 8px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); font-size: 1.3rem; font-weight: 700;
  padding: 16px 20px; border-radius: 10px; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 12px;
  transition: background 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(255,255,255,0.1); color: var(--yellow); }
.mobile-menu .mobile-cta {
  background: var(--yellow); color: var(--green-dark); border-radius: 10px;
  margin-top: 16px; text-align: center; justify-content: center;
  border-bottom: none; font-size: 1.1rem;
}

/* ── FLOATING CALL BUTTON (mobile) ── */
.float-call {
  display: none; position: fixed; bottom: 20px; right: 20px; z-index: 300;
  background: var(--green); color: var(--white);
  width: 60px; height: 60px; border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-decoration: none; transition: transform 0.2s, background 0.2s;
  border: 3px solid var(--yellow);
}
.float-call:hover { transform: scale(1.08); background: var(--green-light); }

/* ════════════════════════════════════════
   MOBILE BREAKPOINTS
   ════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Layout */
  .container { padding: 0 18px; }
  section { padding: 48px 0; }

  /* Nav */
  .nav-inner { padding: 0 18px; height: 60px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .float-call { display: flex; }

  /* Typography */
  h2 { font-size: 2rem; }
  .section-sub { font-size: 0.92rem; margin-bottom: 24px; }

  /* Trust bar */
  .trust-bar {
    padding: 10px 18px; justify-content: flex-start;
    flex-wrap: nowrap; overflow-x: auto; gap: 0;
    scrollbar-width: none;
  }
  .trust-bar::-webkit-scrollbar { display: none; }
  .trust-item { font-size: 0.78rem; padding: 4px 14px; white-space: nowrap; }

  /* Page hero */
  .page-hero { padding: 40px 0 36px; }
  .page-hero h1 { font-size: 2.4rem; }
  .page-hero p { font-size: 0.95rem; }

  /* Grids → single column */
  .grid-2, .grid-3, .grid-4,
  .steps-row, .why-grid,
  .contact-info-cards,
  .two-col { grid-template-columns: 1fr; gap: 16px; }

  .two-col { gap: 24px; }
  .two-col-img img { height: 260px; }

  /* Services detail alternate layout fix */
  .service-detail { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .service-detail.reverse { direction: ltr; }
  .service-img, .service-detail .service-img { height: 220px !important; }
  .service-detail .service-img img { height: 220px !important; }

  /* Cards */
  .card { padding: 22px 18px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr; gap: 28px; padding: 0 18px;
  }
  .footer-bottom { padding: 20px 18px 0; flex-direction: column; text-align: center; }

  /* Form */
  .form-wrap { padding: 24px 18px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 14px; }

  /* CTA strip */
  .cta-strip { padding: 48px 0; }
  .cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .cta-btns a { width: 100%; max-width: 320px; text-align: center; }

  /* Steps */
  .step-card { padding: 20px 18px; }

  /* Area tags */
  .area-tag { padding: 7px 14px; font-size: 0.82rem; }
}

/* Tablet tweaks */
@media (min-width: 769px) and (max-width: 1024px) {
  .container { padding: 0 28px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .two-col { gap: 36px; }
}
