/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --green: #2E7D32;
  --green-light: #43A047;
  --green-dark: #1B5E20;
  --green-glow: rgba(46,125,50,0.25);
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --white: #FFFFFF;
  --off-white: #F8F9F5;
  --gray: #9CA3AF;
  --gray-light: #E5E7EB;
  --font-main: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius: 12px;
  --shadow: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-lg: 0 40px 100px rgba(0,0,0,0.25);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  background: transparent;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 52px; width: auto; -webkit-filter: invert(1) brightness(200%); filter: invert(1) brightness(200%); }
.nav-logo img.scrolled-logo { -webkit-filter: invert(1) brightness(200%); filter: invert(1) brightness(200%); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  color: var(--white); font-family: var(--font-main); font-weight: 500;
  font-size: 0.9rem; padding: 0.5rem 0.9rem; border-radius: 6px;
  letter-spacing: 0.02em; transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--green-light);
  transition: var(--transition);
}
.nav-links a:hover::after { left: 0.9rem; right: 0.9rem; }
.nav-links a:hover { color: var(--green-light); }
.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 0.65rem 1.4rem !important; border-radius: 8px !important;
  font-weight: 700 !important; font-size: 0.85rem !important;
  transition: var(--transition) !important; white-space: nowrap;
  box-shadow: 0 4px 15px var(--green-glow);
}
.nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); box-shadow: 0 6px 20px var(--green-glow) !important; }
.nav-cta::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
  opacity: 0.35;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.92) 45%, rgba(10,10,10,0.4) 100%);
}
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 4rem 80px 5rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(46,125,50,0.15); border: 1px solid rgba(46,125,50,0.4);
  color: #6FCF72; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: #6FCF72; display: inline-block; }
.hero-h1 {
  font-family: var(--font-main); font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900; color: var(--white); line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: normal; color: var(--green-light); }
.hero-sub {
  color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.7;
  max-width: 480px; margin-bottom: 2rem;
}
.hero-badges {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 0.5rem 0.9rem;
  color: var(--white); font-size: 0.8rem; font-weight: 600;
}
.badge svg { color: var(--green-light); }
.hero-phone-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-phone {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--white); font-family: var(--font-main); font-size: 1.6rem; font-weight: 800;
}
.hero-phone svg { color: var(--green-light); }
.hero-google {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 0.5rem 0.9rem;
}
.stars { color: #FDD835; font-size: 0.9rem; letter-spacing: 2px; }
.hero-google span { color: rgba(255,255,255,0.8); font-size: 0.8rem; }

/* Hero Right - Form */
.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 120px 4rem 80px 2rem;
}
.hero-form-wrap {
  width: 100%; max-width: 420px;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
  padding: 2.5rem; box-shadow: var(--shadow-lg);
}
.owner-teaser {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.owner-avatar {
  width: 64px; height: 64px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--green-light); flex-shrink: 0; background: #1a1a1a;
}
.owner-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.owner-info h4 { color: var(--white); font-family: var(--font-main); font-weight: 700; font-size: 0.95rem; }
.owner-info p { color: rgba(255,255,255,0.6); font-size: 0.78rem; margin-top: 0.2rem; }
.owner-info span { color: var(--green-light); font-size: 0.75rem; font-weight: 600; }
.form-title { color: var(--white); font-family: var(--font-main); font-size: 1.2rem; font-weight: 700; margin-bottom: 1.2rem; }
.form-group { margin-bottom: 0.9rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  color: var(--white); font-family: var(--font-body); font-size: 0.875rem;
  padding: 0.75rem 1rem; outline: none; transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group select option { background: #1a1a1a; color: var(--white); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-light); background: rgba(46,125,50,0.1);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-submit {
  width: 100%; background: var(--green); color: var(--white);
  border: none; border-radius: 8px; padding: 0.9rem;
  font-family: var(--font-main); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(46,125,50,0.4);
}
.btn-submit:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(46,125,50,0.5); }

