/* ============================================================
   GREENSCAPE LANDSCAPING — Complete Unified CSS
   Covers: index, about, all inner pages, admin
   Theme: Forest Green + Earthy Brown + Cream + Gold
   Fonts: Playfair Display + DM Sans
============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --green:       #2d6a4f;
  --green-dark:  #1a4731;
  --green-mid:   #40916c;
  --green-light: #74c69d;
  --green-pale:  #d8f3dc;
  --brown:       #8b5e3c;
  --gold:        #c9a84c;
  --cream:       #f8f5f0;
  --cream-dark:  #f0ebe2;
  --white:       #ffffff;
  --charcoal:    #1c1c1c;
  --gray-dark:   #333333;
  --gray-mid:    #666666;
  --gray-light:  #999999;
  --gray-border: #e5e0d8;
  --forest:      #1a4731;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow:       0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.14);
  --transition:   all 0.3s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--white); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; color: var(--charcoal); }

/* ── Utility ───────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 56px 0; }

/* Background helpers */
.bg-white  { background: var(--white); }
.bg-cream  { background: var(--cream); }
.bg-forest { background: var(--forest); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* Section labels */
.section-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-title strong { color: var(--green); font-weight: 700; }
.section-subtitle {
  font-size: 1.02rem;
  color: var(--gray-mid);
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 0;
}
.section-header { margin-bottom: 54px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: #b8932e; border-color: #b8932e; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }
.btn-sm  { padding: 9px 20px; font-size: 0.84rem; }
.btn-lg  { padding: 16px 34px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* ── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

/* Both naming patterns work */
.nav-inner, .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 28px;
}

/* Logo — both old and new markup */
.nav-logo, .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark, .logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.nav-logo-text, .logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--green-dark);
  font-weight: 700;
}
.logo-white .logo-text, .logo-white .nav-logo-text { color: var(--white); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); background: var(--green-pale); }
.nav-links .admin-link,
.nav-links .nav-admin {
  font-size: 0.76rem;
  color: var(--gray-light);
  opacity: 0.6;
}
.nav-links .admin-link:hover,
.nav-links .nav-admin:hover { opacity: 1; color: var(--gray-mid); background: var(--gray-border); }

/* Nav CTA area */
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { font-size: 0.86rem; font-weight: 600; color: var(--green-dark); display: flex; align-items: center; gap: 6px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }

/* Mobile nav */
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--gray-border); padding: 18px 24px 24px; }
.mobile-nav a { display: block; padding: 11px 0; font-size: 0.97rem; font-weight: 500; color: var(--gray-dark); border-bottom: 1px solid var(--gray-border); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { display: inline-flex; margin-top: 14px; }
.mobile-nav.open { display: block; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2b1c 0%, #1a4731 40%, #2d6a4f 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 100px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--green-light);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); color: var(--white); line-height: 1.1; margin-bottom: 22px; max-width: 680px; }
.hero h1 em { font-style: normal; color: var(--green-light); }
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.76); max-width: 520px; margin-bottom: 38px; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 44px; }
.hero-stat-num { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; color: var(--white); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.hero-image-col { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; }
.hero-image-col img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }

/* ── TRUST BAR ─────────────────────────────────────────── */
.trust-bar { background: var(--cream); border-top: 1px solid var(--gray-border); border-bottom: 1px solid var(--gray-border); padding: 30px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 44px; height: 44px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); }
.trust-text-title { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 2px; }
.trust-text-sub { font-size: 0.78rem; color: var(--gray-mid); }

