/* ===== VARIABLES ===== */
:root {
  --green-primary: #3DB53D;
  --green-dark: #1A4D1A;
  --green-card: rgba(255, 255, 255, 0.07);
  --green-card-border: rgba(255, 255, 255, 0.15);
  --gold: #F5A623;
  --gold-dark: #d48f1a;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --bg-light: #F5F5F5;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: #e0e0dc;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
  --transition: 0.18s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Mobile: 48px / Desktop: 80px — set via media query */
.section { padding: 3rem 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
  transition: background var(--transition), border-color var(--transition);
}
.btn:active { transform: scale(0.98); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn-full { width: 100%; }

/* ===== SECTION HEADINGS ===== */
.services h2,
.how-it-works h2,
.service-area h2,
.contact h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.why-us h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--green-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo { height: 120px; width: auto; }

.nav-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.25;
  display: none;
}

.nav-links {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}
.nav-links > li > a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color var(--transition);
}
.nav-links > li > a:hover { color: var(--green-primary); }

.nav-cta-mobile { display: none; }

.nav-right {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-phone {
  color: var(--green-dark);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--green-primary); }

/* Hamburger */
.hamburger {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile phone bar */
.mobile-phone-bar {
  background: var(--green-dark);
  padding: 0.4rem 1.25rem;
  text-align: center;
}
.mobile-phone-bar a {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* Mobile dropdown */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.25rem 1.5rem 1.5rem;
  gap: 1.1rem;
  border-top: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  align-items: flex-start;
  z-index: 99;
}
.nav-links.open .nav-cta-mobile {
  display: block;
  padding-top: 0.25rem;
}

/* ===== HERO ===== */
.hero {
  background: var(--green-dark);
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.025) 40px,
      rgba(255, 255, 255, 0.025) 80px
    ),
    linear-gradient(160deg, #1e5c1e 0%, #0f2f0f 100%);
  padding: 4rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(61, 181, 61, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  letter-spacing: -0.4px;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 2.75rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  font-weight: 500;
}
.badge i { color: var(--green-primary); font-size: 1rem; }

/* ===== SERVICES ===== */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.service-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  transition:
    box-shadow var(--transition),
    border-color var(--transition),
    border-left-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border);
  border-left-color: var(--green-primary);
}

.service-card i {
  font-size: 1.75rem;
  color: var(--green-primary);
  margin-bottom: 0.7rem;
}
.service-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.service-card p {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.services-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.services-note a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.services-note a:hover { color: var(--green-primary); }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--bg-light); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
}

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem 1.75rem;
  text-align: center;
  max-width: 300px;
  width: 100%;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon {
  font-size: 2.1rem;
  color: var(--green-primary);
  margin: 0.25rem 0 0.75rem;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}
.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step p a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.step p a:hover { color: var(--green-primary); }

.step-divider {
  color: #ccc;
  font-size: 1.25rem;
  transform: rotate(90deg);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: var(--green-dark);
  background-image: linear-gradient(160deg, #1e5c1e 0%, #0f2f0f 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-card {
  background: var(--green-card);
  border: 1px solid var(--green-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.25);
}
.why-card i {
  font-size: 1.75rem;
  color: var(--green-primary);
  margin-bottom: 0.7rem;
}
.why-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.why-card p {
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ===== SERVICE AREA ===== */
.service-area { background: var(--bg-light); }

.area-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.9rem;
  margin-bottom: 2rem;
}
.area-list li {
  background: var(--white);
  color: var(--green-dark);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid var(--green-dark);
}

.area-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.area-note a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.area-note a:hover { color: var(--green-primary); }

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item > i {
  font-size: 1.05rem;
  color: var(--green-primary);
  margin-top: 0.2rem;
  width: 1.2rem;
  text-align: center;
  flex-shrink: 0;
}
.contact-item div { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-item strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}
.contact-phone {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  display: inline-block;
}
.contact-phone:hover { color: var(--gold-dark); }
.contact-item a:not(.contact-phone) {
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-item a:not(.contact-phone):hover { color: var(--green-primary); }
.contact-item span { font-size: 0.95rem; color: var(--text-dark); }

.contact-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1877F2;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity var(--transition);
}
.fb-link:hover { opacity: 0.75; }

/* Form */
.contact-form {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--border);
}

.form-group { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1.1rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
.req { color: #c0392b; margin-left: 1px; }
.optional { font-weight: 400; color: var(--text-muted); font-size: 0.8rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group 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='%235a5a5a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(61, 181, 61, 0.14);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* Form success */
.form-success {
  display: none;
  background: #edf7ed;
  border: 1.5px solid var(--green-primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.form-success.visible { display: flex; }
.form-success i { font-size: 2.75rem; color: var(--green-primary); }
.form-success p { font-size: 1.05rem; font-weight: 600; color: var(--green-dark); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-logo { height: 80px; width: auto; }
.footer-brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  width: 100%;
  text-align: center;
}
.footer-tagline { color: rgba(255, 255, 255, 0.62); font-size: 0.875rem; }
.footer-copy { color: rgba(255, 255, 255, 0.42); font-size: 0.78rem; }
.footer-sub { color: rgba(255, 255, 255, 0.32); font-size: 0.72rem; }

/* ===== BREAKPOINTS ===== */
@media (min-width: 560px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .section { padding: 5rem 0; }

  /* Nav */
  .nav-logo { height: 160px; }
  .nav-brand-name { display: block; }
  .nav-links { display: flex; }
  .nav-right { display: flex; }
  .hamburger { display: none; }
  .mobile-phone-bar { display: none; }

  /* Hero */
  .hero { padding: 5rem 1.25rem; }

  /* Steps */
  .steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
  .step { max-width: 270px; }
  .step-divider {
    transform: none;
    margin-top: 4.5rem;
    font-size: 1.4rem;
    flex-shrink: 0;
    padding: 0 0.5rem;
    color: #bbb;
  }

  /* Why 4-col */
  .why-grid { grid-template-columns: repeat(4, 1fr); }

  /* Contact */
  .contact-layout { flex-direction: row; align-items: flex-start; gap: 3rem; }
  .contact-info { flex: 0 0 300px; }
  .contact-form-wrap { flex: 1; }

  /* Footer */
  .footer-logo { height: 120px; }
  .footer-inner { align-items: flex-start; text-align: left; }
  .footer-brand { justify-content: flex-start; }
  .footer-links { justify-content: flex-start; }
  .footer-contact { justify-content: flex-start; }
  .footer-bottom { text-align: left; }
}

@media (min-width: 1024px) {
  .hero { padding: 6rem 1.25rem 5.5rem; }
  .step { max-width: 290px; }
  .steps { gap: 0.5rem; }
}
