:root {
  --primary: #176b4b;
  --primary-dark: #0b3d2a;
  --accent: #f5b301;
  --bg: #f7f7f7;
  --bg-light: #fafafa;
  --text: #222;
  --muted: #444;
  --radius: 8px;
  --accent-500: #f5b301;
  --transition: 0.3s ease;
}

/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* --- Custom Polished Scrollbar --- */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f7f7f7; /* matches your background */
  border-radius: var(--radius);
  box-shadow: inset 0 0 6px rgba(0,0,0,0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  border: 3px solid #f7f7f7; /* “padded” effect for thumb */
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-dark), var(--primary));
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  border-color: #fafafa;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-dark) #f7f7f7;
}


html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  font-size: 1.2rem;
}

a {
  color: var(--primary);
  text-decoration: none;
}


.container {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto;
}

/* Header */
.site-header {
  border-bottom: 1px solid #e3e3e3;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
}

.logo {
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--primary-dark);
  letter-spacing: 0.3px;
}

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


.tagline {
  margin: 0.2rem 0 0;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: var(--muted);
}

.header-cta {
  text-align: right;
}

.call-label {
  margin: 0;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: var(--muted);
}

.phone-link {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--primary-dark);
}

/* Navigation */
.main-nav {
  background-color: var(--bg-light);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(0.5rem, 2vw, 0.75rem) 0;
  margin: 0;
}

.main-nav a {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--muted);
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary-dark);
}


/* Hero */
.hero {
 background: linear-gradient(135deg, #00d084 0%, #3c8c5a 100%);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin-top: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #0b3d2a;
  line-height: 1.2;
  animation: heroFadeUp 0.8s ease-out both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #fff;
  max-width: 32rem;
  margin: 0.5rem 0 0;
  animation: heroFadeUp 0.8s ease-out both;
  animation-delay: 0.15s;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-top: 1.5rem;
  animation: heroFadeUp 0.8s ease-out both;
  animation-delay: 0.3s;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  border: 3px solid #0b3d2a;
   opacity: 0;
  transform: translateY(20px);
  animation: heroImageFade 0.9s ease-out 0.2s forwards;
  
}

@keyframes heroImageFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn:focus {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}


#gallery-heading {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.6rem, 2vw, 0.85rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}


.btn i {
  font-size: 1.1em;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(23,107,75,0.35);
}

.btn-secondary {
  background-color: #fff;
  color: var(--primary-dark);
  border: 1px solid var(--primary);
}

/* --- Buttons hover / focus --- */
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px) scale(1.02); /* same lift & scale for both */
  box-shadow: 0 12px 28px rgba(23,107,75,0.45); /* same hover shadow */
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--primary-dark);
}

/* Optional: secondary hover color (keeps white with dark text) */
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: #fff; /* stays white */
  color: var(--primary-dark); /* same as normal */
}



.btn-secondary {
  background-color: #fff;
  color: var(--primary-dark);
  border: 1px solid var(--primary);
}

/* Sections */
section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  animation: fadeUp 0.5s ease both;
}

/* =========================================
   SERVICE PAGE SECTION SYSTEM
========================================= */

.section-light {
  background-color: #ffffff;
}

.section-accent {
  background-color: #fff9e6;
}

.section-default {
  background-color: var(--bg);
}

/* Ensure full-width background but centered content */
.section-light,
.section-accent,
.section-default {
  padding: clamp(3rem, 6vw, 6rem) 0;
}


section:nth-of-type(even) {
  background-color: #fff9e6;
}



.section-intro {
  color: var(--muted);
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  text-align: center;
}

/* Trust / Services / Reviews Grid */
.trust-grid,
.services-grid,
.reviews-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.trust-grid,
.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 30%, 1fr), 1fr));
}

.trust-item,
.service-card,
.review {
  background-color: #fff;
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-item:hover,
.service-card:hover,
.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.trust-item h3,
.service-card h3,
.review blockquote {
  color: #222;
}

/* CTA Strip */
.cta-strip {
  background-color: var(--primary-dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2rem) 1rem;
  border-radius: var(--radius);
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 0;
}

.cta-strip > .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.cta-strip p,
.cta-strip a {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

/* Areas */
.areas-list {
  columns: 2;
  list-style: disc;
  padding-left: 1.25rem;
}

/* Quote / Form */
.quote-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: flex-start;
}

.quote-form {
  background-color: #fff;
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid #eee;
}

/* Form fields */
.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  margin-bottom: 0.25rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: clamp(0.5rem, 1.5vw, 0.6rem);
  border-radius: var(--radius);
  border: 1px solid #ccc;
  font: inherit;
}

.form-note {
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  color: var(--muted);
}

.form-success {
  margin-top: 0.75rem;
  font-size: clamp(0.85rem, 1.2vw, 0.9rem);
  color: var(--primary-dark);
}



/* ===== Gallery Grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); /* wider cards */
  gap: clamp(1.3rem, 2.3vw, 2.3rem);
  justify-content: center;
  
}