/* ===== ACCREDITATIONS BANNER ===== */
#accreditations {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0; overflow: hidden;
}
.accred-track {
  display: flex; align-items: center; gap: 3rem;
  animation: scrollTrack 25s linear infinite;
  width: max-content;
}
.accred-track:hover { animation-play-state: paused; }
.accred-item {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.7); font-family: var(--font-main);
  font-size: 0.85rem; font-weight: 600; white-space: nowrap;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.accred-item .acc-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(46,125,50,0.2); border: 1px solid rgba(46,125,50,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light); font-size: 1rem;
}
.accred-divider { color: rgba(46,125,50,0.5); font-size: 1.5rem; }
@keyframes scrollTrack { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== REVIEWS ===== */
#reviews { padding: 100px 2rem; background: var(--off-white); }
.section-eyebrow {
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-eyebrow span {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green);
}
.section-eyebrow::before,
.section-eyebrow::after { content: ''; flex: 0 0 40px; height: 1px; background: var(--green); opacity: 0.4; }
.section-title {
  font-family: var(--font-main); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--dark); text-align: center;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section-sub { text-align: center; color: var(--gray); font-size: 1.05rem; max-width: 520px; margin: 0 auto 3.5rem; line-height: 1.6; }
.reviews-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-light); position: relative; overflow: hidden;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.review-card::before {
  content: '\201C'; position: absolute; top: -10px; right: 20px;
  font-size: 8rem; color: var(--gray-light); font-family: Georgia, serif;
  line-height: 1; pointer-events: none;
}
.review-stars { color: #FDD835; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { color: #374151; font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-main); font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: 0.9rem; color: var(--dark); font-weight: 700; }
.review-author-info span { font-size: 0.78rem; color: var(--gray); }
.reviews-google-badge {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-top: 3rem;
}
.reviews-google-badge .g-logo {
  width: 32px; height: 32px; background: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); font-weight: 900; font-size: 1rem;
  color: #4285F4;
}
.reviews-google-badge p { color: var(--gray); font-size: 0.9rem; }
.reviews-google-badge strong { color: var(--dark); }

/* ===== ABOUT US ===== */
#about { padding: 100px 2rem; background: var(--dark); position: relative; overflow: hidden; }
#about::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,50,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-images { position: relative; height: 560px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 75%; height: 400px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: 0; right: 0; width: 60%; height: 280px;
  border-radius: 16px; overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-float {
  position: absolute; bottom: 120px; left: -20px; z-index: 2;
  background: var(--green); color: var(--white);
  border-radius: 12px; padding: 1rem 1.4rem;
  box-shadow: 0 10px 30px rgba(46,125,50,0.4);
}
.about-stat-float .num { font-family: var(--font-main); font-size: 2rem; font-weight: 900; line-height: 1; }
.about-stat-float .lbl { font-size: 0.75rem; opacity: 0.85; margin-top: 0.2rem; }
.about-content .section-eyebrow { justify-content: flex-start; }
.about-content .section-eyebrow::before { display: none; }
.about-content .section-title { text-align: left; color: var(--white); }
.about-content p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.about-owner-quote {
  border-left: 3px solid var(--green-light); padding-left: 1.25rem; margin: 1.5rem 0;
}
.about-owner-quote p { color: rgba(255,255,255,0.75); font-style: italic; font-size: 0.95rem; }
.about-owner-quote cite { color: var(--green-light); font-size: 0.85rem; font-weight: 700; font-style: normal; }
.about-stats-row { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.about-stat { text-align: left; }
.about-stat .num { font-family: var(--font-main); font-size: 2.5rem; font-weight: 900; color: var(--green-light); line-height: 1; }
.about-stat .lbl { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 0.25rem; }
.about-langs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.lang-badge {
  background: rgba(46,125,50,0.15); border: 1px solid rgba(46,125,50,0.3);
  color: var(--green-light); font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.75rem; border-radius: 100px; letter-spacing: 0.05em;
}

/* ===== SERVICES ===== */
#services { padding: 100px 2rem; background: var(--off-white); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--gray-light);
  transition: var(--transition); position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  opacity: 0; transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(46,125,50,0.25); border-color: transparent; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.5rem; transition: var(--transition);
}
.service-card:hover .service-icon { background: rgba(255,255,255,0.2); }
.service-card h3 { font-family: var(--font-main); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; transition: var(--transition); }
.service-card:hover h3 { color: var(--white); }
.service-card p { color: var(--gray); font-size: 0.875rem; line-height: 1.65; transition: var(--transition); }
.service-card:hover p { color: rgba(255,255,255,0.8); }

