:root {
  --earthy-bg: #ffffff;
  --earthy-light-green: var(--earthy-forest);
  --earthy-green: #588157;
  --earthy-deep-green: #3a5a40;
  --earthy-forest: #344e41;
  --info-light: #f3f4ed;
  --logo-navy: #292f3b;
  --white: #ffffff;
}

/* GENERAL STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--logo-navy);
  background-color: var(--earthy-bg);
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

a {
  color: var(--info-light);
  text-decoration: underline;
}
a:hover,
a:focus {
  color: var(--logo-navy);
}

/* CONTACT PAGE LINK TREATMENT ON GREEN BACKGROUND */
.contact-inner a {
  color: var(--logo-navy);
  text-decoration: underline;
}
.contact-inner a:hover,
.contact-inner a:focus {
  color: var(--logo-navy);
}

/* ==== NAVIGATION LINKS: LOGO NAVY ==== */
.main-nav a,
.nav-link {
  color: var(--logo-navy);
  text-decoration: underline;
}
.main-nav a {
  font-size: 0.9rem;
}
.main-nav a:hover,
.nav-link:hover {
  color: var(--logo-navy);
}

/* HEADER / TOP STRIP */
.top-strip {
  background-color: var(--earthy-forest);
  color: var(--white);
  font-size: 0.82rem;
  position: relative;
  z-index: 2000;
}

.top-strip-inner {
  display: flex;
  justify-content: flex-end;
  gap: 1.75rem;
  padding: 0.45rem 0;
}

.top-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.95;
}

.top-strip-phone {
  font-weight: 600;
  pointer-events: auto;
}

.site-header {
  background-color: var(--earthy-bg);
  box-shadow: 0 1px 0 rgba(52, 81, 87, 0.04);
  position: relative; /* ensure mobile nav can layer above content */
  z-index: 40;
  height: 115px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  gap: 1rem;
  position: relative;
}

.logo img {
  max-height: 110px;
  width: auto;
  display: block;
}


/* NAVIGATION STRUCTURE */
.main-nav {
  flex: 1;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2.25rem;
}

.nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--earthy-green);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* MENU TOGGLE DEFAULT (DESKTOP HIDDEN) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.3rem;
  cursor: pointer;
  color: var(--logo-navy);
}

/* MOBILE NAV CONTAINER (HIDDEN BY DEFAULT, SHOWN VIA MEDIA QUERY) */
#mobileMenu {
  display: none;
}

/* MOBILE MENU BUTTON (HIDDEN ON DESKTOP) */
#mobileMenuButton {
  display: none;
  background: none;
  border: none;
  padding: 0.3rem;
  cursor: pointer;
  color: var(--logo-navy);
  font-size: 24px;
  line-height: 1;
}

/* Ensure button content is never hidden */
#mobileMenuButton span {
  color: inherit;
  font-size: inherit;
  display: inline-block;
  line-height: 1;
  text-indent: 0;
  opacity: 1;
  visibility: visible;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--earthy-deep-green);
  border-color: var(--earthy-deep-green);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(88, 129, 87, 0.16);
}

.btn-primary:hover {
  background-color: var(--earthy-deep-green);
  border-color: var(--earthy-deep-green);
  transform: translateY(-1px);
}

.header-cta {
  background-color: #4F7F5A;
  border-color: #4F7F5A;
}

.header-cta:hover {
  background-color: #4A7554;
  border-color: #4A7554;
}

.about-cta {
  background-color: #4F7F5A;
  border-color: #4F7F5A;
}

.about-cta:hover {
  background-color: #4A7554;
  border-color: #4A7554;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--earthy-light-green);
  color: var(--logo-navy);
}

.btn-outline:hover {
  background-color: var(--earthy-light-green);
}

