/* ============================================
   NANDO'S LANDSCAPING - PREMIUM STYLESHEET
   ============================================ */

/* === CSS VARIABLES === */
:root {
  --green-primary: #2E7D32;
  --green-dark: #1B5E20;
  --green-accent: #7CB342;
  --green-light: #E8F5E9;
  --green-mid: #4CAF50;
  --white: #FFFFFF;
  --gray-light: #F7F7F7;
  --gray-mid: #E0E0E0;
  --gray-text: #666666;
  --dark-text: #222222;
  --earth: #5D4037;
  --earth-light: #EFEBE9;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-green: 0 4px 20px rgba(46,125,50,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', 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-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--gray-text); line-height: 1.8; }

/* === UTILITY CLASSES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-green { color: var(--green-primary); }
.bg-green { background: var(--green-primary); }
.bg-dark-green { background: var(--green-dark); }
.bg-light { background: var(--gray-light); }
.bg-green-light { background: var(--green-light); }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 68px 0; }

.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-primary);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-family: var(--font-head);
}
.section-title {
  margin-bottom: 14px;
  line-height: 1.22;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-accent));
  border-radius: 2px;
  margin: 16px auto 32px;
}
.divider-left { margin-left: 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46,125,50,0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}
.btn-secondary:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-primary);
  border-color: var(--white);
}

.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

.btn-call {
  background: linear-gradient(135deg, #FF6F00, #E65100);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,111,0,0.35);
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,111,0,0.5);
}

/* === NAVIGATION === */
#navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
#navbar.scrolled {
  background: var(--white);
  backdrop-filter: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
#navbar.transparent { background: var(--white); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo img {
  height: 64px;
  width: auto;
  transition: var(--transition);
  filter: none;
}
#navbar.transparent .nav-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-text);
  transition: var(--transition);
}
#navbar.scrolled .nav-links a { color: var(--dark-text); }
.nav-links a:hover, .nav-links a.active {
  color: var(--green-primary);
  background: rgba(46,125,50,0.08);
}
#navbar.scrolled .nav-links a:hover { color: var(--green-primary); }

.nav-cta {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark)) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  box-shadow: var(--shadow-green);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(46,125,50,0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--dark-text); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-text);
  border-bottom: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--green-primary); padding-left: 24px; }
.mobile-nav .mobile-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://sspark.genspark.ai/cfimages?u1=BqaVO72jl98SfRCWtsh%2BCyauusi38iJllxPsncSYpY7lr%2Fq71FGFbpqPqFKwbKAMu7x6lp7xFH0axbietKe9c%2B7coJg3JQJ%2BvLu3zM%2FdULqkgaF1p0AsF%2BAWGS0%3D&u2=FCmNNYwq4adAr1bN&width=2560');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,94,32,0.88) 0%, rgba(46,125,50,0.75) 40%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 120px;
  max-width: 760px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 50px;
  margin-bottom: 28px;
  font-family: var(--font-head);
}
.hero-tag i { color: var(--green-accent); }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero h1 span {
  color: var(--green-accent);
  position: relative;
}
.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 44px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 4px;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 56px;
  flex-wrap: nowrap;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
}
.hero-stat {
  text-align: center;
  padding: 22px 40px;
  position: relative;
}
.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}
.hero-stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  line-height: 1;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.hero-stat-suffix {
  font-size: 1.5rem;
  color: var(--green-accent);
  font-weight: 800;
}
.hero-stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 7px;
  display: block;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-align: center;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll i { display: block; font-size: 1.4rem; margin-top: 4px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--green-primary);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  padding: 3px 0;
}
.trust-item i { color: var(--green-accent); font-size: 1rem; flex-shrink: 0; }

/* === ABOUT PREVIEW === */
.about-preview { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  padding-bottom: 40px;
  padding-right: 28px;
}
.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
}
.about-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--green-primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  text-align: center;
  box-shadow: var(--shadow-green);
  z-index: 2;
}
.about-badge-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}
.about-badge-text { font-size: 0.8rem; opacity: 0.9; margin-top: 6px; line-height: 1.4; }

