/* ===== SPLASH SCREEN ===== */
#splash-screen {
  position: fixed;
  inset: 0;
  background: #1a2e1a;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#splash-screen.splash-hide {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: splashPop 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.splash-inner img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(100,200,100,0.6));
}

.splash-inner p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  opacity: 0;
  animation: splashText 0.6s ease 0.5s forwards;
}

@keyframes splashPop {
  0%   { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}

@keyframes splashText {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.7;
  background: #fff;
}

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

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  animation: glowPulse 2s ease-in-out infinite;
}
.btn-primary:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 0 20px rgba(46,125,50,0.9), 0 0 40px rgba(46,125,50,0.6);
}

@keyframes glowPulse {
  0%   { box-shadow: 0 0 6px rgba(46,125,50,0.4), 0 0 12px rgba(46,125,50,0.2); }
  50%  { box-shadow: 0 0 18px rgba(46,125,50,0.9), 0 0 35px rgba(46,125,50,0.5), 0 0 50px rgba(100,200,100,0.3); }
  100% { box-shadow: 0 0 6px rgba(46,125,50,0.4), 0 0 12px rgba(46,125,50,0.2); }
}
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #2e7d32;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  border: 2px solid #2e7d32;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-secondary:hover { background: #2e7d32; color: #fff; }

.btn-call {
  display: inline-block;
  background: #ff6f00;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: background 0.3s;
}
.btn-call:hover { background: #e65100; }

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: #2e7d32;
  border-radius: 2px;
  margin-bottom: 50px;
}
.section-divider.center { margin: 0 auto 50px; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

#header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-logo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px 10px;
  border-bottom: 2px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, #0b1f0b 0%, #1a3d1a 25%, #2d6b30 55%, #1a3d1a 80%, #0b1f0b 100%);
  position: relative;
  overflow: hidden;
}

.header-logo-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(120,200,90,0.14) 0%, transparent 68%);
  pointer-events: none;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.logo-img:hover,
.logo-img:active { transform: scale(1.18); }