/* SECTIONS WITH EARTHY BACKGROUND - ALL TEXT IS LOGO NAVY */
.hero {
  color: var(--white);
}
.process,
.services,
.projects,
.about,
.testimonials {
  color: var(--logo-navy);
}
.hero h1 {
  color: var(--white);
}
.process h2,
.services h2,
.projects h2,
.about h2,
.testimonials h2 {
  color: var(--logo-navy);
}
.hero p {
  color: var(--white);
}
.process p,
.services p,
.projects p,
.about p,
.testimonials p {
  color: var(--logo-navy);
}
.hero-subtext {
  color: var(--white);
}
.process-header p,
.services-header p,
.projects-header p,
.about-content p,
.testimonials-header p,
.testimonial-location {
  color: var(--logo-navy);
}

/* STILL ALLOW ACCENTS WHERE DESIRED */
.testimonial-location {
  color: var(--white);
}

/* HERO SECTION */
.hero {
  padding: 4rem 0 4.5rem;
  background-color: var(--earthy-light-green);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 3rem;
  align-items: center;
}
.hero-content {
  padding-right: 2rem;
}
.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.3rem;
  line-height: 1.2;
  margin: 0 0 1.1rem;
}
.hero-content p {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
}
.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

/* Hero section link styles - white text on dark green background */
.hero a {
  color: #ffffff;
}

.hero a:hover,
.hero a:focus {
  color: var(--logo-navy);
}

/* Hero button backgrounds - match step badge green */
.hero .btn-primary {
  background-color: #4F7F5A;
  border-color: #4F7F5A;
  color: var(--white);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus {
  background-color: #4A7554;
  border-color: #4A7554;
  color: var(--logo-navy);
}

.hero .btn-outline {
  background-color: #4F7F5A;
  border-color: #4F7F5A;
  color: var(--white);
}

.hero .btn-outline:hover,
.hero .btn-outline:focus {
  background-color: #4A7554;
  border-color: #4A7554;
  color: var(--logo-navy);
}
.hero-image {
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(52, 81, 87, 0.22);
  max-width: 620px;
  width: 100%;
  object-fit: cover;
  background-color: var(--earthy-bg);
}

/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: none;
  height: 360px;              /* fixed hero height */
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(52, 81, 87, 0.22);
  background-color: var(--earthy-bg);
}

/* Hide the radio buttons */
.hero-carousel input[type="radio"] {
  display: none;
}

/* Slides wrapper: 3 panels side by side */
.hero-slides {
  display: flex;
  width: 300%;                /* track = 3 × slide width */
  height: 100%;
  transition: transform 0.5s ease;
}

/* Each slide: one third of the track */
.hero-slide {
  width: 33.3333%;
  flex-shrink: 0;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;          /* use 'contain' if you prefer no cropping */
}

/* Navigation dots */
.hero-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.hero-dots label {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

/* Slide positions */
#hero-slide-1:checked ~ .hero-slides {
  transform: translateX(0%);
}

#hero-slide-2:checked ~ .hero-slides {
  transform: translateX(-33.3333%);
}

#hero-slide-3:checked ~ .hero-slides {
  transform: translateX(-66.6667%);
}

/* Highlight active dot */
#hero-slide-1:checked ~ .hero-dots label:nth-child(1),
#hero-slide-2:checked ~ .hero-dots label:nth-child(2),
#hero-slide-3:checked ~ .hero-dots label:nth-child(3) {
  background-color: rgba(255, 255, 255, 1);
  width: 12px;
  height: 12px;
}

/* PROCESS SECTION */
.process {
  background-color: var(--earthy-bg);
  border-top: 1px solid var(--earthy-green);
  padding: 3.5rem 0 4rem;
}
.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.9rem;
}
.process-card {
  background-color: var(--earthy-light-green);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem 1.6rem;
  box-shadow: 0 10px 25px rgba(88, 129, 87, 0.06);
}
.process-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.step-badge {
  width: 32px;
  height: 32px;
  background-color: #4F7F5B;
  color: var(--white);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.process-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  margin-bottom: 0.6rem;
}
.process-card p {
  font-size: 0.92rem;
}

