:root {
  /* Brand colours */
  --navy: #1E4D6B;
  --green: #6BAE5C;
  --dark-green: #4F8A42;
  --blue: #3E7CB1;
  --cream: #FAF7F2;
  --mist-blue: #E8F2F8;
  --meadow: #ECF5E8;
  --white: #FFFFFF;
  --charcoal: #333333;
  --text: #333333;
  --muted: #6B6B6B;
  --border: #E5EAEF;

  /* Spacing scale */
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(30,77,107,0.05);
  --shadow: 0 8px 28px rgba(30,77,107,0.08);
  --shadow-lg: 0 18px 56px rgba(30,77,107,0.12);
  --shadow-xl: 0 32px 80px rgba(30,77,107,0.18);

  --max-width: 1200px;
  --gutter: 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; color: var(--navy); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--text); }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }

 }

.hero-eyebrow {
  display: inline-block;
  background: var(--white); color: var(--navy);
  padding: 0.45rem 1.05rem; border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
  font-family: 'Poppins', sans-serif;
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--navy); margin-bottom: 1.25rem; line-height: 1.1;
}
.hero-headline .accent { color: var(--green); }
.hero-subhead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text); margin-bottom: 2rem; max-width: 540px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.hero-badge {
  background: rgba(255,255,255,0.85);
  color: var(--navy);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  display: inline-flex; align-items: center; gap: 0.3rem;
  box-shadow: var(--shadow-sm);
}

.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  max-width: 520px;
  margin: 0 auto;
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(255, 255, 255, 0.97);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: 'Poppins', sans-serif; color: var(--navy);
}
.hero-photo-badge strong { display: block; color: var(--dark-green); font-size: 0.85rem; margin-bottom: 0.15rem; }

/* ---------- SECTIONS ---------- */
section { padding: 5rem 0; }
@media (max-width: 768px) { section { padding: 3.5rem 0; } }
.section-cream { background: var(--cream); }
.section-mist { background: var(--mist-blue); }
.section-meadow { background: var(--meadow); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2 { color: var(--white); }
.section-navy .lead { color: rgba(255,255,255,0.85); }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-eyebrow {
  display: inline-block; color: var(--green);
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.75rem;
}
.lead { font-size: 1.1rem; color: var(--muted); }

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
}
.trust-strip-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem; text-align: center;
}
@media (max-width: 900px) { .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (max-width: 480px) { .trust-strip-inner { grid-template-columns: 1fr; } }
.trust-strip-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.trust-strip-icon {
  width: 40px; height: 40px;
  background: var(--meadow);
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-green); font-size: 1.2rem;
}
.trust-strip-label { font-family: 'Poppins', sans-serif; color: var(--navy); font-size: 0.9rem; font-weight: 600; }

