@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&family=Outfit:wght@700&display=swap');

:root {
  --green-dark: #1e3a2f;
  --green: #2d5a42;
  --green-mid: #3d7a58;
  --green-light: #56a374;
  --green-pale: #e8f2ec;
  --gold: #c8973a;
  --gold-light: #e8b85a;
  --charcoal: #1a1f1c;
  --ink: #232b26;
  --body: #2e3a33;
  --muted: #5a6b60;
  --border: #dde6e0;
  --bg: #f8faf8;
  --white: #ffffff;
  --shadow-sm: 0 1px 4px rgba(30,58,47,0.08);
  --shadow-md: 0 4px 20px rgba(30,58,47,0.12);
  --shadow-lg: 0 12px 48px rgba(30,58,47,0.16);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  line-height: 1.15;
}

h1 { font-size: clamp(42px, 6vw, 76px); font-weight: 600; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 600; }
h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 500; }
h4 { font-size: 20px; font-weight: 500; }

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
}

/* ── LAYOUT ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: 96px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

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

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: white; }

.btn-gold {
  background: var(--gold);
  color: white;
}
.btn-gold:hover { background: #b5832e; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(200,151,58,0.3); }

.btn-white {
  background: white;
  color: var(--green-dark);
}
.btn-white:hover { background: var(--green-pale); }

/* ── 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(--border);
  transition: box-shadow 0.2s;
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.01em;
}

.nav-logo .logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--body);
  letter-spacing: 0.02em;
  transition: color 0.15s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

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

.nav-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── HERO ── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.hero-text .eyebrow { color: var(--gold-light); margin-bottom: 20px; }

.hero-text h1 {
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-text h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero card */
.hero-card {
  background: white;
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.hero-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.hero-card .card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.quick-form .form-group {
  margin-bottom: 14px;
}

.quick-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
  border-color: var(--green);
  background: white;
}

.quick-form textarea { resize: vertical; min-height: 80px; }

.form-status {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 6px;
  margin-top: 10px;
  display: none;
}
.form-status.success { background: var(--green-pale); color: var(--green-dark); display: block; }
.form-status.error { background: #fdecea; color: #b71c1c; display: block; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--green-dark);
  padding: 20px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
}

.trust-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* ── SECTION STYLES ── */
.section-header {
  margin-bottom: 56px;
}

.section-header .eyebrow { margin-bottom: 12px; display: block; }

.section-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-top: 16px;
  font-weight: 300;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 28px;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.service-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--ink);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.service-card:hover .service-link { gap: 10px; }

/* ── WHY US ── */
.why-section { background: var(--green-dark); }

.why-section h2, .why-section .eyebrow { color: white; }
.why-section .eyebrow { color: var(--gold-light); }
.why-section .section-header p { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.why-item {
  background: rgba(255,255,255,0.04);
  padding: 36px 28px;
  transition: background 0.2s;
}

.why-item:hover { background: rgba(255,255,255,0.08); }

.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
}

.why-item h4 {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.why-item p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
}

.process-step {
  padding: 0 20px;
  text-align: center;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── AREAS ── */
.areas-section { background: var(--green-pale); }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.area-tag {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.15s;
}

.area-tag:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  padding: 64px 0;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: white;
  font-size: clamp(28px, 4vw, 44px);
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-top: 8px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 72px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding-bottom: 80px;
}

.page-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 40px 0;
}

.page-hero .eyebrow { color: var(--gold-light); margin-bottom: 14px; display: block; }
.page-hero h1 { color: white; margin-bottom: 18px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 600px; font-weight: 300; }

/* ── DETAIL SECTIONS (service pages) ── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.detail-grid.reverse { direction: rtl; }
.detail-grid.reverse > * { direction: ltr; }

.detail-img {
  border-radius: 12px;
  overflow: hidden;
  background: var(--green-pale);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.detail-img .img-placeholder {
  font-size: 80px;
  opacity: 0.3;
}

.detail-content .eyebrow { margin-bottom: 12px; display: block; }
.detail-content h2 { margin-bottom: 18px; }
.detail-content p { font-size: 15.5px; color: var(--muted); margin-bottom: 16px; line-height: 1.75; }

.check-list {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--body);
}

.check-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 18px; }
.contact-info p { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.75; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail .c-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail .c-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-detail .c-value {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
}

.contact-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 { margin-bottom: 6px; }
.contact-form-card .form-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: white;
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.stat-box {
  background: var(--green-pale);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}

.stat-box .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.stat-box .stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

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

.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
}

.team-avatar {
  width: 72px;
  height: 72px;
  background: var(--green-pale);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.team-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.team-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.footer-brand .logo-sub {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-phone {
  font-size: 20px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .detail-grid, .detail-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .nav-inner { padding: 0 20px; }
  .page-hero-inner { padding: 56px 20px 0; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.45s ease both; }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover { color: var(--green); }
.mobile-nav .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ── SVG ICONS ── */
[data-icon] svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-icon[data-icon] {
  color: var(--green);
  padding: 13px;
}
.service-icon[data-icon] svg { width: 26px; height: 26px; }

.trust-item .icon[data-icon] {
  color: rgba(255,255,255,0.9);
  padding: 7px;
}

.c-icon[data-icon] {
  color: var(--green);
  padding: 11px;
}

.check-list li svg {
  width: 13px;
  height: 13px;
}