/* ── ABOUT SECTION ─────────────────────────────────────── */
.about-intro { background: var(--white); }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { border-radius: var(--radius); height: 480px; object-fit: cover; width: 100%; }
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--green);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-float .num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; display: block; }
.about-badge-float .label { font-size: 0.8rem; opacity: 0.85; }
.about-list { margin: 22px 0 30px; display: flex; flex-direction: column; gap: 11px; }
.about-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.94rem; color: var(--gray-dark); }
.about-list li svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* ── SERVICES CARDS (homepage) ─────────────────────────── */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--gray-border); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-image { position: relative; height: 200px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-category { position: absolute; top: 14px; left: 14px; background: var(--green); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; }
.service-card-body { padding: 22px; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 9px; }
.service-card-body p { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.7; margin-bottom: 16px; }
.service-card-footer { display: flex; align-items: center; justify-content: space-between; }
.service-price { font-size: 0.84rem; color: var(--green); font-weight: 700; }

/* Services page — full cards */
.service-card-full {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card-full:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 220px; overflow: hidden; flex-shrink: 0; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card-full:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card-body > p { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.7; margin-bottom: 14px; }
.service-features { padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 4px; }
.service-features li { font-size: 0.84rem; color: var(--gray-mid); padding-left: 14px; position: relative; }
.service-features li::before { content: ''; position: absolute; left: 0; top: 0.58rem; width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.service-price-tag { font-size: 0.86rem; color: var(--charcoal); font-weight: 600; margin-bottom: 14px; }
.service-price-tag strong { color: var(--green); }

/* ── WHY CHOOSE US ─────────────────────────────────────── */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-image { position: relative; }
.why-image img { border-radius: var(--radius); height: 520px; object-fit: cover; width: 100%; }
.why-features { display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature-icon { width: 46px; height: 46px; background: var(--green-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); }
.why-feature h4 { font-size: 0.98rem; margin-bottom: 4px; }
.why-feature p { font-size: 0.86rem; color: var(--gray-mid); line-height: 1.7; }

/* ── PROCESS SECTION ───────────────────────────────────── */
.process-section { background: var(--forest); color: var(--white); }
.process-section .section-label { color: var(--green-light); }
.process-section .section-title { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,0.7); }
.process-steps-home { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 52px; position: relative; }
.process-steps-home::before { content: ''; position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 2px; background: rgba(255,255,255,0.12); z-index: 0; }
.process-step-home { text-align: center; position: relative; z-index: 1; }
.process-num { width: 62px; height: 62px; background: var(--green); border: 3px solid var(--green-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--white); margin: 0 auto 18px; }
.process-step-home h4 { font-size: 0.97rem; margin-bottom: 8px; color: var(--white); }
.process-step-home p { font-size: 0.84rem; color: rgba(255,255,255,0.62); line-height: 1.7; }

/* Services page process steps (vertical) */
.process-steps { display: flex; flex-direction: column; gap: 1.25rem; max-width: 760px; margin: 0 auto; }
.process-step { display: flex; gap: 1.5rem; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 1.5rem 1.75rem; border: 1px solid var(--gray-border); }
.step-number { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; color: var(--green); opacity: 0.25; line-height: 1; flex-shrink: 0; min-width: 52px; }
.step-body h3 { font-size: 1.05rem; margin-bottom: 5px; }
.step-body p { color: var(--gray-mid); font-size: 0.88rem; margin: 0; }

/* ── GALLERY ───────────────────────────────────────────── */
.gallery-section { background: var(--cream); }
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  border: 2px solid var(--gray-border);
  background: var(--white);
  color: var(--gray-mid);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--green); background: var(--green); color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,71,49,0.85) 0%, transparent 55%); opacity: 0; transition: var(--transition); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--white); font-size: 0.97rem; margin-bottom: 3px; }
.gallery-overlay span { color: rgba(255,255,255,0.7); font-size: 0.78rem; }
/* Gallery page item info (hover bar) */
.gallery-item-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(26,71,49,0.85), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-item-info { transform: translateY(0); }
.gallery-item-info h4 { color: var(--white); font-size: 0.9rem; margin: 0 0 3px; }
.gallery-tag { background: var(--gold); color: var(--white); font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.04em; }

/* Before/After */
.before-after-grid { display: grid; gap: 2.5rem; }
.before-after-card { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--gray-border); box-shadow: var(--shadow-sm); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-img { position: relative; overflow: hidden; }
.ba-img img { width: 100%; height: 240px; object-fit: cover; display: block; }
.ba-label {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.6); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ba-label.after { background: var(--green); }
.ba-info { padding: 1.4rem 1.6rem; }
.ba-info h3 { font-size: 1.05rem; margin-bottom: 6px; }
.ba-info p { color: var(--gray-mid); font-size: 0.87rem; margin: 0; }

