/* ============================================================
   Green Haven — Main Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --blue:       #1B3F6E;
  --green:      #3A9E2F;
  --green-dark: #2d7d24;
  --navy:       #0D1F3C;
  --white:      #FFFFFF;
  --gray:       #F5F5F5;
  --text-dark:  #0D1F3C;
  --text-light: #FFFFFF;
  --text-muted: #6b7280;
  --border:     #e5e7eb;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.16);
  --radius:     10px;
  --transition: .3s ease;
  --max-w:      1200px;
  --font:       'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--blue); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { color: var(--text-muted); line-height: 1.7; }

/* ---------- Utility ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-title { margin-bottom: 14px; }
.section-sub   { max-width: 560px; margin: 0 auto 48px; text-align: center; }

.text-center { text-align: center; }

section { padding: 80px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58,158,47,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar__logo-text span:first-child {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue);
}
.navbar__logo-text span:last-child {
  font-size: .72rem;
  color: var(--green);
  letter-spacing: .04em;
  font-weight: 600;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width var(--transition);
}
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }
.navbar__links a.active { color: var(--green); }

.navbar__actions { display: flex; align-items: center; gap: 16px; }

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}
.navbar__phone svg { color: var(--green); }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 16px;
}
.navbar__mobile a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.navbar__mobile a.active { color: var(--green); }
.navbar__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(58,158,47,.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(27,63,110,.3) 0%, transparent 50%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58,158,47,.2);
  border: 1px solid rgba(58,158,47,.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 700;
  color: #7dd96d;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: block; }

.hero__content h1 { color: var(--white); margin-bottom: 16px; }
.hero__content h1 em { color: var(--green); font-style: normal; }
.hero__content p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 12px; max-width: 480px; }

.hero__location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin-bottom: 32px;
}
.hero__location svg { color: var(--green); }

.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card-stack {
  position: relative;
  width: 340px;
  height: 340px;
}

.hero__stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 4s ease-in-out infinite;
}
.hero__stat-card:nth-child(1) { top: 0; left: 0; animation-delay: 0s; }
.hero__stat-card:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1.5s; }
.hero__stat-card:nth-child(3) { bottom: 0; left: 20px; animation-delay: 3s; }

.hero__stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(58,158,47,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__stat-icon svg { color: var(--green); }

.hero__stat-info strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero__stat-info span { font-size: .8rem; color: var(--text-muted); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__stat-card:nth-child(2) {
  animation-name: float2;
}
@keyframes float2 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}

/* ============================================================
   ESTIMATE FORM
   ============================================================ */
.estimate {
  background: var(--gray);
  padding: 70px 0;
}

.estimate__box {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 48px;
  max-width: 820px;
  margin: 0 auto;
}

.estimate__header {
  text-align: center;
  margin-bottom: 36px;
}

.estimate__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,158,47,.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; }

.estimate__submit { text-align: center; margin-top: 8px; }
.estimate__submit .btn { padding: 15px 48px; font-size: 1rem; }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats {
  background: var(--blue);
  padding: 60px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stats__item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255,255,255,.15);
  position: relative;
}
.stats__item:last-child { border-right: none; }

.stats__number {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stats__number .suffix { color: var(--green); }

.stats__label {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: rgba(58,158,47,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--green);
}
.service-card__icon svg { color: var(--green); transition: var(--transition); }
.service-card:hover .service-card__icon svg { color: var(--white); }

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: .9rem; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-weight: 700;
  font-size: .88rem;
  margin-top: 16px;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 8px; }

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

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 48px;
}

.steps__grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-card__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--gray);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-card:hover .step-card__num {
  background: var(--green);
  transform: scale(1.1);
}