/* ---------- SERVICE CARDS ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.service-card-icon {
  width: 56px; height: 56px;
  background: var(--meadow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--dark-green);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.service-card:hover .service-card-icon {
  background: var(--green); color: var(--white);
}
.service-card.cleaning .service-card-icon { background: var(--mist-blue); color: var(--blue); }
.service-card.cleaning:hover .service-card-icon { background: var(--blue); color: var(--white); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1rem; }
.service-card a {
  font-weight: 600;
  color: var(--green);
  font-family: 'Poppins', sans-serif;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.service-card.cleaning a { color: var(--blue); }
.service-card a:hover { gap: 0.6rem; }

/* ---------- MMD FEATURED ---------- */
.mmd-feature {
  background: linear-gradient(135deg, var(--meadow) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 3rem; align-items: center;
}
@media (max-width: 900px) {
  .mmd-feature { grid-template-columns: 1fr; padding: 2.5rem; }
}
.mmd-feature .mmd-pill {
  display: inline-block; background: var(--green); color: var(--white);
  padding: 0.4rem 1rem; border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 600; font-family: 'Poppins', sans-serif;
  margin-bottom: 1.25rem;
}
.mmd-feature h2 { color: var(--navy); margin-bottom: 1rem; }
.mmd-feature p { color: var(--text); margin-bottom: 1rem; font-size: 1.05rem; }
.mmd-features-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem; margin: 1.5rem 0;
}
.mmd-feature-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.95rem; font-weight: 500;
}
.mmd-feature-item::before { content: '✓'; color: var(--green); font-weight: 700; }
.mmd-feature .mmd-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
}
.mmd-feature .mmd-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FEATURE GRID (Why us / Who we help / Trust) ---------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--white); padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.feature-card-icon {
  width: 52px; height: 52px; background: var(--meadow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--dark-green);
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--white); padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 0.5rem; left: 1.5rem;
  font-family: 'Poppins', serif; font-size: 4.5rem; line-height: 1;
  color: var(--green); opacity: 0.3;
}
.testimonial p { font-style: italic; color: var(--text); position: relative; z-index: 1; }
.testimonial-author {
  font-family: 'Poppins', sans-serif; color: var(--navy);
  font-weight: 600; margin-top: 1rem; font-style: normal;
}
.testimonial-stars { color: #D9A86C; margin-bottom: 0.75rem; }

/* ---------- AREAS ---------- */
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
@media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .areas-grid { grid-template-columns: 1fr; } }
.area-card {
  background: var(--white); padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.area-card:hover {
  transform: translateY(-2px); border-color: var(--green);
  box-shadow: var(--shadow);
}
.area-card-pin { color: var(--green); font-size: 1.2rem; }
.area-card h4 { color: var(--navy); margin: 0; }
.area-card p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ---------- CONTACT CTA ---------- */
.contact-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #163A50 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  margin: 2rem 0;
}
.contact-cta h2 { color: var(--white); }
.contact-cta p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.contact-cta .flex-center { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact-cta .btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.contact-cta .btn-secondary:hover { background: var(--white); color: var(--navy); }

/* ---------- FORMS ---------- */
.form-card {
  background: var(--white); padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 580px; margin: 0 auto;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-family: 'Poppins', sans-serif;
  font-weight: 600; color: var(--navy);
  margin-bottom: 0.4rem; font-size: 0.95rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 1rem;
  color: var(--text); background: var(--cream);
  transition: all 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--green);
  background: var(--white); box-shadow: 0 0 0 3px rgba(107,174,92,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; text-align: center; }
.form-consent { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.form-consent input { width: auto; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy); color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
}
footer h4 { color: var(--white); font-family: 'Poppins', sans-serif; margin-bottom: 1rem; font-size: 1.05rem; }
footer a { color: rgba(255,255,255,0.85); }
footer a:hover { color: var(--green); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 80px; width: auto; margin-bottom: 1rem; background: var(--white); border-radius: var(--radius); padding: 0.5rem; }
.footer-brand p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.footer-tagline { font-family: 'Poppins', sans-serif; font-style: italic; margin-top: 1rem; color: var(--green) !important; }
.footer-list { list-style: none; padding: 0; }
.footer-list li { padding: 0.3rem 0; font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.flex-center { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- PROSE PAGES ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { padding: 0.25rem 0; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem 1.75rem; margin-bottom: 0.85rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer; font-family: 'Poppins', sans-serif;
  font-weight: 600; color: var(--navy); font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--green); transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 1rem; margin-bottom: 0; color: var(--text); }

/* ---------- WAVE DIVIDER ---------- */
.wave-divider {
  display: block; width: 100%; height: 80px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'><path d='M0,40 Q300,10 600,40 T1200,40 L1200,80 L0,80 Z' fill='%23E8F2F8'/></svg>") center/cover;
}

/* ---------- SUCCESS MESSAGE ---------- */
.form-success { display: none; background: var(--meadow); padding: 1rem; border-radius: var(--radius); color: var(--dark-green); margin-top: 1rem; text-align: center; }


/* ============================================================
   V7 POLISH ADDITIONS
   ============================================================ */

/* ---------- FLOATING STICKY CTA ---------- */
.float-cta {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--green);
  color: white;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 12px 32px rgba(107,174,92,0.45);
  display: flex; align-items: center; gap: 0.5rem;
  z-index: 90;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid white;
}
.float-cta:hover {
  background: var(--dark-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(107,174,92,0.55);
}
.float-cta .float-cta-icon {
  width: 28px; height: 28px;
  background: white; color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .float-cta { bottom: 1rem; right: 1rem; padding: 0.7rem 1.2rem; font-size: 0.85rem; }
}

/* ---------- MOBILE BOTTOM CTA BAR (mobile only) ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 0.65rem;
  z-index: 95;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  gap: 0.5rem;
  justify-content: stretch;
}
.mobile-cta-bar a {
  flex: 1;
  padding: 0.85rem;
  border-radius: 999px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.mobile-cta-bar .mobile-cta-call {
  background: var(--navy); color: white;
}
.mobile-cta-bar .mobile-cta-quote {
  background: var(--green); color: white;
}
@media (max-width: 700px) {
  .mobile-cta-bar { display: flex; }
  .float-cta { display: none; }
  body { padding-bottom: 80px; }  /* space for mobile bar */
  footer { padding-bottom: 5rem; }
}

/* ---------- REVIEW WIDGET ---------- */
.review-widget {
  background: linear-gradient(135deg, var(--cream) 0%, var(--meadow) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
@media (max-width: 700px) {
  .review-widget { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
}
.review-widget-stars {
  font-size: 2.5rem;
  color: #D9A86C;
  letter-spacing: 0.1em;
  line-height: 1;
}
.review-widget-info h3 {
  margin: 0 0 0.25rem;
  color: var(--navy);
  font-size: 1.2rem;
}
.review-widget-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.review-widget-source {
  display: flex; align-items: center; gap: 0.5rem;
  background: white;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.review-widget-source .g-logo {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #4285F4 0%, #EA4335 25%, #FBBC05 50%, #34A853 75%, #4285F4 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.8rem;
}

/* ---------- HERO HEIGHT — make image taller on desktop ---------- */
.hero-photo-wrap {
  aspect-ratio: 4 / 5;
  max-height: 620px;
}

/* ---------- MOBILE GENERAL POLISH ---------- */
@media (max-width: 768px) {
  .nav-inner { padding: 0.7rem 1rem; }
  .nav-logo img { height: 44px; }
  .hero { padding: 2.5rem 0 3rem; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-subhead { font-size: 1rem; }
  .hero-ctas { width: 100%; flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-badges { justify-content: center; }
  .section-header { margin-bottom: 2rem; }
  .services-grid, .feature-grid, .testimonial-grid { gap: 1rem; }
  .service-card, .feature-card, .testimonial { padding: 1.5rem; }
  .mmd-feature { padding: 1.75rem; gap: 1.5rem; }
  .contact-cta { padding: 2.5rem 1.5rem; }
  .contact-cta .flex-center { flex-direction: column; }
  .contact-cta .btn { width: 100%; justify-content: center; }
  .footer-grid { gap: 1.5rem; }
  .footer-brand img { height: 60px; }
}

/* ---------- HIDE HERO BADGE ON MOBILE (already inside the photo) ---------- */
@media (max-width: 600px) {
  .hero-photo-badge { display: none; }
}

/* ---------- NAV — hide tel and portal on mobile when collapsed ---------- */
@media (max-width: 1000px) {
  .nav-links .nav-call, .nav-links .nav-portal { font-size: 1rem; }
}


/* ============================================================
   V8 BRAND PHOTOGRAPHY ADDITIONS
   ============================================================ */

/* ---------- HERO CAROUSEL ---------- */
.hero-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  max-width: 520px;
  margin: 0 auto;
}
.hero-carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
}
.hero-carousel-slide.active { opacity: 1; }

.hero-carousel-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(255, 255, 255, 0.97);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: 'Poppins', sans-serif; color: var(--navy);
  z-index: 2;
}
.hero-carousel-badge strong {
  display: block; color: var(--dark-green);
  font-size: 0.85rem; margin-bottom: 0.15rem;
}

.hero-carousel-dots {
  position: absolute; top: 1rem; right: 1rem;
  display: flex; gap: 0.4rem;
  z-index: 3;
}
.hero-carousel-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
  border: none; padding: 0;
}
.hero-carousel-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 999px;
}

/* ---------- PHOTO-LED SERVICE CARDS ---------- */
.photo-service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.photo-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green);
}
.photo-service-card-image {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.photo-service-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(30,77,107,0.4) 100%);
}
.photo-service-card-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.78rem;
  z-index: 2;
}
.photo-service-card-body { padding: 1.5rem 1.75rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.photo-service-card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.photo-service-card-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; flex: 1; }
.photo-service-card-body a {
  font-weight: 600; color: var(--green);
  font-family: 'Poppins', sans-serif;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.photo-service-card-body a:hover { gap: 0.6rem; }

/* ---------- AREAS MAP FEATURE ---------- */
.areas-map-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: white;
}
.areas-map-feature img {
  width: 100%; height: auto; display: block;
}