/* ── PRICING ───────────────────────────────────────────── */
.pricing-section { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.pricing-card {
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  transition: var(--transition);
  background: var(--white);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.highlighted,
.pricing-card.pricing-featured {
  border-color: var(--green);
  background: linear-gradient(160deg, #f0faf5, var(--white));
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 18px; border-radius: 50px;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}
.pricing-header { margin-bottom: 20px; }
.pricing-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.pricing-card .tagline, .pricing-desc { font-size: 0.84rem; color: var(--gray-mid); margin-bottom: 0; line-height: 1.6; }
.price-display { margin: 14px 0 18px; }
.price-main, .price-amount { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--green-dark); }
.price-period { font-size: 0.84rem; color: var(--gray-mid); }
.price-custom { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.pricing-divider { border: none; border-top: 1px solid var(--gray-border); margin: 16px 0; }
.pricing-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.87rem; color: var(--gray-dark); }
.pricing-features li svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { width: 100%; }

/* Comparison table */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; background: var(--white); }
.comparison-table th, .comparison-table td { padding: 13px 16px; text-align: center; border-bottom: 1px solid var(--gray-border); }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table thead th { background: var(--green); color: var(--white); font-weight: 700; font-size: 0.86rem; }
.comparison-table .highlight-col { background: #f0faf5; }
.comparison-table tbody tr:hover td { background: var(--cream); }
.check { color: var(--green); font-weight: 700; }
.cross { color: #ccc; font-size: 1.1rem; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-section { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-border); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold); }
.testimonial-review { font-size: 0.91rem; color: var(--gray-dark); line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 13px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--green); flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-location { font-size: 0.78rem; color: var(--gray-mid); }
.author-service { font-size: 0.76rem; color: var(--green); font-weight: 600; }

/* ── STATISTICS ────────────────────────────────────────── */
.stats-section { background: linear-gradient(135deg, var(--green), var(--forest)); color: var(--white); padding: 76px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-card { text-align: center; padding: 22px; }
.stat-num { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: var(--white); display: block; }
.stat-label { font-size: 0.86rem; color: rgba(255,255,255,0.72); margin-top: 5px; }

/* ── BLOG ──────────────────────────────────────────────── */
.blog-section { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { border: 1px solid var(--gray-border); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-image { height: 196px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); background: var(--green-pale); padding: 3px 10px; border-radius: 50px; }
.blog-date { font-size: 0.77rem; color: var(--gray-light); }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 9px; line-height: 1.4; }
.blog-card-body h3 a { color: var(--charcoal); }
.blog-card-body h3 a:hover { color: var(--green); }
.blog-card-body p { font-size: 0.86rem; color: var(--gray-mid); line-height: 1.7; margin-bottom: 15px; }
.blog-read-more { font-size: 0.84rem; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 5px; }
/* Blog page full cards */
.blog-card-full {
  background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.blog-card-full:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img-link { display: block; height: 200px; overflow: hidden; }
.blog-card-img-link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.blog-card-full:hover .blog-card-img-link img { transform: scale(1.05); }
.blog-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.blog-excerpt { color: var(--gray-mid); font-size: 0.87rem; flex: 1; margin-bottom: 1.1rem; line-height: 1.75; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.blog-author { font-size: 0.79rem; color: var(--gray-light); }
.read-more { font-size: 0.86rem; font-weight: 700; color: var(--green); text-decoration: none; }
.read-more:hover { text-decoration: underline; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-section { background: var(--cream); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { max-width: 760px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--charcoal);
  background: none;
  border: none;
  text-align: left;
  transition: var(--transition);
  gap: 12px;
}
.faq-question:hover { color: var(--green); }
.faq-toggle { width: 26px; height: 26px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-toggle svg { color: var(--green); transition: transform 0.3s; }
.faq-item.open .faq-toggle { background: var(--green); }
.faq-item.open .faq-toggle svg { color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 0.89rem; color: var(--gray-mid); line-height: 1.85; }
.faq-answer p { margin-bottom: 0; }
.faq-answer a { color: var(--green); }
.faq-section-heading { font-size: 1.05rem; color: var(--charcoal); margin: 2.25rem 0 0.85rem; font-family: var(--font-heading); }

/* ── CONTACT (homepage) ────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; }
.contact-info h2 { font-size: 1.9rem; margin-bottom: 14px; }
.contact-info p { font-size: 0.93rem; color: var(--gray-mid); margin-bottom: 32px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon { width: 42px; height: 42px; background: var(--green-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); }
.contact-item h4 { font-size: 0.86rem; font-weight: 700; margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: 0.86rem; color: var(--gray-mid); }
.contact-social { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--gray-border); display: flex; align-items: center; justify-content: center; color: var(--gray-mid); transition: var(--transition); }
.social-link:hover { border-color: var(--green); color: var(--green); }

/* Contact page */
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 1rem; }
.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.6rem 1.25rem;
  text-align: center;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-icon { width: 52px; height: 52px; background: var(--green-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--green); }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-info-card a { color: var(--green); font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 4px; }
.contact-info-card p { color: var(--gray-mid); font-size: 0.84rem; margin: 0; line-height: 1.6; }
.contact-forms-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.quote-form-wrap, .contact-form-wrap { }
.map-section .map-embed { margin-top: 1.75rem; border-radius: var(--radius); overflow: hidden; }

/* ── FORMS ─────────────────────────────────────────────── */
.form-card { background: var(--cream); border-radius: var(--radius); padding: 38px; border: 1px solid var(--gray-border); }
.form-card h3 { font-size: 1.35rem; margin-bottom: 22px; }
.gs-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 0.83rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; letter-spacing: 0.01em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.91rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,0.08); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { font-size: 0.86rem; font-weight: 600; padding: 10px 14px; border-radius: var(--radius-sm); margin-top: 6px; }
.form-message { padding: 11px 14px; border-radius: var(--radius-sm); font-size: 0.87rem; font-weight: 600; margin-top: 12px; display: none; }
.form-message.success { background: var(--green-pale); color: var(--green-dark); display: block; }
.form-message.error   { background: #fee2e2; color: #b91c1c; display: block; }

/* ── MAP ───────────────────────────────────────────────── */
.map-section { background: var(--cream); }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.map-placeholder { background: var(--green-pale); border-radius: var(--radius); height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; border: 2px solid var(--gray-border); text-align: center; color: var(--green); }
.service-areas { display: flex; flex-direction: column; gap: 13px; margin-top: 22px; }
.service-area-item { display: flex; align-items: center; gap: 11px; font-size: 0.88rem; color: var(--gray-dark); }
.service-area-item svg { color: var(--green); flex-shrink: 0; }

/* ── NEWSLETTER ────────────────────────────────────────── */
.newsletter-section { background: var(--forest); padding: 68px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.newsletter-inner h2 { font-size: 1.9rem; color: var(--white); margin-bottom: 10px; }
.newsletter-inner p { color: rgba(255,255,255,0.7); font-size: 0.93rem; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.91rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.48); }
.newsletter-form input:focus { border-color: var(--green-light); }
.newsletter-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 8px; }

/* Blog page newsletter form */
.newsletter-form input[type="email"] {
  flex: 1; min-width: 200px;
  padding: 13px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.91rem;
  outline: none;
}

/* ── FOOTER ────────────────────────────────────────────── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.72); padding: 68px 0 0; }
/* Homepage footer uses .footer-grid, inner pages use .footer-inner + .footer-links */
.footer-grid,
.footer-inner {
  display: grid;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.footer-inner { grid-template-columns: 1.4fr 1fr; }

.footer-brand { }
.footer-brand .nav-logo-text,
.footer-brand .logo-text { color: var(--white); font-size: 1.3rem; }
.footer-brand p { font-size: 0.86rem; margin-top: 12px; margin-bottom: 20px; line-height: 1.8; color: rgba(255,255,255,0.58); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-social a:hover { border-color: var(--green-light); color: var(--green-light); }

/* Inner-page footer links panel */
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col h4 { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col a { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.58); margin-bottom: 9px; transition: var(--transition); }
.footer-col a:hover { color: var(--green-light); }
/* Homepage footer uses <ul><li> */
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.58); display: block; }
.footer-col ul li a:hover { color: var(--green-light); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--white); }

/* ── WHATSAPP ───────────────────────────────────────────── */
.whatsapp-btn { position: fixed; bottom: 26px; right: 26px; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 18px rgba(37,211,102,0.4); transition: var(--transition); color: var(--white); }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(37,211,102,0.5); }

/* ── CTA BANNER ────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--green), var(--forest)); color: var(--white); padding: 78px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(1.75rem, 3.8vw, 2.5rem); color: var(--white); margin-bottom: 13px; }
.cta-banner p { font-size: 1.03rem; color: rgba(255,255,255,0.78); margin-bottom: 34px; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* Inner-page CTA block */
.cta-block { max-width: 660px; margin: 0 auto; }
.cta-block h2 { margin-bottom: 10px; }
.cta-block p { color: var(--gray-mid); margin-bottom: 1.8rem; font-size: 0.95rem; }
.cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ───────────────────────────── */
/* Old-style (about.html) */
.page-hero-old { background: linear-gradient(135deg, var(--forest), var(--green)); padding: 120px 0 60px; text-align: center; }
/* New style (services, gallery, etc.) */
.page-hero {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-top: 72px;
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,71,49,0.82) 0%, rgba(0,0,0,0.52) 100%); }
.page-hero-content { position: relative; z-index: 2; color: var(--white); padding: 5rem 0 4rem; }
.page-hero-sub { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.page-hero-content h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.85rem); margin-bottom: 12px; }
.page-hero-content h1 strong { color: var(--white); }
.page-hero-content p { color: rgba(255,255,255,0.82); max-width: 520px; font-size: 1.02rem; margin-bottom: 1.6rem; }
/* Simple page hero (privacy, terms) */
.page-hero-simple { margin-top: 72px; padding: 3.5rem 0 2rem; }
.page-hero-simple.bg-cream { background: var(--cream); border-bottom: 1px solid var(--gray-border); }
.page-hero-simple h1 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 6px; }
.page-hero-simple h1 strong { color: var(--green); }
.page-hero-simple p { color: var(--gray-mid); font-size: 0.9rem; }