.gallery-item {
  position: relative;
  border: 4px solid #0b3d2a;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
    aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Caption overlay — REPLACE your old .gallery-item figcaption block */
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem;
  background: rgba(0,0,0,0.45);; /* solid color ensures full coverage */
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  text-align: center;
  box-sizing: border-box;
  line-height: 1.4;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; /* keep hover fade effect */
  transition: opacity 0.35s ease;
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Touch devices (mobile) */
@media (hover: none) {
  .gallery-item figcaption {
    opacity: 1;
    transform: none;
    position: absolute; /* MUST stay absolute */
  }
}

/* Gallery Hero */
.gallery-hero {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4rem);
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.gallery-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.gallery-hero p {
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.85;
}

/* ============================
   Gallery Mobile Fix
============================ */

@media (max-width: 550px) {

  .gallery-grid {
    grid-template-columns: 1fr; /* force single column */
    gap: 1.25rem;
  }


  .gallery-item img {
    height: auto;       /* let image scale naturally */
    max-height: 260px;  /* optional control */
  }

}


/* Filter Buttons */
.gallery-filter {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.filter-btn {
  background: none;
  border: 1px solid rgba(0,0,0,0.1);
  padding: clamp(0.6rem, 1.2vw, 0.8rem) clamp(1.2rem, 2vw, 1.6rem);
  margin: 0 0.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* CTA Section */
.gallery-cta {
  padding: clamp(3rem, 6vw, 4rem) 0;
  text-align: center;
  background: var(--primary);
  color: #fff;
}

.gallery-cta p {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.gallery-cta .btn {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  padding: clamp(0.7rem, 1.5vw, 0.9rem) clamp(1.2rem, 3vw, 1.6rem);
}




.back-to-top {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top:hover {
  opacity: 1;
  transform: translateY(-2px);
  text-decoration: underline;
}

/* --- HERO TRUST BANNER --- */
.hero-trust {
  background-color: #fff9e6; /* soft warm trust tone */
  color: #222;
  text-align: center;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  padding: clamp(0.5rem, 1vw, 0.75rem);
  border-top: 4px solid var(--accent);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
}

/* --- HERO SUBNOTE --- */
.hero-subnote {
  margin-top: 0.75rem;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}


/* --- REVIEWS STARS --- */
.review-stars {
  color:  #333333;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 0.5rem;
}

/* Improve contrast for review elements */

article.review {
  color: #222222; /* even darker for body text */
}

/* Optional: ensure links inside reviews are readable */
article.review a {
  color: #1a73e8; /* bright blue for links */
}


.review blockquote {
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1rem);
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
}

.review blockquote i {
  position: absolute;
  left: 0;
  top: -4px;
  color: var(--accent);
}

/* --- CTA STRIP TEXT & BUTTON --- */
.cta-strip p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
}


.cta-strip a.btn {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  padding: clamp(0.65rem, 1.5vw, 0.9rem) clamp(1.2rem, 3vw, 1.6rem);
  border-radius: calc(var(--radius) * 1.2);
}

/* --- FOOTER TRUST STRIP --- */
.footer-trust {
  background-color: #0b3d2a;
  color: #fff;
  text-align: center;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}



.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}


@font-face {
  font-family: 'YourFont';
  src: url('yourfont.woff2') format('woff2');
  font-display: swap;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-inner,
  .quote-inner {
    grid-template-columns: 1fr;
  }

  .main-nav ul {
    flex-wrap: wrap;
  }

  .areas-list {
    columns: 1;
  }

  .cta-strip > .container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-width: 180px;
  }
}


@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}


/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



a[href^="tel:"].btn-primary {
  background-color: var(--accent);
  color: #111;
}

a[href^="tel:"].btn-primary:hover {
  background-color: #e0a600;
}


/* Modal default hidden */
.modal {
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 2000;
  padding: 1rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  max-width: 70vw;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  transform: scale(0.95);
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  user-select: none;
}

#modalCaption {
  margin-top: 0.5rem;
  margin-left: 0.5rem;
  text-align: center;
  color: #fff;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.hero-accent-img {
  width: 60px;        /* small accent size */
  height: auto;
  vertical-align: middle;  /* aligns with text */
  margin-right: 10px;       /* space between image and text */
}
.hero-title {
  display: flex;
  align-items: flex-end;
  font-size: 2rem; /* adjust as needed */
  gap: 10px;       /* optional spacing between elements */
}

/* Hamburger button (right side) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 0.25rem;
  margin-left: 1rem; /* spacing from phone number */


}

/* Honeypot Hidden From View */
.hidden { display: none; }

/* 401px–501px: CTA hidden, header stays in one row */
@media (max-width: 501px) and (min-width: 401px) {
  .header-cta {
    display: none;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    gap: 0;
    position: relative;
  }

  .nav-toggle {
    position: absolute;
    right: 0;
    top: 0.25rem;
  }
}

/* ≤400px: CTA under branding, hamburger stays top-right */
@media (max-width: 400px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    
    gap: 0.25rem;
    position: relative;
  }

  .branding {
    order: 1;
    width: 100%;
  
  }

  .header-cta {
    display: block;
    order: 3;
    width: 100%;
    text-align: left;
    margin-top: 0;
  }

  .nav-toggle {
    order: 2;
    position: absolute;
    right: 0;
    top: 0.25rem;
    margin: 0;
  }
}