.step-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step-card p { font-size: .875rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--white); }

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-us__image-placeholder {
  height: 420px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.why-us__image-placeholder svg { color: rgba(255,255,255,.3); }
.why-us__image-placeholder span { color: rgba(255,255,255,.5); font-size: .9rem; }

.why-us__features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-item__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(58,158,47,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-item__icon svg { color: var(--green); }
.feature-item__content h4 { color: var(--navy); margin-bottom: 6px; font-size: 1.05rem; }
.feature-item__content p  { font-size: .9rem; }

/* ============================================================
   PROGRESS BARS
   ============================================================ */
.progress-section { background: var(--gray); }

.progress-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.progress-section__content h2 { margin-bottom: 16px; }
.progress-section__content p { margin-bottom: 0; }

.progress-bars { display: flex; flex-direction: column; gap: 24px; }

.progress-item { }
.progress-item__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.progress-item__label {
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
}
.progress-item__pct {
  font-weight: 700;
  font-size: .88rem;
  color: var(--green);
}
.progress-track {
  height: 10px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #6ac95c);
  border-radius: 10px;
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   TESTIMONIALS (services/about pages reuse)
   ============================================================ */
.testimonials { background: var(--blue); padding: 80px 0; }
.testimonials .section-label { color: rgba(255,255,255,.6); }
.testimonials .section-title { color: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-card__stars svg { color: #f59e0b; }

.testimonial-card__text {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 1.1rem;
}
.testimonial-card__info strong { display: block; color: var(--white); font-size: .95rem; }
.testimonial-card__info span  { color: rgba(255,255,255,.5); font-size: .82rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 32px; }
.cta-banner .btn-outline:hover { color: var(--green); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 70px 0 0;
  color: rgba(255,255,255,.7);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand {}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer__brand-logo img {
  height: 56px;
  width: auto;
  border-radius: 8px;
}
.footer__brand-logo-text span:first-child {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.footer__brand-logo-text span:last-child {
  font-size: .7rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: .04em;
}
.footer__brand p { font-size: .9rem; margin-bottom: 20px; line-height: 1.7; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  margin-bottom: 12px;
}
.footer__contact-item svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a:hover { color: var(--green); }

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--green);
}
.footer__col a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer__col a:hover { color: var(--green); padding-left: 4px; }

.footer__bottom {
  text-align: center;
  padding: 20px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(58,158,47,.15) 0%, transparent 60%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--green); }
.page-hero__breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   SERVICES PAGE DETAILS
   ============================================================ */
.service-detail {
  padding: 80px 0;
}
.service-detail:nth-child(even) { background: var(--gray); }

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail__grid.reverse { direction: rtl; }
.service-detail__grid.reverse > * { direction: ltr; }

.service-detail__image {
  border-radius: 20px;
  overflow: hidden;
}
.service-detail__image-placeholder {
  height: 360px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.service-detail__image-placeholder span { font-weight: 700; color: var(--white); font-size: 1.1rem; }

.service-detail__image-wrap {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-detail__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.service-detail__image-wrap:hover img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .service-detail__image-wrap {
    height: 220px;
  }
}

.service-detail__content .section-label { margin-bottom: 8px; }
.service-detail__content h2 { margin-bottom: 14px; }
.service-detail__content p  { margin-bottom: 20px; }

.service-detail__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-detail__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--text-dark);
}
.service-detail__list li svg { color: var(--green); flex-shrink: 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--white); }
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story__img-placeholder {
  height: 420px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-story__img-placeholder::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(58,158,47,.2);
}

.about-values { background: var(--gray); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card__icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(58,158,47,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.value-card__icon svg { color: var(--green); }
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: .88rem; }

.about-team { background: var(--white); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.team-card { text-align: center; }
.team-card__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  border: 4px solid var(--green);
}
.team-card h3 { margin-bottom: 4px; font-size: 1.1rem; }
.team-card span { color: var(--green); font-size: .88rem; font-weight: 600; }
.team-card p { font-size: .88rem; margin-top: 8px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact__info h2 { margin-bottom: 16px; }
.contact__info p  { margin-bottom: 32px; }

.contact__info-items { display: flex; flex-direction: column; gap: 20px; }
.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(58,158,47,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__info-icon svg { color: var(--green); }
.contact__info-item strong { display: block; color: var(--navy); font-size: .95rem; margin-bottom: 2px; }
.contact__info-item span { font-size: .9rem; color: var(--text-muted); }
.contact__info-item a { color: var(--text-muted); transition: color var(--transition); }
.contact__info-item a:hover { color: var(--green); }

.contact__form-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.contact__form-box h3 { margin-bottom: 28px; }
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.contact__form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity .6s ease;
}
.fade-in.visible { opacity: 1; }

.scale-in {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .5s ease, transform .5s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 120ms); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(58,158,47,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ============================================================
   SUCCESS MESSAGE
   ============================================================ */
.success-msg {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(58,158,47,.1);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 16px;
  font-size: .92rem;
}
.success-msg.show { display: flex; }
.success-msg svg { flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero__card-stack { width: 280px; height: 280px; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid::before { display: none; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .navbar__links,
  .navbar__actions .btn { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__phone { display: none; }

  .hero { padding: 70px 0 60px; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__content p { margin-left: auto; margin-right: auto; }
  .hero__location { justify-content: center; }
  .hero__btns { justify-content: center; }
  .hero__visual { display: none; }

  .estimate__box { padding: 32px 24px; }
  .estimate__form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stats__item:last-child { border-bottom: none; }

  .services__grid { grid-template-columns: 1fr; }

  .steps__grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .why-us__grid,
  .progress-section__inner,
  .about-story__grid,
  .service-detail__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }

  .service-detail__grid.reverse { direction: ltr; }

  .values__grid,
  .team__grid,
  .testimonials__grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }

  .contact__form .row { grid-template-columns: 1fr; }

  .contact__form-box { padding: 28px 20px; }

  .steps__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .hero__btns .btn { max-width: 280px; }
  .cta-banner .btn { max-width: 280px; }
}