/* ===== GALLERY ===== */
#gallery { padding: 100px 2rem; background: var(--dark); }
.gallery-inner { max-width: 1300px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 3.5rem;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--dark2);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-family: var(--font-main); font-size: 0.9rem; font-weight: 600; }
.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* ===== WHY CHOOSE US ===== */
#why { padding: 100px 2rem; background: var(--white); }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.why-left .section-eyebrow { justify-content: flex-start; }
.why-left .section-eyebrow::before { display: none; }
.why-left .section-title { text-align: left; }
.why-left p { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.why-features { display: grid; gap: 1.25rem; }
.why-feature {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--gray-light); transition: var(--transition);
}
.why-feature:hover { border-color: var(--green); box-shadow: 0 4px 20px rgba(46,125,50,0.1); transform: translateX(4px); }
.why-feature-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--white);
}
.why-feature h4 { font-family: var(--font-main); font-weight: 700; color: var(--dark); margin-bottom: 0.35rem; }
.why-feature p { color: var(--gray); font-size: 0.875rem; line-height: 1.6; }
.why-right { display: flex; flex-direction: column; gap: 1rem; }
.why-stat-card {
  background: var(--dark); border-radius: 16px; padding: 2rem;
  position: relative; overflow: hidden;
}
.why-stat-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,50,0.2) 0%, transparent 70%);
}
.why-stat-card .big-num {
  font-family: var(--font-main); font-size: 4rem; font-weight: 900;
  color: var(--green-light); line-height: 1;
}
.why-stat-card p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 0.5rem; }
.why-stat-card.accent { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.why-stat-card.accent .big-num { color: var(--white); }
.why-stat-card.accent p { color: rgba(255,255,255,0.8); }
.why-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== PROCESS ===== */
#process { padding: 100px 2rem; background: var(--dark); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 4rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 38px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: linear-gradient(90deg, var(--green), var(--green-light));
  z-index: 0;
}
.process-step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.step-num {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--dark2); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-family: var(--font-main);
  font-size: 1.6rem; font-weight: 900; color: var(--green-light);
  transition: var(--transition);
}
.process-step:hover .step-num { background: var(--green); color: var(--white); transform: scale(1.1); }
.process-step h3 { font-family: var(--font-main); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.process-step p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }

/* ===== FAQ ===== */
#faq { padding: 100px 2rem; background: var(--off-white); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-light); overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--green); box-shadow: 0 4px 20px rgba(46,125,50,0.1); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; cursor: pointer; gap: 1rem;
}
.faq-q h4 { font-family: var(--font-main); font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--gray-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gray); transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ===== CONTACT ===== */
#contact { padding: 100px 2rem; background: var(--dark); }
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info .section-eyebrow { justify-content: flex-start; }
.contact-info .section-eyebrow::before { display: none; }
.contact-info .section-title { text-align: left; color: var(--white); }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.c-detail {
  display: flex; gap: 1rem; align-items: flex-start;
}
.c-detail-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(46,125,50,0.15); border: 1px solid rgba(46,125,50,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light); font-size: 1rem;
}
.c-detail-text strong { display: block; color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 0.2rem; }
.c-detail-text span, .c-detail-text a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.c-detail-text a:hover { color: var(--green-light); }
.contact-form-wrap {
  background: var(--dark2); border-radius: 20px; padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.contact-form-wrap h3 { font-family: var(--font-main); color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form-wrap .form-group label { display: block; color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 600; margin-bottom: 0.4rem; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-form-wrap .form-group input,
.contact-form-wrap .form-group select,
.contact-form-wrap .form-group textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
}
.contact-form-wrap .btn-submit { margin-top: 0.5rem; }

/* ===== REFERRAL ===== */
#referral { padding: 80px 2rem; background: #0A0A0A; position: relative; overflow: hidden; }
.referral-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.referral-text h2 { font-family: var(--font-main); color: var(--white); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900; margin-bottom: 1rem; line-height: 1.1; }
.referral-text p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.referral-cards { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.ref-card {
  background: rgba(46,125,50,0.15); border: 2px dashed rgba(46,125,50,0.5); border-radius: 16px;
  padding: 1.5rem 2rem; min-width: 160px;
}
.ref-card .amount { font-family: var(--font-main); font-size: 2.2rem; font-weight: 900; color: var(--green-light); }
.ref-card .for { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 0.2rem; }
.ref-steps { display: flex; flex-direction: column; gap: 0.75rem; }
.ref-step {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
}
.ref-step-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-weight: 800; color: var(--white); font-size: 0.85rem;
}
.referral-image { border-radius: 16px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.referral-image img { width: 100%; display: block; }

/* ===== AREAS ===== */
#areas { padding: 100px 2rem; background: var(--white); }
.areas-inner { max-width: 1100px; margin: 0 auto; }
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; margin-top: 3.5rem; }
.area-chip {
  background: var(--off-white); border: 1px solid var(--gray-light);
  border-radius: 8px; padding: 0.65rem 1rem; text-align: center;
  font-size: 0.85rem; font-weight: 600; color: var(--dark);
  transition: var(--transition);
}
.area-chip:hover { background: var(--green); color: var(--white); border-color: var(--green); transform: translateY(-2px); }
.area-chip.featured { background: var(--green); color: var(--white); border-color: var(--green); font-weight: 700; }

/* ===== FOOTER ===== */
#footer { background: var(--black); padding: 60px 2rem 30px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 48px; -webkit-filter: invert(1) brightness(200%); filter: invert(1) brightness(200%); margin-bottom: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.7; }
.footer-col h5 { font-family: var(--font-main); color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom a { color: var(--green-light); text-decoration: underline; }
.footer-lic { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* ===== FLOATING PHONE ===== */
.floating-phone {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  background: var(--green); color: var(--white);
  border-radius: 100px; padding: 0.85rem 1.5rem;
  font-family: var(--font-main); font-size: 0.95rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 8px 30px rgba(46,125,50,0.5);
  transition: var(--transition);
  animation: pulse 3s ease-in-out infinite;
}
.floating-phone:hover { background: var(--green-light); transform: scale(1.05); }
@keyframes pulse { 0%,100% { box-shadow: 0 8px 30px rgba(46,125,50,0.5); } 50% { box-shadow: 0 8px 40px rgba(46,125,50,0.8), 0 0 0 8px rgba(46,125,50,0.1); } }

/* ===== SCROLL ANIMATE ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* Active nav link */
.nav-links a.active-nav { color: var(--green-light); }
.nav-links a.active-nav::after { left: 0.9rem; right: 0.9rem; }

/* ===== UTILITY BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-family: var(--font-main); font-weight: 700; font-size: 0.95rem;
  transition: var(--transition); box-shadow: 0 4px 15px var(--green-glow);
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(46,125,50,0.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.3); padding: 0.85rem 2rem; border-radius: 8px;
  font-family: var(--font-main); font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--green-light); color: var(--green-light); }

/* Dark section eyebrow */
.dark-section .section-eyebrow span { color: var(--green-light); }
.dark-section .section-eyebrow::before,
.dark-section .section-eyebrow::after { background: var(--green-light); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-sub { color: rgba(255,255,255,0.5); }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 80px; left: 0; right: 0;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
    flex-direction: column; gap: 0; padding: 1rem;
    transform: translateY(-110%); transition: transform 0.35s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); pointer-events: all; }
  .nav-links a { padding: 0.85rem 1rem; border-radius: 8px; width: 100%; font-size: 1rem; }
  .nav-cta { margin-top: 0.5rem; text-align: center; background: var(--green) !important; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 1.5rem 40px; }
  .hero-right { justify-content: center; padding: 0 1.5rem 60px; }
  .hero-form-wrap { max-width: 100%; }
  .about-grid, .why-layout, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images { height: 300px; }
  .about-img-secondary { display: none; }
  .referral-inner { grid-template-columns: 1fr; gap: 2rem; }
  .referral-image { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.2rem; }
  .hero-badges { gap: 0.5rem; }
  .referral-cards { flex-direction: column; align-items: center; }
  .about-images { height: 250px; }
  .why-grid-2 { grid-template-columns: 1fr 1fr; }
  .floating-phone span { display: none; }
  .floating-phone { padding: 1rem; border-radius: 50%; }
}