/* ── LEGAL ─────────────────────────────────────────────── */
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.2rem; margin: 2.25rem 0 0.7rem; color: var(--charcoal); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--gray-mid); font-size: 0.91rem; line-height: 1.85; margin-bottom: 0.9rem; }
.legal-content ul { padding-left: 1.4rem; margin-bottom: 0.9rem; }
.legal-content ul li { color: var(--gray-mid); font-size: 0.91rem; line-height: 1.85; margin-bottom: 5px; }
.legal-content a { color: var(--green); }
.legal-contact { background: var(--cream); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin-top: 1rem; border: 1px solid var(--gray-border); }
.legal-contact p { margin: 3px 0; font-size: 0.9rem; color: var(--gray-mid); }
.legal-contact strong { color: var(--charcoal); }

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── LIGHTBOX ──────────────────────────────────────────── */
.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 9999; align-items: center; justify-content: center; flex-direction: column; }
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 78vh; border-radius: 8px; object-fit: contain; }
.lightbox-caption { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 0.88rem; }
.lightbox-close { position: absolute; top: 1.25rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 2.4rem; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; line-height: 1; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: var(--white); font-size: 2rem; width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

/* ── SPINNER ───────────────────────────────────────────── */
.loading-spinner { display: flex; justify-content: center; align-items: center; padding: 44px; }
.spinner { width: 34px; height: 34px; border: 3px solid var(--gray-border); border-top-color: var(--green); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ────────────────────────────────────────────────────────
   ADMIN
──────────────────────────────────────────────────────── */
.admin-body { background: #f1f4f8; margin: 0; min-height: 100vh; font-family: var(--font-body); }

/* Admin Login */
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: linear-gradient(135deg, #0d2b1c 0%, #1a4731 100%); }
.admin-login-card { background: var(--white); border-radius: 16px; padding: 2.6rem 2.4rem; width: 100%; max-width: 410px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.admin-login-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 1.8rem; justify-content: center; }
.admin-login-brand .logo-text { font-family: var(--font-heading); font-size: 1.4rem; color: var(--charcoal); }
.admin-login-title { font-size: 1.45rem; text-align: center; margin-bottom: 5px; }
.admin-login-sub { color: var(--gray-mid); text-align: center; font-size: 0.86rem; margin-bottom: 1.8rem; }
.admin-login-form { display: flex; flex-direction: column; gap: 1.1rem; }
.admin-login-form .form-group label { font-size: 0.82rem; font-weight: 700; display: block; margin-bottom: 6px; }
.admin-login-form .form-group input { width: 100%; padding: 11px 14px; border: 2px solid var(--gray-border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal); outline: none; transition: var(--transition); }
.admin-login-form .form-group input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,0.08); }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 2.8rem; }
.toggle-pw { position: absolute; right: 0.8rem; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--gray-mid); display: flex; align-items: center; padding: 0; }
.admin-login-back { text-align: center; margin-top: 1.1rem; font-size: 0.84rem; color: var(--gray-mid); }
.admin-login-back a { color: var(--green); font-weight: 600; }