/* Prevent hamburger from touching logo on tiny screens */
@media (max-width: 400px) {
  .header-inner {
    padding-right: 2.5rem; /* reserve space for hamburger */
  }

  .nav-toggle {
    top: 0.6rem; /* visually aligns with logo */
    right: 0.25rem;
  }
}

@media (max-width: 350px) {
  .logo {
    font-size: 1.1rem;
  }
}

/* =========================================
   CLEAN MOBILE NAV FIX (FINAL)
========================================= */

/* Desktop default */
.main-nav {
  display: block;
}

/* Mobile only */
@media (max-width: 768px) {

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .hero-ctas {
    justify-content: center;
  }

  h2, h3, h4, .review, .hero-subtitle, #hero-heading, .hero-copy, .trust-item, article p {
    text-align: center;
    text-wrap: balance;
  }

  .services-grid, .hero-heading, .paragraph-centered, h1, #examples {
    text-align: center;
    text-wrap: pretty;
  }

  .hero-subtitle {
    margin: 0.5rem auto 0;
  }





}

@media (max-width: 600px) {
  .gallery-cta .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .gallery-cta .btn {
    width: 100%;
    max-width: 320px;
  }
 
}


.service-card {
  position: relative;
}

.service-card a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.breadcrumb-nav {
  background: #f7f7f7;
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.breadcrumb li::after {
  content: "›";
  margin-left: 0.5rem;
  color: #888;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  text-decoration: none;
  color: #176b4b;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* FAQ Container */
.service-faq {
  max-width: clamp(700px, 90vw, 900px);
  margin: clamp(2rem, 4vw, 3rem) auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 1.5rem);
}


/* FAQ Heading */
.service-faq h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary-dark);
}

/* FAQ Card */
.service-faq details {
  padding: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  border-radius: var(--radius);
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-faq details[open] {
  background: #f7f7f7;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* FIXED Summary Layout (No Clashing) */
.service-faq summary {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 600;
  cursor: pointer;
  list-style: none;

  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* aligns icon with first line */
  gap: clamp(0.75rem, 2vw, 1rem);
}

.service-faq summary::marker {
  display: none;
}

/* Plus / Minus Icon */
.service-faq summary::after {
  content: "+";
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}

.service-faq details[open] summary::after {
  content: "-";
}


/* Answer Text */
.service-faq p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.service-faq details:not(:last-child) {
  margin-bottom: 1rem;
}


/* Smooth Accordion Animation */

.service-faq .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.service-faq details[open] .faq-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.service-faq .faq-content > * {
  overflow: hidden;
}

/* ========== HERO ========== */

.gallery-hero {
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 4rem);
  text-align: center;
  background: var(--primary);
  color: #fff;
}

.gallery-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.gallery-hero p {
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.8;
}

/* ========== FILTER ========== */

.gallery-filter {
  padding: clamp(2rem, 4vw, 3rem) 0;
  text-align: center;
  background: var(--primary-light);
}

.filter-btn {
  background: none;
  border: 1px solid rgba(0,0,0,0.1);
  padding: clamp(0.6rem, 1.2vw, 0.8rem) clamp(1.2rem, 2vw, 1.6rem);
  margin: 0 0.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}


/* ========== CTA ========== */

.gallery-cta {
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  background: var(--primary);
  color: #fff;
}

/* ==============================
   TOUCH TARGETS / ACCESSIBILITY
============================== */

/* Service links / buttons */
.service-card a,
.services-grid a,
.main-nav a,
.footer-col a {
  display: inline-block; /* allow padding & min size */
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.25rem);
  min-height: 44px; /* WCAG minimum touch target height */
  min-width: 44px;  /* WCAG minimum touch target width */
  line-height: 1.4;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

/* Optional hover / focus feedback */
.service-card a:hover,
.services-grid a:hover,
.main-nav a:hover,
.footer-col a:hover,
.service-card a:focus-visible,
.services-grid a:focus-visible,
.main-nav a:focus-visible,
.footer-col a:focus-visible {
  background-color: rgba(23, 107, 75, 0.1); /* subtle feedback */
  transform: translateY(-1px);
  outline: none;
}

/* Spacing between multiple links in same container */
.services-grid a + a,
.service-card a + a,
.footer-col a + a {
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}


/* =========================================
   PREMIUM SEO FOOTER SYSTEM
========================================= */

.site-footer {
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
  color: #ddd;
  padding: clamp(3rem, 6vw, 4rem) 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.footer-col p {
  margin-bottom: 0.75rem;
  color: #bbb;
  line-height: 1.9;
  letter-spacing: 1.3px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #bbb;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}


.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

.footer-cta-inner {
  text-align: center;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}

.hero {
  position: relative;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35; /* subtle, not distracting */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo {
  width: 60px;  /* adjust as needed */
  height: auto;
  display: block;
  transform: scaleX(-1);

} 