.about-content { padding-top: 8px; }
.about-list { margin: 24px 0 32px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  color: var(--gray-text);
  border-bottom: 1px solid var(--gray-light);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i {
  color: var(--green-primary);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-accent);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon i { color: var(--green-primary); font-size: 1.3rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; flex: 1; line-height: 1.72; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-primary);
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--font-head);
  margin-top: 22px;
  transition: var(--transition);
}
.service-card-link:hover { gap: 10px; }

/* === WHY CHOOSE US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-primary);
}
.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--green-light), rgba(124,179,66,0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.why-icon i { color: var(--green-primary); font-size: 1.65rem; }
.why-card h4 { margin-bottom: 12px; font-size: 1rem; }
.why-card p { font-size: 0.9rem; line-height: 1.72; }

/* === GALLERY PREVIEW === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,94,32,0.88) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-item-tall { grid-row: span 2; }
.gallery-item-tall img { height: 576px; }

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 36px 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--green-light);
  line-height: 1;
  pointer-events: none;
}
.stars { color: #FFA000; font-size: 1.05rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 0.95rem;
  color: var(--gray-text);
  margin-bottom: 28px;
  font-style: italic;
  line-height: 1.82;
  flex: 1;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  font-family: var(--font-head); flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.reviewer-service { font-size: 0.8rem; color: var(--gray-text); line-height: 1.4; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 60%, var(--green-accent) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin: 20px 0 40px; line-height: 1.8; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--green-primary); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--dark-text);
  text-align: left;
  gap: 16px;
  cursor: pointer;
}
.faq-question i {
  color: var(--green-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  padding: 0 26px 26px;
  max-height: 360px;
}
.faq-answer p { font-size: 0.95rem; line-height: 1.8; color: var(--gray-text); }

/* === FOOTER === */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 88px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo { height: 65px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.7); max-width: 300px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--green-accent); transform: translateY(-2px); }

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--green-accent); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--green-accent); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-contact li i { color: var(--green-accent); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 0;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-bottom a:hover { color: var(--green-accent); }

/* === STICKY MOBILE CTA === */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 900;
  gap: 10px;
}
.sticky-mobile-cta .btn { flex: 1; justify-content: center; font-size: 0.88rem; padding: 13px 16px; }

/* === FLOATING ESTIMATE BUTTON === */
.float-estimate {
  position: fixed;
  right: 24px;
  bottom: 90px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-green);
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  animation: pulse-green 3s infinite;
}
.float-estimate:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(46,125,50,0.5);
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(46,125,50,0.35); }
  50% { box-shadow: 0 4px 30px rgba(46,125,50,0.6); }
}

/* === PAGE HERO === */
.page-hero {
  position: relative;
  min-height: 320px;
  padding: 60px 0 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,94,32,0.88), rgba(46,125,50,0.72));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 1.08rem; max-width: 540px; margin-top: 14px; line-height: 1.75; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.6rem; }

/* === SERVICE DETAIL SECTION === */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
}
.service-benefits { margin: 24px 0; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.benefit-item i { color: var(--green-accent); font-size: 1rem; margin-top: 4px; flex-shrink: 0; }
.benefit-item p { font-size: 0.95rem; margin: 0; }

/* === ABOUT PAGE === */
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--green-primary);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.value-icon i { color: var(--green-primary); font-size: 1.4rem; }
.value-card h4 { margin-bottom: 8px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 3rem;
  color: var(--white);
}
.team-card h4 { margin-bottom: 4px; }
.team-role { color: var(--green-primary); font-size: 0.88rem; font-weight: 600; font-family: var(--font-head); }

/* === GALLERY PAGE === */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  background: var(--white);
  color: var(--dark-text);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}

.masonry-grid {
  columns: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 4 / 3;
}
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,94,32,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay i { color: var(--white); font-size: 2rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--green-accent); }