/* ---------- TEAM CARDS WITH PHOTOS ---------- */
.team-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.3s;
}
.team-photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo-card img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,77,107,0.95) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
  color: white;
}
.team-photo-card-overlay h3 { color: white; margin: 0 0 0.25rem; font-size: 1.05rem; }
.team-photo-card-overlay p { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin: 0; }


/* ============================================================
   V9 — NAVIGATION FIX (single row, no wrapping, new logo)
   ============================================================ */

/* Hide the old nav inline styles that caused wrapping */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* Logo on the left */
.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Links in the middle — single row, never wrap */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-links li { display: inline-flex; align-items: center; }
.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

/* Phone number — keep on one line, navy */
.nav-call {
  color: var(--navy) !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem !important;
}

/* Portal link — smaller, muted */
.nav-portal {
  color: var(--muted) !important;
  font-size: 0.85rem !important;
  border-left: 1px solid var(--border);
  padding-left: 1rem;
}

/* CTA button — never wrap */
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap !important;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(107,174,92,0.25);
}
.nav-cta:hover {
  background: var(--dark-green);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(107,174,92,0.4);
}

/* Toggle (hamburger) — hidden by default */
.nav-toggle {
  display: none;
  background: none; border: none;
  font-size: 1.6rem; cursor: pointer;
  color: var(--navy);
}