/* Admin Sidebar */
.admin-sidebar {
  position: fixed;
  top: 0; left: 0;
  width: 236px;
  height: 100vh;
  background: #1a3829;
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
  transition: transform 0.3s ease;
}
.admin-sidebar-brand { display: flex; align-items: center; gap: 10px; padding: 1.4rem 1.2rem; color: var(--white); font-family: var(--font-heading); font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; }
.admin-nav { flex: 1; padding: 0.75rem 0; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.68rem 1.2rem;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
}
.admin-nav-item:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.admin-nav-item.active { color: var(--gold); background: rgba(201,168,76,0.14); }
.admin-nav-item svg { flex-shrink: 0; opacity: 0.8; }
.admin-sidebar-footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 0.6rem 0; flex-shrink: 0; }
.admin-logout { color: rgba(255,100,100,0.72) !important; }
.admin-logout:hover { color: #ff7070 !important; background: rgba(255,100,100,0.08) !important; }

/* Admin Main */
.admin-main { margin-left: 236px; min-height: 100vh; display: flex; flex-direction: column; }
.admin-topbar { background: var(--white); border-bottom: 1px solid var(--gray-border); padding: 0 1.75rem; height: 60px; display: flex; align-items: center; gap: 14px; position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-sm); }
.admin-menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.admin-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; }
.admin-page-title { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin: 0; flex: 1; color: var(--charcoal); }
.admin-user-badge { background: var(--green-pale); padding: 4px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; color: var(--green); margin-left: auto; }
.admin-content { padding: 1.75rem 2rem; flex: 1; }
.admin-section { display: none; }
.admin-section.active { display: block; }