/* SERVICES */
.services {
  padding: 40px 0;
  background-color: var(--earthy-bg);
}
.services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}
.service-card {
  background-color: var(--earthy-light-green);
  border-radius: 1rem;
  padding: 1.7rem 1.4rem 1.6rem;
  box-shadow: 0 10px 24px rgba(88, 129, 87, 0.06);
  text-align: left;
}
.service-icon {
  font-size: 1.5rem;
  color: var(--earthy-green);
  margin-bottom: 0.7rem;
}
.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  margin: 0 0 0.4rem;
}
.service-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* PROJECTS */
.projects {
  padding: 4rem 0 4.5rem;
  background-color: var(--earthy-bg);
}
.projects-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}
.project-card {
  background-color: var(--earthy-light-green);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(88, 129, 87, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(58, 90, 64, 0.16);
}
.project-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.project-info {
  padding: 1.1rem 1.2rem 1.25rem;
}
.project-info h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  margin: 0 0 0.4rem;
}
.project-info p {
  margin: 0;
  font-size: 0.9rem;
}

/* TESTIMONIALS */
.testimonials {
  padding: 4rem 0 4.5rem;
  background-color: var(--earthy-bg);
}
.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}
.testimonial-card {
  background-color: var(--earthy-light-green);
  border-radius: 1rem;
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: 0 10px 24px rgba(88, 129, 87, 0.06);
  color: var(--white);
}
.testimonial-quote i {
  color: var(--white);
  font-size: 1.2rem;
}
.testimonial-card p {
  margin: 0;
  font-size: 0.94rem;
}
.testimonial-meta {
  margin-top: 0.3rem;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

/* ABOUT */
.about {
  padding: 4rem 0 4.5rem;
  background-color: var(--earthy-bg);
}
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.about-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.9rem;
  margin-bottom: 1rem;
}
.about-content p {
  font-size: 0.98rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}
.about-image {
  border-radius: 1rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 18px 40px rgba(52, 81, 87, 0.2);
  object-fit: cover;
  background-color: var(--earthy-bg);
}