.badge-icon {
  display: inline-flex;
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  margin-right: 5px;
  color: var(--gold-light);
}
.badge-icon svg { width: 15px; height: 15px; }

.btn svg { width: 16px; height: 16px; }

.nav-phone svg, .footer-phone svg {
  width: 16px; height: 16px;
  vertical-align: -3px;
  margin-right: 4px;
}
.footer-phone svg { width: 18px; height: 18px; }

.team-avatar[data-icon] {
  color: var(--green);
  padding: 20px;
}

/* check-list with svg instead of pseudo */
.check-list li.svg-check::before { display: none; }
.check-list li.svg-check {
  align-items: flex-start;
}
.check-list li.svg-check .li-icon {
  width: 20px; height: 20px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  padding: 4px;
}

/* ── DROPDOWN NAV ── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle .chevron {
  width: 14px; height: 14px;
  transition: transform 0.2s ease;
  margin-top: 1px;
}

.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  width: 340px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 100;
}

/* invisible bridge so hover doesn't drop */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 20px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  transition: background 0.14s ease;
}

.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--green-pale); }

.nav-dropdown-menu .dd-icon {
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  padding: 9px;
}
.nav-dropdown-menu a:hover .dd-icon { background: white; }
.nav-dropdown-menu .dd-icon svg { width: 22px; height: 22px; }

.nav-dropdown-menu .dd-text { display: flex; flex-direction: column; line-height: 1.3; }
.nav-dropdown-menu .dd-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.nav-dropdown-menu .dd-text small {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* Mobile services label */
.mobile-services-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 16px 0 6px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.mobile-sub {
  padding-left: 16px;
  font-size: 16px;
  color: var(--body);
}

/* ── GRAPHIC PANELS (replaces placeholder image boxes) ── */
.detail-img {
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green) 55%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.detail-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
}

.detail-img .img-placeholder {
  position: relative;
  z-index: 2;
  width: 110px !important;
  height: 110px !important;
  color: white !important;
  opacity: 0.95;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  padding: 28px;
  backdrop-filter: blur(4px);
}

.detail-img .panel-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
  color: white;
}
.detail-img .panel-label .pl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 6px;
}
.detail-img .panel-label .pl-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

.detail-img .panel-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

.detail-img .panel-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 40px;
}

/* ── DUAL-SERVICE BADGE (residential + commercial) ── */
.dual-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 18px 8px 10px;
  margin-bottom: 22px;
}
.dual-badge .db-pills {
  display: flex;
  gap: 6px;
}
.dual-badge .db-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: white;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 16px;
}
.dual-badge .db-pill svg { width: 13px; height: 13px; color: var(--green); }
.dual-badge .db-label {
  font-size: 12.5px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .detail-img { min-height: 300px; }
  .nav-dropdown-menu { display: none; }
}

/* Mobile dropdown open state */
@media (max-width: 900px) {
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    width: 100%;
  }
}

/* ── PHOTO PANELS (real images) ── */
.detail-img.has-photo {
  background: var(--green-dark);
}
.detail-img.has-photo img.panel-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.detail-img.has-photo::before {
  z-index: 1;
  background: linear-gradient(to top, rgba(15,25,20,0.88) 0%, rgba(15,25,20,0.35) 50%, rgba(15,25,20,0.45) 100%);
}
.detail-img.has-photo .panel-badge,
.detail-img.has-photo .panel-label { z-index: 3; }
.detail-img.has-photo .panel-center { display: none; }

/* Hero with photo */
.hero.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center/cover;
  opacity: 0.18;
  z-index: 1;
}
.hero.has-photo .hero-content { position: relative; z-index: 2; }

/* Service card images */
.service-card-img {
  width: calc(100% + 56px);
  height: 160px;
  margin: -36px -28px 20px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background: var(--green-pale);
}

/* Fallback when photo fails to load - keep panel looking clean */
.detail-img:not(.has-photo) .panel-label {
  position: absolute;
  bottom: 32px;
}

/* ── LOGO IMAGES ── */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .nav-logo-img { height: 42px; }
}

/* ── MEGA MENU (3-column services dropdown) ── */
.nav-dropdown-mega { position: static; }

.mega-menu {
  width: min(900px, calc(100vw - 80px));
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 24px;
}

.nav-dropdown-mega:hover .mega-menu {
  transform: translateX(-50%) translateY(0);
}

.mega-col { display: flex; flex-direction: column; }

.mega-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  padding: 8px 12px 10px;
  margin-bottom: 4px;
  border-bottom: 1.5px solid var(--green-pale);
}

.mega-head .mega-icon {
  width: 26px; height: 26px;
  background: var(--green-pale);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  padding: 5px;
}
.mega-head .mega-icon svg { width: 16px; height: 16px; }

.mega-col a {
  font-size: 13.5px;
  color: var(--body);
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
  font-weight: 400;
}
.mega-col a::after { display: none; }
.mega-col a:hover { background: var(--green-pale); color: var(--green); }

@media (max-width: 900px) {
  .mega-menu { display: none !important; }
}

/* ── COMBO LOGO (badge + text) ── */
.nav-logo-combo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-badge-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .nlt-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.01em;
}
.nav-logo-text .nlt-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 600px) {
  .nav-badge-img { height: 40px; width: 40px; }
  .nav-logo-text .nlt-main { font-size: 17px; }
  .nav-logo-text .nlt-sub { font-size: 9px; }
}