/* Stats */
.admin-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-bottom: 1.75rem; }
.admin-stat-card { background: var(--white); border-radius: var(--radius); padding: 1.2rem 1.4rem; display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-border); }
.stat-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-green  { background: var(--green-pale); color: var(--green); }
.stat-gold   { background: #fdf6e3; color: var(--gold); }
.stat-blue   { background: #e8f0fe; color: #1a73e8; }
.stat-brown  { background: #f5ece5; color: var(--brown); }
.stat-body { display: flex; flex-direction: column; }
.stat-num  { font-size: 1.55rem; font-weight: 700; font-family: var(--font-heading); line-height: 1; color: var(--charcoal); }
.stat-label { font-size: 0.77rem; color: var(--gray-mid); margin-top: 2px; }

/* Recent grid */
.admin-recent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.admin-recent-card { background: var(--white); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-border); }
.admin-recent-card h3 { font-size: 0.92rem; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-border); color: var(--charcoal); }
.admin-recent-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--gray-border); font-size: 0.84rem; }
.admin-recent-row:last-child { border-bottom: none; }
.admin-recent-row strong { display: block; font-weight: 600; font-size: 0.86rem; }
.admin-meta { font-size: 0.76rem; color: var(--gray-light); }
.admin-badge { background: var(--green-pale); color: var(--green); font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; white-space: nowrap; }

/* Section header */
.admin-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; }
.admin-section-header h3 { font-size: 1.05rem; margin: 0; }
.admin-loading, .admin-empty { color: var(--gray-mid); font-size: 0.88rem; padding: 1.5rem 0; text-align: center; }