/* FOOTER */
.footer {
  background-color: var(--earthy-forest);
  color: var(--white);
  padding-top: 3rem;
  border-top: 1px solid var(--earthy-deep-green);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr) minmax(0, 0.9fr);
  gap: 3rem;
  padding-bottom: 2.5rem;
}
.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.92rem;
  color: var(--white);
  max-width: 320px;
  line-height: 1.5;
}
.footer-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--white);
  margin-top: 0.75rem;
}
.footer-nav h4,
.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-family: "Montserrat", sans-serif;
  color: var(--white);
}
.footer-nav a,
.footer-contact a {
  color: var(--white);
  text-decoration: underline;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--logo-navy);
}
.footer-nav li,
.footer-contact li {
  color: var(--white);
}
.footer-contact i {
  margin-right: 0.45rem;
  color: var(--earthy-green);
}
.footer-bottom {
  background-color: var(--earthy-forest);
  padding: 0.9rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--white);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-image,
  .hero-carousel {
    order: -1;
  }
  .process-steps,
  .services-grid,
  .projects-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Increase vertical spacing for top strip on mobile to prevent clipping */
  .top-strip-inner {
    padding: 0.65rem 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
  }

  .top-strip-item {
    line-height: 1.4;
    min-height: 1.4em;
  }

  /* Ensure header is positioned for absolute children */
  .site-header {
    position: relative;
  }

  .main-nav {
    display: none; /* hide desktop nav list on small screens */
  }

  /* Mobile menu button - visible and positioned top-right */
  #mobileMenuButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    z-index: 10000;
    position: relative;
  }

  /* Mobile menu dropdown - hidden by default */
  #mobileMenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--earthy-bg);
    box-shadow: 0 10px 24px rgba(88, 129, 87, 0.12);
    padding: 1rem 1.5rem;
    z-index: 9999; /* appear above hero/image */
  }

  #mobileMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  /* Show mobile menu when is-open class is applied */
  #mobileMenu.is-open {
    display: block !important;
  }

  /* Mobile menu links - visible and readable */
  #mobileMenu a,
  #mobileMenu .nav-link {
    display: block;
    color: var(--logo-navy);
    padding: 0.75rem 1rem;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
  }

  #mobileMenu a:hover,
  #mobileMenu .nav-link:hover {
    background-color: var(--earthy-light-green);
    text-decoration: none;
  }

  .header-cta {
    display: none;
  }
  
  /* Hide generic menu-toggle class, but allow #mobileMenuButton to show */
  .menu-toggle:not(#mobileMenuButton) {
    display: none;
  }
  /* Hero layout: keep grid-based but stack to one column */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Reduce hero heading size for better mobile wrapping */
  .hero-content h1 {
    font-size: clamp(1.75rem, 5vw, 2rem);
    line-height: 1.2;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* Prevent horizontal overflow in hero content */
  .hero-content {
    min-width: 0;
    max-width: 100%;
  }

  /* Ensure hero carousel/image doesn't overflow */
  .hero-carousel {
    max-width: 100%;
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .process-steps,
  .services-grid,
  .projects-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* CONTACT FORM STYLES */
.contact-form {
  max-width: 520px;
  width: 100%;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid var(--earthy-deep-green);
  font: inherit;
  background-color: var(--earthy-bg);
  color: var(--logo-navy);
  box-sizing: border-box;
}
.contact-form textarea {
  resize: vertical;
}

/* OPTIONAL: ensure desktop header-cta visible again */
@media (min-width: 769px) {
  .header-cta {
    display: inline-flex;
  }
} 

/* Card text color overrides for dark green backgrounds */
.process-card h3,
.service-card h3,
.project-card .project-info h3,
.testimonial-card h3 {
  color: var(--white);
}

.process-card p,
.service-card p,
.project-card .project-info p,
.testimonial-card p {
  color: var(--white);
}

/* Contact page text color overrides for dark green background */
.contact-inner {
  color: var(--white);
}

.contact-inner a {
  color: var(--white);
}

.contact-inner a:hover {
  color: var(--logo-navy);
}

/* Contact form section on home page */
.contact-form-section {
  padding: 4rem 0;
  background-color: var(--earthy-bg);
}

.contact-form-section .contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form-section .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-section .form-group:last-of-type {
  margin-bottom: 2rem;
}

.contact-form-section .hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* Project link styling - remove default link appearance */
.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Gallery section styles */
.gallery {
  padding: 4rem 0 4.5rem;
  background-color: var(--earthy-bg);
}

.gallery-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.gallery-item {
  background-color: var(--earthy-light-green);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(88, 129, 87, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Responsive gallery grid */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* TEAM GRID */
.team-section h2 {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.team-photo {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f0f4f0 0%, #e8ede8 100%);
  border: 1px solid rgba(88, 129, 87, 0.2);
  border-radius: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

 
/** 
  HERO SECTION BUTTON STYLES — ENSURE BOTH BUTTONS ARE FILLED GREEN W/ WHITE TEXT
  This targets the main hero buttons only; no global overrides.
*/
.hero-actions .btn,
.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  background-color: #4F7F5A;
  color: var(--white);
  border-color: #4F7F5A;
  outline: none;
}

.hero-actions .btn:hover,
.hero-actions .btn-primary:hover,
.hero-actions .btn-secondary:hover {
  background-color: #4A7554;
  border-color: #4A7554;
  color: var(--logo-navy);
}

/* Remove any border or outline styles from hero .btn-secondary just in case */
.hero-actions .btn-secondary {
  border-color: #4F7F5A !important;
  background-color: #4F7F5A !important;
  color: var(--white) !important;
  outline: none !important;
}

.video-break {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  max-height: 360px;
}

.video-break video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-overlay h2 {
  position: absolute;
  bottom: 15%;
  color: #ffffff;
  font-size: 2.1rem;
  text-align: center;
  opacity: 0.85;
}

#hero > div > div.contact-form-wrapper > form > button {
  margin-top: 16px;
}

div[data-netlify-recaptcha="true"] {
  margin-bottom: 16px;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  padding: 24px;
}

.lightbox-overlay.is-open { display: flex; }

.lightbox-overlay img {
  max-width: 95vw;
  max-height: 90vh;
  width: auto;
  height: auto;
}

#services {
  height: auto;
}