/* ===== HEADER ACTION BUTTONS (injected by splash.js) ===== */
.header-call-btn,
.header-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-call-btn {
  background: #ff6f00;
  color: #fff;
  transition: background 0.25s, transform 0.15s;
}
.header-call-btn:hover { background: #e65100; transform: translateY(-1px); }

/* Free Quote — pulsing glow to make it stand out */
@keyframes quotePulse {
  0%   { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.75); }
  60%  { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.header-quote-btn {
  background: #43a047;
  color: #fff;
  animation: quotePulse 2s ease-out infinite;
  transition: background 0.25s, transform 0.15s;
}
.header-quote-btn:hover {
  background: #2e7d32;
  transform: translateY(-1px);
  animation: none;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.4);
}

/* Hide old nav-cta since buttons are now in logo bar */
.nav-cta { display: none !important; }

/* Small phones: slightly tighter padding but text always visible */
@media (max-width: 480px) {
  .header-call-btn,
  .header-quote-btn { padding: 9px 12px; font-size: 12px; gap: 5px; }
}

/* ===== FREE QUOTE POPUP MODAL ===== */
.quote-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.quote-modal.active { display: flex; }

.quote-modal-inner {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px 36px;
  max-width: 500px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.quote-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  font-size: 30px; line-height: 1;
  color: #888; cursor: pointer;
}
.quote-modal-close:hover { color: #111; }

.quote-modal-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem; font-weight: 800;
  color: #1a1a1a; margin: 0 0 8px;
}

.quote-modal-inner > p {
  color: #666; font-size: 0.88rem;
  margin-bottom: 24px; line-height: 1.6;
}

.quote-modal-form {
  display: flex; flex-direction: column; gap: 13px;
}

.quote-modal-form input,
.quote-modal-form select,
.quote-modal-form textarea {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid #ddd; border-radius: 8px;
  font-size: 14px; font-family: 'Open Sans', sans-serif;
  box-sizing: border-box; outline: none;
  transition: border-color 0.2s;
}
.quote-modal-form input:focus,
.quote-modal-form select:focus,
.quote-modal-form textarea:focus { border-color: #2e7d32; }

.quote-modal-form textarea { resize: vertical; min-height: 90px; }

.quote-modal-success {
  text-align: center; color: #2e7d32;
  font-weight: 700; font-size: 1.1rem;
  padding: 40px 0; margin: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 52px;
  position: relative;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  margin-bottom: 14px;
  object-fit: contain;
}

nav { display: none; }

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links > li > a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a:hover { color: #2e7d32; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-radius: 6px;
  min-width: 240px;
  padding: 8px 0;
  z-index: 999;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #444;
  font-family: 'Open Sans', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu li a:hover { background: #f1f8e9; color: #2e7d32; }

/* Nav CTA (Call/Text button) */
.nav-cta { flex-shrink: 0; }

/* Hamburger — always visible on all screen sizes */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  flex-shrink: 0;
  z-index: 100000;
  position: relative;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.32s ease, opacity 0.2s ease, background 0.35s ease;
  transform-origin: center;
}
#header.scrolled .hamburger span { background: #333; }
.hamburger.open span { background: #1a1a1a; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== FULL-SCREEN NAV ===== */
@keyframes navFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99998;
  overflow-y: auto;
  animation: navFadeIn 0.25s ease;
}

/* ── Vertical links list ── */
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 64px 0 0;
  flex-shrink: 0;
}
.nav-links > li > a {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 28px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, background 0.2s;
  width: 100%;
}
.nav-links > li > a:hover,
.nav-links > li > a:active { color: #2e7d32; background: #f8fdf8; }
.nav-links > li > a i { font-size: 11px; transition: transform 0.25s; }
.nav-links > li.dropdown.open > a i { transform: rotate(180deg); }

/* Dropdown sub-links — expand inline directly below parent */
.dropdown-menu {
  position: static;
  display: none;
  background: #f8fdf8;
  padding: 4px 0;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: none;
  min-width: 0;
}
.dropdown.open .dropdown-menu { display: block; }

/* ── Services fusion photos ── */
.svc-fusion {
  position: relative;
  height: 160px;
  overflow: hidden;
  display: block;
  animation: svcFusionIn 0.45s ease;
}
@keyframes svcFusionIn {
  from { opacity: 0; transform: scaleY(0.85); }
  to   { opacity: 1; transform: scaleY(1); }
}
.svc-fusion img {
  position: absolute;
  top: 0;
  width: 65%;
  height: 100%;
  object-fit: cover;
}
.svc-fusion img:first-child {
  left: 0;
  -webkit-mask-image: linear-gradient(to right, black 45%, transparent 100%);
  mask-image: linear-gradient(to right, black 45%, transparent 100%);
}
.svc-fusion img:last-child {
  right: 0;
  -webkit-mask-image: linear-gradient(to left, black 45%, transparent 100%);
  mask-image: linear-gradient(to left, black 45%, transparent 100%);
}
.dropdown-menu li a {
  padding: 12px 28px 12px 44px;
  font-size: 14px;
  color: #555;
  display: block;
  border-bottom: none;
  transition: color 0.2s;
  white-space: normal;
}
.dropdown-menu li a:hover,
.dropdown-menu li a:active { color: #2e7d32; }

/* ── Our Best Work scrolling section ── */
.nav-work-section {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 0 20px;
  gap: 10px;
  flex-shrink: 0;
}
.nav-work-title {
  text-align: center;
  color: #aaa;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.nav-work-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
@keyframes navWorkLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes navWorkRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.nav-work-track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: navWorkLeft 22s linear infinite;
  will-change: transform;
}
.nav-work-track.rev {
  animation-name: navWorkRight;
  animation-duration: 28s;
}
.nav-work-photo {
  width: 180px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* Overlay behind open nav panel — must be below header (z-index:1000) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
  cursor: pointer;
}
.nav-overlay.active { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('PHOTOS/d883ab61-023a-4b9b-a06b-91dbd0251b01.webp') center/cover no-repeat;
  text-align: center;
  padding-top: 160px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 10, 0.60);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: #fff;
}

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

.about-image img {
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.about-text p {
  margin-bottom: 18px;
  color: #555;
  font-size: 16px;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: #f8fdf8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
  cursor: pointer;
}

.service-card a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover img { transform: scale(1.08); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: background 0.3s;
}

.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(30,80,30,0.90) 0%, rgba(0,0,0,0.50) 60%, rgba(0,0,0,0.10) 100%);
}

.service-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.service-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.service-card:hover .service-overlay p {
  max-height: 80px;
  opacity: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #2e7d32;
  padding: 8px 16px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: fit-content;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

/* ===== GALLERY — MARQUEE ===== */
.gallery {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.gallery .section-title { text-align: center; }
.gallery .section-divider.center { margin: 0 auto 40px; }

.marquee-wrap {
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}

/* Fade edges */
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.marquee-left  { animation: scrollLeft 35s linear infinite; }
.marquee-right { animation: scrollRight 35s linear infinite; }
.marquee-slow  { animation: scrollLeft 50s linear infinite; }

.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.marquee-item:hover img { transform: scale(1.08); }

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ===== REVIEWS MARQUEE ===== */
.reviews {
  padding: 100px 0 80px;
  background: #f8fdf8;
  overflow: hidden;
}

@keyframes reviewScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-marquee-wrap {
  overflow: hidden;
  padding: 16px 0 8px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.review-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewScroll 40s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.review-marquee-wrap:hover .review-marquee-track {
  animation-play-state: paused;
}

.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
  width: 340px;
  flex-shrink: 0;
}

.stars { color: #f9a825; font-size: 18px; margin-bottom: 14px; }

.review-card p {
  font-size: 14px;
  color: #555;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { font-size: 38px; color: #bdbdbd; }
.reviewer strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 14px; color: #1a1a1a; }
.reviewer span { font-size: 12px; color: #888; }

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: #fff;
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid #e8f5e9;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.3s;
}
.faq-question:hover { background: #f1f8e9; }
.faq-question i { color: #2e7d32; transition: transform 0.3s; flex-shrink: 0; }

.faq-item.active .faq-question { background: #f1f8e9; color: #2e7d32; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}
.faq-answer p { color: #555; font-size: 15px; line-height: 1.8; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: #f8fdf8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-group { margin-bottom: 18px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #333;
  background: #fff;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #2e7d32; }

.form-group textarea { resize: vertical; }

.contact-info { padding-top: 10px; }

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}
.info-block i {
  font-size: 22px;
  color: #2e7d32;
  margin-top: 2px;
  flex-shrink: 0;
}
.info-block strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.info-block span,
.info-block a {
  display: block;
  font-size: 14px;
  color: #555;
}
.info-block a:hover { color: #2e7d32; }

/* ===== READY TO GET STARTED CTA ===== */
.cta-banner {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  background: url('PHOTOS/b46b7335-b8f9-4cca-814f-d0402a6d99df.webp') center/cover no-repeat;
}
.cta-banner-overlay { position: absolute; inset: 0; background: rgba(0,30,10,0.68); }
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner-content p { font-size: 18px; color: rgba(255,255,255,0.88); margin-bottom: 32px; }

/* ===== FOOTER ===== */
.footer {
  background: #1a2e1a;
  color: #ccc;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2e7d32;
  color: #fff;
  font-size: 16px;
  transition: background 0.3s, transform 0.2s;
}
.social-icon:hover { background: #388e3c; transform: scale(1.1); }

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links ul li,
.footer-services ul li { margin-bottom: 10px; }

.footer-links ul li a,
.footer-services ul li a {
  font-size: 14px;
  color: #aaa;
  transition: color 0.3s;
}
.footer-links ul li a:hover,
.footer-services ul li a:hover { color: #81c784; }

.footer-contact p {
  font-size: 14px;
  color: #aaa;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact p i { color: #2e7d32; margin-top: 3px; flex-shrink: 0; }
.footer-contact .btn-primary { margin-top: 14px; font-size: 14px; padding: 12px 24px; }

.footer-bottom {
  border-top: 1px solid #2d4a2d;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: #777; }
.footer-credit { margin-top: 6px; font-size: 12px; color: #555; letter-spacing: 0.5px; }
.footer-credit strong { color: #a5d6a7; letter-spacing: 1.5px; font-family: 'Montserrat', sans-serif; }



/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 300px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 28px; }
  .nav-cta { display: none; }
  .section-title { font-size: 22px; }
  .review-card { width: 260px; }
  .review-marquee-track { gap: 12px; }
  .dropdown-menu { min-width: 0; width: calc(100vw - 40px); }
}

/* ===== HERO SPLIT ===== */
.hero-split {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-split-panel {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: clip-path 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.hero-split-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  transition: background 0.4s ease;
}

.hero-split-indoor {
  background-image: url('PHOTOS/77261ed6-e8c5-4a6a-9ebb-c19177d411d1.webp');
  clip-path: polygon(0 0, 57% 0, 43% 100%, 0 100%);
}

.hero-split-indoor::after {
  background: rgba(15, 50, 15, 0.52);
}

.hero-split-outdoor {
  background-image: url('PHOTOS/0c2ee8bb-f1a9-42b6-8740-f7ec22757643.webp');
  clip-path: polygon(57% 0, 100% 0, 100% 100%, 43% 100%);
}

.hero-split-outdoor::after {
  background: rgba(10, 30, 70, 0.52);
}

/* When indoor is hovered — indoor expands, outdoor contracts */
.hero-split:has(.hero-split-indoor:hover) .hero-split-indoor {
  clip-path: polygon(0 0, 67% 0, 53% 100%, 0 100%);
}
.hero-split:has(.hero-split-indoor:hover) .hero-split-outdoor {
  clip-path: polygon(67% 0, 100% 0, 100% 100%, 53% 100%);
}
.hero-split:has(.hero-split-indoor:hover) .hero-split-indoor::after {
  background: rgba(15, 50, 15, 0.3);
}

/* When outdoor is hovered — outdoor expands, indoor contracts */
.hero-split:has(.hero-split-outdoor:hover) .hero-split-outdoor {
  clip-path: polygon(47% 0, 100% 0, 100% 100%, 33% 100%);
}
.hero-split:has(.hero-split-outdoor:hover) .hero-split-indoor {
  clip-path: polygon(0 0, 47% 0, 33% 100%, 0 100%);
}
.hero-split:has(.hero-split-outdoor:hover) .hero-split-outdoor::after {
  background: rgba(10, 30, 70, 0.3);
}

.hero-split-label {
  position: absolute;
  z-index: 6;
  color: #fff;
  text-align: center;
  pointer-events: none;
  width: 28%;
  top: 50%;
  transform: translateY(-50%);
}

.hero-split-label-indoor { left: 5%; }
.hero-split-label-outdoor { right: 5%; }

.hero-split-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.hero-split-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 10px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  line-height: 1.25;
}

.hero-split-content p {
  font-size: 0.9rem;
  opacity: 0.88;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* Center brand card */
.hero-split-brand {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 28px 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 360px;
  pointer-events: none;
}

.hero-split-brand h1 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.hero-split-brand > p {
  font-size: 0.82rem;
  opacity: 0.8;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}

.hero-split-tagline {
  font-size: 0.78rem;
  opacity: 0.75;
  margin: 0 0 18px;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.hero-split-cta {
  pointer-events: all;
  display: inline-block;
}

/* Mobile: left/right becomes top/bottom */
@media (max-width: 640px) {
  .hero-split-indoor {
    clip-path: polygon(0 0, 100% 0, 100% 54%, 0 50%);
  }
  .hero-split-outdoor {
    clip-path: polygon(0 54%, 100% 50%, 100% 100%, 0 100%);
  }
  /* Indoor label: pushed down past the fixed header (~156px ≈ top 20% on most phones) */
  .hero-split-label-indoor {
    left: 50%; top: 38%;
    width: 85%;
    transform: translate(-50%, -50%);
  }
  .hero-split-label-outdoor {
    right: auto; left: 50%; top: 77%;
    width: 85%;
    transform: translate(-50%, -50%);
  }
  .hero-split-label h2 { font-size: 1.3rem; }
  .hero-split-label p { font-size: 0.85rem; }
  /* Hide center brand card on mobile — labels + logo in header are enough */
  .hero-split-brand { display: none; }
  .hero-split-tagline { display: none; }
  .hero-split-cta { font-size: 0.8rem; padding: 8px 18px; }
}