/* Admin Table */
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-border); font-size: 0.86rem; }
.admin-table thead tr { background: #f4f6f9; }
.admin-table th { padding: 10px 14px; text-align: left; font-weight: 700; color: var(--charcoal); border-bottom: 1px solid var(--gray-border); white-space: nowrap; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.admin-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-border); vertical-align: middle; color: var(--gray-dark); }
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: #fafbfd; }
.admin-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-thumb { width: 48px; height: 38px; object-fit: cover; border-radius: 6px; display: block; }
.admin-tag { background: var(--green-pale); color: var(--green); font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; text-transform: capitalize; white-space: nowrap; }
.btn-danger { background: #fee2e2; color: #dc2626; border: none; font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; padding: 7px 14px; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.btn-danger:hover { background: #fecaca; }

/* Admin Modals */
.admin-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; align-items: center; justify-content: center; padding: 1.5rem; }
.admin-modal.active { display: flex; }
.admin-modal-inner { background: var(--white); border-radius: var(--radius); width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; padding: 1.9rem; position: relative; }
.admin-modal-wide .admin-modal-inner { max-width: 740px; }
.admin-modal-confirm { text-align: center; }
.admin-modal-confirm h3 { margin-bottom: 10px; }
.admin-modal-confirm p { color: var(--gray-mid); font-size: 0.9rem; margin-bottom: 1.5rem; }
.admin-modal-close { position: absolute; top: 0.9rem; right: 1rem; background: none; border: none; font-size: 1.7rem; color: var(--gray-mid); cursor: pointer; line-height: 1; padding: 2px; }
.admin-modal-close:hover { color: var(--charcoal); }
.admin-modal-inner > h3 { font-size: 1.1rem; margin-bottom: 1.4rem; padding-right: 2rem; color: var(--charcoal); }

/* Admin Form inside modal */
.admin-form { display: flex; flex-direction: column; gap: 0.9rem; }
.admin-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.admin-form .form-group { display: flex; flex-direction: column; }
.admin-form .form-group label { font-size: 0.8rem; font-weight: 700; color: var(--charcoal); margin-bottom: 5px; }
.admin-form .form-group input,
.admin-form .form-group select,
.admin-form .form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  box-sizing: border-box;
}
.admin-form .form-group input:focus,
.admin-form .form-group select:focus,
.admin-form .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,0.08); }
.admin-form .form-group textarea { resize: vertical; }
.admin-checkbox-group { justify-content: flex-end; padding-top: 1.5rem; }
.admin-checkbox-group label { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 600; cursor: pointer; }
.admin-form-actions { display: flex; gap: 10px; margin-top: 6px; }

/* Admin Detail */
.admin-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.admin-detail-full { grid-column: 1 / -1; }
.admin-detail-item label { font-size: 0.75rem; font-weight: 700; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 4px; }
.admin-detail-item span, .admin-detail-item p { font-size: 0.9rem; color: var(--charcoal); line-height: 1.7; }
.admin-detail-item a { color: var(--green); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-image-col { display: none; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-forms-layout { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .admin-recent-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-pad { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-cta .btn-primary { display: none; }
  .nav-cta .nav-phone { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 26px; }
  .process-steps-home { grid-template-columns: repeat(2, 1fr); }
  .process-steps-home::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid.services-page-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-menu-toggle { display: flex; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-form .form-row { grid-template-columns: 1fr; }
  .admin-detail-grid { grid-template-columns: 1fr; }
  .before-after-card .ba-images { grid-template-columns: 1fr; }
  .page-hero { min-height: 300px; }
  .page-hero-content { padding: 3.5rem 0 2.5rem; }
  .pricing-card.pricing-featured, .pricing-card.highlighted { transform: none; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 540px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps-home { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .cta-group { flex-direction: column; align-items: center; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .comparison-table th, .comparison-table td { padding: 8px 8px; font-size: 0.8rem; }
}

/* ── About page hero (no bg image, gradient) */
.about-intro ~ * + * { }
section.page-hero:not([style]) {
  background: linear-gradient(135deg, var(--forest), var(--green));
  min-height: 280px;
  margin-top: 72px;
  display: flex;
  align-items: center;
  padding: 80px 0 56px;
}
section.page-hero:not([style]) h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 10px; }
section.page-hero:not([style]) p  { color: rgba(255,255,255,0.8); max-width: 560px; font-size: 1.02rem; }

/* Ensure section-pad gets bg when style attr applies */
.section-pad { padding: 86px 0; }

/* Inner-page .section spacing */
.section { padding: 80px 0; }

/* forest background text */
.bg-forest .section-label { color: var(--gold) !important; }
.bg-forest .section-title { color: var(--white) !important; }
.bg-forest p { color: rgba(255,255,255,0.80); }

/* Ensure form-msg colours are applied */
.form-msg { display: block; }

/* Admin checkbox group alignment */
.admin-checkbox-group.form-group { justify-content: flex-start; padding-top: 0; }

/* Mobile nav for inner pages (toggle via JS .mobile-open) */
@media (max-width: 768px) {
  #navLinks.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    padding: 12px 24px 20px;
    box-shadow: var(--shadow);
    z-index: 999;
    gap: 2px;
  }
  #navLinks.mobile-open a {
    padding: 11px 8px;
    border-bottom: 1px solid var(--gray-border);
    font-size: 0.97rem;
  }
  #navLinks.mobile-open a:last-child { border-bottom: none; }
}
/* Homepage dynamic card polish */
#servicesGrid,
#galleryGrid,
#pricingGrid,
#testimonialsGrid,
#blogGrid {
  display: grid;
  gap: 28px;
  margin-top: 52px;
}

#servicesGrid,
#pricingGrid,
#testimonialsGrid,
#blogGrid {
  grid-template-columns: repeat(3, 1fr);
}

#galleryGrid {
  grid-template-columns: repeat(4, 1fr);
}

#servicesGrid .service-card,
#blogGrid .blog-card,
#pricingGrid .pricing-card,
#testimonialsGrid .testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(45, 106, 79, 0.12);
  box-shadow: 0 18px 45px rgba(20, 40, 30, 0.12);
}