/* Before/After slider */
.before-after {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: col-resize;
  user-select: none;
  box-shadow: var(--shadow-lg);
}
.before-after-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.before-after img { width: 100%; height: 400px; object-fit: cover; display: block; }
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--white);
  cursor: col-resize;
  z-index: 10;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.ba-handle i { color: var(--green-primary); font-size: 1rem; }
.ba-labels {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.ba-label {
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 4px 14px;
  border-radius: 50px;
}

/* === SERVICE AREAS === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.area-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--green-accent);
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-primary);
}
/* Area card as anchor link */
a.area-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.area-card:hover h4 { color: var(--green-primary); }
.area-card i { color: var(--green-primary); font-size: 1.3rem; margin-bottom: 10px; display: block; }
.area-card h4 { font-size: 0.92rem; margin-bottom: 4px; transition: color var(--transition); }
.area-card p { font-size: 0.78rem; line-height: 1.5; }

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 52px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 26px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--gray-light);
  color: var(--dark-text);
}
.form-control:focus {
  outline: none;
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46,125,50,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; }

.contact-info { }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(4px); }
.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon i { color: var(--green-primary); font-size: 1.2rem; }
.contact-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; margin: 0; }
.contact-card a { color: var(--green-primary); font-weight: 600; }

.map-placeholder {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gray-text);
  font-size: 1rem;
  border: 2px solid var(--gray-mid);
  overflow: hidden;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; border-radius: var(--radius-md); }

/* === SUCCESS MESSAGE === */
.success-msg {
  background: var(--green-light);
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--green-dark);
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.success-msg.show { display: flex; }

/* === SHAKE ANIMATION (form validation) === */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* === RESPONSIVE === */