/* ---------- BREAKPOINTS ---------- */
/* At medium-large screens, slightly tighter spacing */
@media (max-width: 1200px) {
  .nav-links { gap: 1.15rem; }
  .nav-links a { font-size: 0.9rem; }
  .nav-call { font-size: 0.85rem !important; }
}

/* At tablet/laptop sizes — collapse to hamburger early
   to avoid any chance of wrapping with the new wider horizontal logo */
@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem; gap: 0.85rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    align-items: stretch;
    text-align: left;
  }
  .nav-links.open { display: flex; }
  .nav-links li { display: block; width: 100%; }
  .nav-links a { padding: 0.6rem 0; width: 100%; display: block; font-size: 1rem; }
  .nav-portal { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 0.5rem; }
  .nav-cta { display: inline-block; width: auto; text-align: center; align-self: flex-start; }
}

/* On smaller mobile, the logo shrinks */
@media (max-width: 600px) {
  .nav-logo img { height: 42px; }
  .nav-inner { padding: 0.6rem 1rem; }
}


/* ============================================================
   V10 — LANDSCAPE HERO (full-width, photo background, text overlay)
   ============================================================ */

.hero {
  position: relative;
  min-height: 540px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero { min-height: 460px; }
}
@media (max-width: 480px) {
  .hero { min-height: 420px; }
}

/* Dark gradient overlay for text readability */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    115deg,
    rgba(15, 31, 42, 0.88) 0%,
    rgba(30, 77, 107, 0.78) 40%,
    rgba(30, 77, 107, 0.45) 75%,
    rgba(30, 77, 107, 0.25) 100%
  );
  z-index: 1;
}

.hero .container,
.hero .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

/* Single-column text content — left aligned */
.hero-grid {
  display: block;
  max-width: 720px;
}
.hero-grid > div {
  max-width: 720px;
}

/* Hide the previous photo wrap entirely — heros are now background images */
.hero-photo-wrap,
.hero-carousel {
  display: none !important;
}

/* Text styling — light on dark background */
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-headline .accent { color: var(--green); }

.hero-subhead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Hero badges — frosted glass look */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  display: inline-flex; align-items: center; gap: 0.3rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-trust {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Buttons over hero — secondary button needs white edge */
.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .btn-secondary:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}

/* ----- HOMEPAGE CAROUSEL — now full-width background slides ----- */
.hero-bg-carousel {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-bg-slide.active { opacity: 1; }

.hero-bg-dots {
  position: absolute; bottom: 1.5rem; right: 2rem;
  display: flex; gap: 0.5rem;
  z-index: 3;
}
.hero-bg-dot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  border: none; padding: 0;
  transition: all 0.3s;
}
.hero-bg-dot.active {
  background: white;
  width: 30px;
  border-radius: 999px;
}