#servicesGrid .service-card-image,
#blogGrid .blog-card-image {
  height: 220px;
  overflow: hidden;
  background: #f4f1eb;
}

#servicesGrid img,
#blogGrid img,
#galleryGrid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#servicesGrid .service-card-content,
#blogGrid .blog-card-content,
#pricingGrid .pricing-card,
#testimonialsGrid .testimonial-card {
  padding: 24px;
}

#servicesGrid .service-card-category,
#blogGrid .blog-category {
  display: inline-block;
  background: #2d6a4f;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

#servicesGrid h3,
#blogGrid h3,
#pricingGrid h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #1f1f1f;
  font-family: "Playfair Display", serif;
}

#servicesGrid p,
#blogGrid p,
#pricingGrid p,
#testimonialsGrid p {
  color: #5f665f;
  line-height: 1.65;
  margin-bottom: 18px;
}

#servicesGrid .service-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

#servicesGrid .service-price,
#servicesGrid .service-link,
#blogGrid .service-link {
  color: #2d6a4f;
  font-weight: 800;
  text-decoration: none;
}

#galleryGrid .gallery-card {
  position: relative;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(20, 40, 30, 0.12);
}

#galleryGrid .gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: white;
}

#galleryGrid .gallery-overlay h3 {
  margin: 6px 0;
  font-family: "Playfair Display", serif;
}

#pricingGrid .pricing-price span {
  font-size: 2rem;
  font-weight: 800;
  color: #2d6a4f;
}

#pricingGrid ul {
  padding-left: 18px;
  margin: 18px 0;
  color: #5f665f;
  line-height: 1.8;
}

#testimonialsGrid .stars {
  color: #d6a73a;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

@media (max-width: 992px) {
  #servicesGrid,
  #pricingGrid,
  #testimonialsGrid,
  #blogGrid,
  #galleryGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  #servicesGrid,
  #pricingGrid,
  #testimonialsGrid,
  #blogGrid,
  #galleryGrid {
    grid-template-columns: 1fr;
  }
}
/* Fix process section text visibility and layout */
.process-section {
  background: #154b34;
  color: #ffffff;
}

.process-section .section-label {
  color: #d8f3dc;
}

.process-section .section-title {
  color: #ffffff;
}

.process-section .section-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.process-step {
  background: #ffffff;
  border-radius: 22px;
  padding: 34px 26px;
  min-height: 260px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(45, 106, 79, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.process-step .process-num {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: #2d6a4f;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 0 6px rgba(45, 106, 79, 0.16);
}

.process-step h4 {
  color: #1f1f1f;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 14px;
}

.process-step p {
  color: #5f665f;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }
}