/* --- Large tablet / small desktop (≤1100px) --- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { gap: 56px; }
  .hero-stats { flex-wrap: nowrap; }
  .hero-stat { padding: 20px 28px; }
  .section-pad { padding: 88px 0; }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .value-cards { grid-template-columns: repeat(3, 1fr); }
}

/* --- Medium tablet (≤1024px) --- */
@media (max-width: 1024px) {
  .container, .container-lg { padding: 0 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-item img { height: 240px; }
  .gallery-item-tall img { height: 494px; }
  .masonry-grid { columns: 2; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .about-grid { gap: 48px; }
}

/* --- Tablet (≤860px) --- */
@media (max-width: 860px) {
  .container, .container-lg { padding: 0 24px; }
  .section-pad { padding: 76px 0; }
  .section-pad-sm { padding: 52px 0; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-image-wrap { padding-right: 0; padding-bottom: 52px; }
  .about-image-main img { height: 380px; }
  .about-badge { right: 20px; bottom: 0; }
  .about-content { padding-top: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { padding: 40px 36px; }

  /* Services detail */
  .service-detail { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .service-detail.reverse { direction: ltr; }
  .service-detail-img img { height: 320px; }

  /* Hero stats */
  .hero-stats { width: 100%; border-radius: var(--radius-sm); flex-wrap: nowrap; }
  .hero-stat { padding: 16px 20px; }

  /* Values & Why */
  .value-cards { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer { padding: 72px 0 0; }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
  .container, .container-lg { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 68px 0; }
  .section-pad-sm { padding: 46px 0; }

  /* Hero */
  .hero h1 { font-size: clamp(1.9rem, 5vw, 2.4rem); }
  .hero p { font-size: 1rem; margin-bottom: 32px; }
  .hero-content { padding: 120px 0 90px; max-width: 100%; }
  .hero-tag { font-size: 0.76rem; padding: 8px 16px; margin-bottom: 20px; }
  .hero-stats { width: 100%; border-radius: var(--radius-sm); margin-top: 40px; }
  .hero-stat { padding: 16px 20px; flex: 1; min-width: 100px; }
  .hero-stat-num { font-size: 1.65rem; }

  /* Trust bar */
  .trust-items { gap: 8px 20px; }
  .trust-item { font-size: 0.82rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-image-wrap { padding-right: 0; padding-bottom: 52px; }
  .about-image-main img { height: 300px; }
  .about-badge { right: 12px; bottom: 0; padding: 16px 20px; }
  .about-badge-num { font-size: 1.8rem; }
  .about-list { margin: 16px 0 24px; }
  .about-preview { padding: 68px 0; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card-img { height: 180px; }
  .service-card-body { padding: 20px; }
  .service-icon { width: 44px; height: 44px; margin-bottom: 14px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item img { height: 190px; }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-tall img { height: 190px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 28px 18px; }
  .why-icon { width: 58px; height: 58px; }

  /* Values */
  .value-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .review-card { padding: 32px 28px 28px; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .area-card { padding: 18px 10px; }

  /* Gallery masonry */
  .masonry-grid { columns: 2; column-gap: 12px; }

  /* Section headers */
  .section-subtitle { margin-bottom: 40px; font-size: 0.98rem; }
  .divider { margin: 12px auto 24px; }

  /* Contact form */
  .contact-grid { gap: 28px; }
  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 20px; }

  /* Before/after */
  .before-after img { height: 240px; }
  .ba-grid-2col { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 60px 0 0; }
  .footer-bottom { padding: 20px 0; }

  /* Floating buttons */
  .sticky-mobile-cta { display: flex; }
  .float-estimate { bottom: 80px; right: 12px; font-size: 0.78rem; padding: 12px 16px; }

  /* Service details */
  .service-detail { grid-template-columns: 1fr; gap: 28px; padding: 52px 0; }
  .service-detail.reverse { direction: ltr; }
  .service-detail-img img { height: 260px; }

  /* CTA banner */
  .cta-banner { padding: 68px 0; }
  .cta-banner p { margin: 16px auto 32px; }
  .cta-btns { gap: 12px; }

  /* Page hero */
  .page-hero { min-height: 300px; padding: 100px 0 48px; }
}

/* --- Small mobile (≤520px) --- */
@media (max-width: 520px) {
  .container, .container-lg { padding: 0 16px; }
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 40px 0; }

  /* Hero */
  .hero h1 { font-size: 1.8rem; line-height: 1.2; }
  .hero p { font-size: 0.97rem; }
  .hero-content { padding: 110px 0 80px; }
  .hero-tag { font-size: 0.72rem; padding: 7px 14px; letter-spacing: 1.5px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; width: 100%; flex-wrap: wrap; }
  .hero-stat + .hero-stat::before { display: none; }
  .hero-stat { border-bottom: 1px solid rgba(255,255,255,0.12); padding: 14px 10px; }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-stat-suffix { font-size: 1.1rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Values */
  .value-cards { grid-template-columns: 1fr; gap: 14px; }

  /* Trust */
  .trust-items { gap: 8px 14px; }
  .trust-item { font-size: 0.8rem; }

  /* About */
  .about-image-main img { height: 260px; }
  .about-badge { padding: 14px 18px; }
  .about-badge-num { font-size: 1.6rem; }
  .about-badge-text { font-size: 0.72rem; }
  .about-preview { padding: 60px 0; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 200px; }
  .service-card-body { padding: 22px 20px; }

  /* Section headers */
  .section-subtitle { font-size: 0.95rem; margin-bottom: 36px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-card { padding: 22px 14px; }
  .why-icon { width: 52px; height: 52px; margin-bottom: 14px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item img { height: 230px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 28px 22px 22px; }

  /* Masonry */
  .masonry-grid { columns: 1; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .area-card { padding: 18px 12px; }

  /* CTA */
  .cta-banner { padding: 60px 0; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 52px 0 0; }

  /* Contact */
  .contact-form { padding: 24px 20px; }

  /* Before/after side by side */
  #ba-grid { grid-template-columns: 1fr !important; }
  .before-after img { height: 220px; }

  /* Page hero */
  .page-hero { min-height: 260px; padding: 90px 0 40px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2rem); }
}
