/* ============================================================
   ISLAND SCAPE NORTH SHORE — Website Stylesheet
   Designer: Kai | Built for Owner Preview
   ============================================================ */

/* Google Fonts loaded via <link> tags in HTML <head> for performance — see each HTML file */

/* ---- Variables ---- */
:root {
  --green: #00785C;
  --dark-green: #005A44;
  --deep-green: #003D2E;
  --light-green: #e6f4f0;
  --black: #0a0a0a;
  --white: #FFFFFF;
  --sand: #E8E4DE;
  --sand-dark: #d8d3cc;
  --gray: #555555;
  --light-gray: #f8f7f6;
  --radius: 4px;
  --shadow: 0 2px 8px rgba(0,61,46,0.07), 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 16px rgba(0,61,46,0.09), 0 12px 48px rgba(0,0,0,0.13);
  --transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Accessibility Utilities ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Montserrat', sans-serif; color: var(--black); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
  border-radius: 1px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 560px; line-height: 1.75; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--dark-green); border-color: var(--dark-green); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,61,46,0.15), 0 8px 24px rgba(0,120,92,0.25); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--green); }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: #222; transform: translateY(-1px); }
.btn-lg { padding: 18px 40px; font-size: 14px; }

.btn-white { background: var(--white); color: var(--green); border-color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.btn-white:hover { background: var(--sand); border-color: var(--sand); }

/* ---- Photo Placeholder ---- */
.photo-placeholder {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 50%, #009972 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.04) 20px,
    rgba(255,255,255,0.04) 40px
  );
}
.photo-placeholder span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 1;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 82px; height: 82px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark img {
  width: 82px; height: 82px;
  object-fit: contain;
}
.nav-logo-divider {
  width: 1.5px;
  height: 46px;
  background: rgba(0,0,0,0.18);
  margin: 0 8px;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: center;
}
.nav-logo-text .line1 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
}
.nav-logo-text .line2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--green); }
.nav-links a.active::after { width: 100%; }
.nav-links a:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; border-radius: 2px; }
.nav-toggle { display: none; }
.nav-cta { margin-left: 8px; padding: 16px 28px; font-size: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--deep-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,18,12,0.58), rgba(0,18,12,0.58)),
    url('../images/highlights/hero_banner.jpg') center/cover no-repeat;
}
@media (max-width: 640px) {
  .hero-photo-bg::after {
    background:
      linear-gradient(rgba(0,18,12,0.52), rgba(0,18,12,0.52)),
      url('../images/highlights/DSC02263.jpg') center top/cover no-repeat;
  }
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.4);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before { content: '★'; color: #FFD700; }
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero-title span { color: #F5D58A; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.gradient-word {
  background: linear-gradient(135deg, #C9A84C 0%, #F5D58A 50%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.08em 0.05em 0;
  display: block;
  margin-top: 0.15em;
}
.hero-scroll {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--black);
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-item .icon { display:flex; align-items:center; color: var(--accent); }
.trust-item .icon svg { width:15px; height:15px; stroke-width:2.25; }
.trust-divider { width: 1px; height: 28px; background: rgba(201,168,76,0.3); }

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { box-shadow: 0 4px 16px rgba(0,120,92,0.10), 0 12px 40px rgba(0,120,92,0.12); transform: translateY(-5px); border-color: transparent; transition: transform 0.35s var(--spring), box-shadow 0.35s ease, border-color 0.25s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--light-green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
}
.service-icon svg { width:26px; height:26px; stroke-width:1.75; }
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--black);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   SERVICE PLANS
   ============================================================ */
.plans-section { background: var(--sand); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: center;
  perspective: 1400px;
}
.plan-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease;
}
/* Side cards — identical size and angle */
.plan-card:first-child { transform: rotateY(5deg) scale(0.97) !important; }
.plan-card:last-child  { transform: rotateY(-5deg) scale(0.97) !important; }
/* Both side cards pop the same amount on hover */
.plan-card:first-child:hover,
.plan-card:last-child:hover {
  transform: rotateY(0deg) translateZ(10px) scale(1.02) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
}
/* Featured card — elevated at rest */
.plan-card.featured {
  background: var(--green);
  color: var(--white);
  transform: translateZ(22px) scale(1.04) !important;
  box-shadow: 0 16px 44px rgba(0,120,92,0.38), 0 6px 16px rgba(0,0,0,0.14);
  z-index: 2;
  position: relative;
}
.plan-card.featured:hover {
  transform: translateZ(32px) scale(1.05) !important;
  box-shadow: 0 20px 52px rgba(0,120,92,0.42), 0 8px 20px rgba(0,0,0,0.16) !important;
}
.plan-badge {
  background: #FFD700;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}
.plan-header { padding: 32px 28px 24px; text-align: center; }
.plan-name {
  font-size: 1.9rem;
  margin-bottom: 10px;
}
.plan-tagline {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.6;
}
.plan-price {
  padding: 0 28px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.plan-card.featured .plan-price { border-color: rgba(255,255,255,0.2); }
.plan-price-from { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; }
.plan-price-amount { font-family: 'Oswald', sans-serif; font-size: 3rem; font-weight: 700; line-height: 1; margin: 4px 0 2px; }
.plan-price-amount sup { font-size: 1.4rem; vertical-align: top; margin-top: 8px; }
.plan-price-period { font-size: 11px; opacity: 0.6; font-weight: 500; }
.plan-features { padding: 24px 28px 32px; }
.plan-features ul { display: flex; flex-direction: column; gap: 12px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.plan-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-card.featured .plan-features li::before { color: #F5D58A; }
.plan-cta { padding: 0 28px 32px; }
.plan-cta .btn { width: 100%; justify-content: center; }

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4px;
  height: 300px;
  margin-top: 64px;
}
.photo-strip-item { height: 100%; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--light-gray); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.review-stars { color: #FFD700; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text { font-size: 0.95rem; line-height: 1.75; color: var(--black); margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.review-name { font-weight: 700; font-size: 0.9rem; }
.review-date { font-size: 0.8rem; color: var(--gray); }
.review-source {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--light-green);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--deep-green), var(--green));
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { margin-bottom: 20px; }
.footer-logo .line1 { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); }
.footer-logo .line2 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-top: 2px; }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a svg { width:17px; height:17px; stroke-width:1.75; }
.footer-social a:hover { background: var(--green); border-color: var(--green); color: white; transform: translateY(-2px); transition: transform 0.3s var(--spring), background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
.footer-social a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.footer-social a:active { transform: scale(0.95); }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 4px; }
.footer-col li a, .footer-col li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-col li a:hover { color: var(--green); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact-item .icon { color: var(--green); flex-shrink: 0; margin-top: 2px; display:flex; }
.footer-contact-item .icon svg { width:15px; height:15px; stroke-width:2; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--deep-green), var(--green));
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(3rem, 5.5vw, 4.5rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.services-detail-grid.reverse { direction: rtl; }
.services-detail-grid.reverse > * { direction: ltr; }
.service-detail-photo { height: 360px; border-radius: 12px; overflow: hidden; }
.service-detail-photo.photo-matched { filter: saturate(1.18) contrast(1.07) brightness(1.03); }
.service-detail-text h2 { font-size: 2rem; margin-bottom: 16px; }
.service-detail-text p { color: var(--gray); line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  background: var(--light-green);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.about-photo { height: 500px; border-radius: 12px; overflow: hidden; }
.about-text .section-title { text-align: left; }
.about-text p { color: var(--gray); line-height: 1.85; font-size: 0.95rem; margin-bottom: 20px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat-item { text-align: center; background: var(--sand); padding: 28px 16px; border-radius: 8px; }
.stat-number { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-top: 6px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { padding: 32px 24px; background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; text-align: center; }
.value-icon { display:flex; align-items:center; justify-content:center; margin-bottom:16px; color:var(--green); }
.value-icon svg { width:34px; height:34px; stroke-width:1.5; }
.value-card h3 { font-size: 1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-grid { max-width: 760px; margin: 56px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green); }
.faq-question:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-icon { background: var(--green); color: white; transform: rotate(45deg); }

/* ============================================================
   ESTIMATE FORM PAGE
   ============================================================ */
.estimate-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.estimate-info h2 { font-size: 1.8rem; margin-bottom: 16px; }
.estimate-info p { color: var(--gray); line-height: 1.8; font-size: 0.95rem; margin-bottom: 32px; }
.estimate-perks { display: flex; flex-direction: column; gap: 16px; }
.estimate-perk { display: flex; align-items: flex-start; gap: 14px; }
.perk-icon {
  width: 40px; height: 40px;
  background: var(--light-green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.perk-icon svg { width:20px; height:20px; stroke-width:2; }
.perk-text strong { font-size: 0.9rem; display: block; margin-bottom: 3px; }
.perk-text span { font-size: 0.83rem; color: var(--gray); }
.estimate-form-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,120,92,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 14px; }
.form-note { text-align: center; font-size: 11px; color: var(--gray); margin-top: 12px; }

/* ============================================================
   WORK / GALLERY PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.gallery-item { border-radius: 8px; overflow: hidden; }
.gallery-item:nth-child(4n+1) { grid-column: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-item .photo-placeholder { height: 280px; }
.gallery-item:nth-child(4n+1) .photo-placeholder { height: 320px; }
.gallery-item-label {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: none;
  font-size: 0.83rem;
  color: var(--gray);
  font-weight: 500;
}

/* ============================================================
   GOOGLE REVIEWS CAROUSEL
   ============================================================ */
.google-reviews-section { background: var(--light-gray); }

.google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.google-reviews-header-left { display: flex; flex-direction: column; gap: 4px; }
.google-overall {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  background: var(--white);
  border-radius: 12px;
  padding: 20px 28px;
  box-shadow: var(--shadow);
  width: fit-content;
}
.google-overall-score {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.google-overall-right { display: flex; flex-direction: column; gap: 4px; }
.google-stars-row { display: flex; gap: 3px; }
.google-star {
  width: 20px; height: 20px;
  color: #FFD700;
  font-size: 18px;
}
.google-review-count { font-size: 12px; color: var(--gray); font-weight: 500; }
.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.google-badge-g {
  width: 28px; height: 28px;
  background: white;
  border: 1px solid #dadce0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}
.google-badge-g span { background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.google-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 4px;
  padding: 12px 20px;
  transition: var(--transition);
  text-decoration: none;
}
.google-view-all:hover { background: var(--green); color: white; }

/* Carousel */
.reviews-carousel-wrap { position: relative; overflow: hidden; }
.reviews-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.grev-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.grev-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.grev-author { display: flex; align-items: center; gap: 12px; }
.grev-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}
.grev-name { font-weight: 700; font-size: 0.9rem; line-height: 1.2; }
.grev-date { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }
.grev-google-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  opacity: 0.7;
  font-size: 14px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.grev-stars { color: #FFD700; font-size: 15px; letter-spacing: 2px; }
.grev-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #333;
  flex: 1;
}
.grev-text.truncated {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 3D Coverflow Carousel */
.reviews-carousel-wrap {
  perspective: 1400px;
  overflow: visible;
  padding: 40px 0 20px;
}
.reviews-carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 340px;
  transform-style: preserve-3d;
}
.grev-card {
  position: absolute;
  width: 360px;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  transform-style: preserve-3d;
  user-select: none;
}
.grev-card.pos-active {
  transform: translateX(0) scale(1.06) rotateY(0deg) translateZ(60px);
  opacity: 1;
  z-index: 5;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.grev-card.pos-prev {
  transform: translateX(-340px) scale(0.84) rotateY(32deg) translateZ(-20px);
  opacity: 0.55;
  z-index: 3;
}
.grev-card.pos-next {
  transform: translateX(340px) scale(0.84) rotateY(-32deg) translateZ(-20px);
  opacity: 0.55;
  z-index: 3;
}
.grev-card.pos-far-prev {
  transform: translateX(-560px) scale(0.68) rotateY(45deg) translateZ(-60px);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.grev-card.pos-far-next {
  transform: translateX(560px) scale(0.68) rotateY(-45deg) translateZ(-60px);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.grev-card.pos-hidden {
  transform: translateX(0) scale(0.5) rotateY(0deg);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 10;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12);
  background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
  color: var(--black);
  position: relative;
  z-index: 10;
}
.carousel-btn:hover { border-color: var(--green); color: var(--green); background: var(--light-green); }
.carousel-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.carousel-btn:active { transform: scale(0.95); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; perspective: none; }
  .plan-card:first-child,
  .plan-card:last-child,
  .plan-card:first-child:hover,
  .plan-card:last-child:hover { transform: none; box-shadow: var(--shadow); }
  .plan-card.featured,
  .plan-card.featured:hover { transform: none; box-shadow: var(--shadow-lg); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-detail-grid, .about-hero-grid, .estimate-grid { grid-template-columns: 1fr; }
  .services-detail-grid.reverse { direction: ltr; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .photo-strip-item { height: 180px; }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; }
  .gallery-item-wide { grid-column: span 1; }
  .gallery-item .photo-placeholder, .gallery-item:nth-child(4n+1) .photo-placeholder { height: 220px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 640px) {
  /* ---- Navigation ---- */
  .nav-inner { height: 64px; padding: 0 16px; }
  .nav-logo-mark { width: 52px; height: 52px; }
  .nav-logo-mark img { width: 52px; height: 52px; }
  .nav-logo-divider { height: 32px; margin: 0 6px; }
  .nav-logo-text .line1 { font-size: 18px; }
  .nav-logo-text .line2 { font-size: 9px; }
  .nav-links { display: none; }
  /* top: 64px matches the reduced mobile nav height */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: white;
    padding: 20px 24px 28px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    z-index: 999;
    gap: 20px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open a { font-size: 1rem; }
  /* Hide the dropdown submenu inside mobile nav — all items listed at top level */
  .nav-dropdown-menu { display: none !important; }
  .nav-dropdown > a::before { display: none; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s ease; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-cta { display: none; }

  /* ---- Layout ---- */
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 48px 0; }

  /* ---- Hero ---- */
  .hero { padding-top: 64px; }
  .hero-title { font-size: 3rem; line-height: 1.05; }
  .hero-sub { font-size: 0.95rem; line-height: 1.65; }
  .hero-badge { font-size: 9px; padding: 6px 14px; }
  .hero-scroll { bottom: 160px; }

  /* ---- Trust bar ---- */
  .trust-bar-inner { gap: 20px; }
  .trust-divider { display: none; }

  /* ---- Services grid (homepage) ---- */
  .services-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .service-card { padding: 24px 20px; }

  /* ---- Process Steps ---- */
  .process-steps { gap: 36px; margin-top: 40px; }
  .process-step { padding: 0 8px; }
  .process-step p { max-width: 100%; }

  /* ---- Photo Strip ---- */
  .photo-strip { grid-template-columns: 1fr 1fr; height: auto; margin-top: 0; }
  .photo-strip-item { height: 150px; }

  /* ---- Plans grid ---- */
  .plans-grid { max-width: 100%; }

  /* ---- Impact band ---- */
  .impact-band { padding: 56px 0; }
  .impact-grid { gap: 20px; }
  .impact-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 20px;
  }
  .impact-item:nth-child(even) { border-left: none; }
  .impact-item:nth-child(3),
  .impact-item:nth-child(4) { border-bottom: none; padding-bottom: 0; }
  .impact-num { font-size: 2.8rem; }

  /* ---- Mini impact band (About page) ---- */
  .mini-impact-band { padding: 40px 0; }
  .mini-impact-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mini-impact-item { border-right: none; padding-bottom: 0; }

  /* ---- Google Reviews Carousel ---- */
  /* Replace 3D coverflow with simple single-card flat display on mobile */
  .reviews-carousel-wrap {
    perspective: none;
    overflow: visible;
    padding: 16px 0 8px;
  }
  .reviews-carousel-track {
    display: block;
    position: relative;
    height: auto;
    transform-style: flat;
  }
  /* Hide all cards by default; JS pos classes control visibility */
  .grev-card {
    position: relative;
    width: 100%;
    display: none;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: var(--shadow);
    margin: 0;
  }
  .grev-card.pos-active {
    display: flex;
    transform: none !important;
    opacity: 1 !important;
    z-index: 1;
  }
  /* Side/far/hidden cards invisible on mobile */
  .grev-card.pos-prev,
  .grev-card.pos-next,
  .grev-card.pos-far-prev,
  .grev-card.pos-far-next,
  .grev-card.pos-hidden {
    display: none !important;
  }
  .carousel-controls { margin-top: 24px; }

  /* ---- Google reviews header ---- */
  .google-reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }
  .google-overall {
    width: 100%;
    padding: 16px 20px;
    gap: 14px;
  }
  .google-overall-score { font-size: 2.8rem; }
  .google-view-all { align-self: flex-start; }

  /* ---- CTA Banner ---- */
  .cta-banner { padding: 64px 0; }
  .cta-banner h2 { font-size: 2.4rem; }
  .cta-banner p { font-size: 0.95rem; }

  /* ---- Footer ---- */
  .footer { padding: 56px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 20px 0;
  }
  .footer-contact-item span { word-break: break-word; }

  /* ---- Page Hero (inner pages) ---- */
  .page-hero { padding: 104px 0 56px; }
  .page-hero h1 { font-size: 3rem; }

  /* ---- Services page — detail grid ---- */
  .service-detail-photo { height: 240px; }
  .service-detail-text h2 { font-size: 1.6rem; }
  .service-tags { gap: 6px; }

  /* ---- About page ---- */
  .about-photo { height: 280px; }
  .about-stats { grid-template-columns: 1fr; }
  .values-grid { gap: 16px; }
  .value-card { padding: 24px 20px; }

  /* ---- FAQ ---- */
  .faq-grid { margin-top: 32px; }
  .faq-question {
    font-size: 0.95rem;
    padding: 18px 0;
    gap: 12px;
  }
  .faq-answer-inner { font-size: 0.9rem; }

  /* ---- Estimate page ---- */
  .estimate-grid { gap: 40px; }
  .estimate-info h2 { font-size: 1.5rem; }
  .estimate-form-card { border-radius: 8px; }

  /* ---- Gallery / Work page ---- */
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  /* Override any hardcoded span-2 columns */
  .gallery-item { grid-column: span 1 !important; }
  .gallery-item .photo-placeholder,
  .gallery-item:nth-child(4n+1) .photo-placeholder { height: 220px; }

  /* ---- Misc ---- */
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 2.2rem; }
  .section-sub { font-size: 0.93rem; }
  body.has-float-cta { padding-bottom: 72px; }

  /* Prevent any section from causing horizontal scroll */
  .section, .section-navy, .impact-band, .mini-impact-band,
  .cta-banner, .plans-section, .footer, .page-hero,
  .google-reviews-section { overflow-x: hidden; }
}

/* ============================================================
   MONSTERA DECORATIONS
   ============================================================ */
.monstera-deco {
  position: absolute;
  pointer-events: none;
  display: block;
  height: auto;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   FLOATING MOBILE CTA
   ============================================================ */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--green);
  padding: 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.float-cta.visible { transform: translateY(0); }
.float-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 24px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
@media (max-width: 640px) {
  .float-cta { display: block; }
}

/* ============================================================
   TRUST BAR — TICKER ON MOBILE
   ============================================================ */
.trust-ticker-only { display: none; }

@media (max-width: 640px) {
  .trust-ticker-only { display: flex; }
  .trust-bar { overflow: hidden; }
  .trust-bar-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0;
    gap: 24px;
    animation: ticker 20s linear infinite;
    width: max-content;
  }
  /* Prevent items from shrinking so the ticker loop is seamless */
  .trust-bar-inner .trust-item,
  .trust-bar-inner .trust-divider {
    flex-shrink: 0;
  }
  @keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

/* ============================================================
   ENHANCED BUTTON RIPPLE
   ============================================================ */
.btn { position: relative; overflow: hidden; }
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   SERVICE CARD POLISH
   ============================================================ */
.service-card .service-icon {
  transition: transform 0.3s var(--spring), color 0.3s ease, background-color 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
  color: var(--accent);
  background: rgba(201,168,76,0.12);
}
a.service-card { text-decoration: none; color: inherit; display: block; }

/* ============================================================
   PLAN CARD SHIMMER (featured)
   ============================================================ */
.plan-card.featured {
  position: relative;
  overflow: hidden;
}
.plan-card.featured::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-20deg);
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -75%; }
  60%, 100% { left: 125%; }
}

/* ============================================================
   HERO FLOATING PARTICLES
   ============================================================ */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: float-particle linear infinite;
  pointer-events: none;
}
@keyframes float-particle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ============================================================
   SECTION WAVE DIVIDERS
   ============================================================ */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* ============================================================
   COUNTER ANIMATION
   ============================================================ */
.stat-number[data-target] {
  transition: none;
}

/* ============================================================
   SMOOTH IMAGE HOVER ZOOM
   ============================================================ */
.photo-strip-item {
  overflow: hidden;
  cursor: pointer;
}
.photo-strip-item .photo-placeholder,
.photo-strip-item img {
  transition: transform 0.5s ease;
}
.photo-strip-item:hover .photo-placeholder,
.photo-strip-item:hover img {
  transform: scale(1.05);
}

/* ============================================================
   NAV PROGRESS BAR
   ============================================================ */
.nav-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--accent));
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--dark-green);
  transform: translateY(-3px);
  transition: transform 0.3s var(--spring), background-color 0.2s ease;
}
.back-to-top:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.back-to-top:active { transform: scale(0.94); }
@media (max-width: 640px) {
  .back-to-top { bottom: 88px; right: 20px; }
}

/* ============================================================
   V2 DESIGN SYSTEM — Inspired by bold agency aesthetics
   ============================================================ */

/* --- Additional Variables --- */
:root {
  --navy: #002B20;
  --accent: #C9A84C;
}

/* --- Gradient Primary Button --- */
.btn-gradient {
  background: var(--accent);
  color: var(--deep-green);
  border-color: var(--accent);
  font-weight: 800;
}
.btn-gradient:hover {
  background: #b8943d;
  border-color: #b8943d;
  color: var(--deep-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.55), 0 0 0 1px rgba(201,168,76,0.2);
}

/* --- Dark Navy Section --- */
.section-navy {
  background:
    radial-gradient(ellipse at 10% 50%, rgba(0,120,92,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(201,168,76,0.06) 0%, transparent 40%),
    var(--navy);
  color: white;
  padding: 64px 0;
}
.section-navy .section-label { color: var(--accent); }
.section-navy .section-title { color: white; }
.section-navy .section-sub { color: rgba(255,255,255,0.6); }

/* --- Process Steps (How It Works) --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
  align-items: start;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 44px);
  right: calc(16.67% + 44px);
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.5), rgba(0,120,92,0.5));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.process-steps.animated::before {
  transform: scaleX(1);
}
.process-step {
  text-align: center;
  padding: 0 24px;
}
.process-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #00C896);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 10px rgba(201,168,76,0.15), 0 8px 24px rgba(0,0,0,0.2);
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.55s var(--spring), opacity 0.35s ease;
}
.process-steps.animated .process-step:nth-child(1) .process-step-num {
  opacity: 1; transform: scale(1);
  transition-delay: 0.25s;
}
.process-steps.animated .process-step:nth-child(2) .process-step-num {
  opacity: 1; transform: scale(1);
  transition-delay: 0.65s;
}
.process-steps.animated .process-step:nth-child(3) .process-step-num {
  opacity: 1; transform: scale(1);
  transition-delay: 1.05s;
}
/* Step content fades up sequentially */
.process-step h3,
.process-step p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.process-steps.animated .process-step:nth-child(1) h3,
.process-steps.animated .process-step:nth-child(1) p {
  opacity: 1; transform: translateY(0);
}
.process-steps.animated .process-step:nth-child(2) h3,
.process-steps.animated .process-step:nth-child(2) p {
  opacity: 1; transform: translateY(0);
}
.process-steps.animated .process-step:nth-child(3) h3,
.process-steps.animated .process-step:nth-child(3) p {
  opacity: 1; transform: translateY(0);
}
.process-steps.animated .process-step:nth-child(1) h3 { transition-delay: 0.45s; }
.process-steps.animated .process-step:nth-child(1) p  { transition-delay: 0.55s; }
.process-steps.animated .process-step:nth-child(2) h3 { transition-delay: 0.85s; }
.process-steps.animated .process-step:nth-child(2) p  { transition-delay: 0.95s; }
.process-steps.animated .process-step:nth-child(3) h3 { transition-delay: 1.25s; }
.process-steps.animated .process-step:nth-child(3) p  { transition-delay: 1.35s; }
.process-step h3 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  max-width: 240px;
  margin: 0 auto;
}

/* --- Impact Band (By The Numbers) --- */
.impact-band {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(0,120,92,0.12) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, #0a2a1e 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.impact-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(0,200,150,0.02) 50px, rgba(0,200,150,0.02) 51px);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.impact-item {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.impact-item:last-child { border-right: none; }
.impact-item::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 1px;
}
.impact-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.impact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* --- V2 Hero Display Text --- */
.hero-display {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.88;
  color: white;
  margin-bottom: 28px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.25);
}
.hero-display .gradient-word {
  background: linear-gradient(135deg, #F5D58A, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* --- Service card v2: gradient top border --- */
.service-card.v2-card {
  border-top: 3px solid var(--green);
  transition: border-top-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card.v2-card:hover {
  border-top-color: var(--accent);
}
.service-card.v2-card::before { display: none; }

/* --- Before/After Proof Cards --- */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.proof-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.proof-card-img {
  height: 280px;
  position: relative;
}
.proof-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  z-index: 2;
}
.proof-badge.before { background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); }
.proof-badge.after  { background: var(--accent); color: var(--navy); }
.proof-card-caption {
  background: white;
  padding: 20px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  border-top: none;
}
.proof-card-caption strong { font-size: 0.95rem; display: block; margin-bottom: 4px; }
.proof-card-caption span { font-size: 0.8rem; color: var(--gray); }

/* --- Responsive v2 additions --- */
@media (max-width: 968px) {
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .process-steps::before { display: none; }
  /* On mobile, stagger the delays tighter since steps stack vertically */
  .process-steps.animated .process-step:nth-child(2) .process-step-num { transition-delay: 0.3s; }
  .process-steps.animated .process-step:nth-child(3) .process-step-num { transition-delay: 0.55s; }
  .process-steps.animated .process-step:nth-child(2) h3 { transition-delay: 0.45s; }
  .process-steps.animated .process-step:nth-child(2) p  { transition-delay: 0.55s; }
  .process-steps.animated .process-step:nth-child(3) h3 { transition-delay: 0.7s; }
  .process-steps.animated .process-step:nth-child(3) p  { transition-delay: 0.8s; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .impact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 32px; }
  .impact-item:nth-child(3), .impact-item:nth-child(4) { border-bottom: none; }
  .proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-display { font-size: 2.8rem; }
  /* impact-grid 2-col layout already set in main 640px block above */
}

/* ============================================================
   SERVICES DROPDOWN
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { display: none; }
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown > a::before {
  content: "";
  order: 2;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.6;
  transition: transform 0.2s;
}
.nav-dropdown:hover > a::before { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: white;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  padding: 8px 0;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 500;
  border-top: 3px solid var(--green);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover {
  background: var(--light-green);
  color: var(--green);
  padding-left: 28px;
}

/* ============================================================
   INTERIOR PAGE ENHANCEMENTS — v2 Gold
   ============================================================ */

/* About — stat numbers gold */
.stat-number { color: var(--accent); }

/* About — stat card hover lift */
.stat-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); transition: var(--transition); }

/* About — value card gold hover */
.value-card { transition: transform 0.3s var(--spring), box-shadow 0.3s ease, border-color 0.25s ease; }
.value-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* FAQ — gold open state */
.faq-item.open .faq-icon { background: var(--accent); color: var(--deep-green); }
.faq-item.open .faq-question { color: var(--accent); }

/* Services — gold service tag hover */
.service-tag { transition: background 0.2s, color 0.2s; cursor: default; }
.service-detail-text:hover .service-tag { background: rgba(201,168,76,0.1); color: var(--accent); border: 1px solid rgba(201,168,76,0.3); }

/* Work — gallery item hover lift */
.gallery-item { transition: var(--transition); }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Work — gallery photo overlay on hover */
.gallery-item:hover .photo-placeholder { position: relative; }
.gallery-item:hover .photo-placeholder::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35)); }

/* ============================================================
   BEFORE & AFTER SHOWCASE CAROUSEL (wheel style)
   ============================================================ */
.ba-section {
  background: var(--sand);
  padding: 80px 0 100px;
}
.ba-section .section-title { color: var(--deep-green); }
.ba-section .section-label { color: var(--green); letter-spacing: 0.12em; }
.ba-section .section-header p { color: var(--gray); }

.ba-showcase-wrap {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin: 0 -32px;
}
.ba-showcase-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.ba-card {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 48px rgba(0,0,0,0.45);
}
.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.15) contrast(1.05);
  pointer-events: none;
}
.ba-card.pos-active {
  width: 620px; height: 460px;
  z-index: 5;
  opacity: 1;
  transform: translate(-50%, -50%);
  cursor: default;
  box-shadow: 0 24px 72px rgba(0,0,0,0.6);
}
.ba-card.pos-prev {
  width: 360px; height: 300px;
  z-index: 3; opacity: 0.6;
  transform: translate(calc(-50% - 500px), -50%);
  cursor: pointer;
}
.ba-card.pos-next {
  width: 360px; height: 300px;
  z-index: 3; opacity: 0.6;
  transform: translate(calc(-50% + 500px), -50%);
  cursor: pointer;
}
.ba-card.pos-far-prev {
  width: 220px; height: 200px;
  z-index: 1; opacity: 0.25;
  transform: translate(calc(-50% - 740px), -50%);
  cursor: pointer;
}
.ba-card.pos-far-next {
  width: 220px; height: 200px;
  z-index: 1; opacity: 0.25;
  transform: translate(calc(-50% + 740px), -50%);
  cursor: pointer;
}
.ba-card.pos-hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%) scale(0.4);
}
.ba-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.ba-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: white;
  color: var(--green);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.ba-btn:hover { background: var(--green); color: white; }
.ba-dots-row {
  display: flex;
  gap: 6px;
  align-items: center;
}
.ba-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,61,46,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}
.ba-dot.active {
  background: #C9A84C;
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 968px) {
  .ba-showcase-wrap { height: 400px; margin: 0 -16px; }
  .ba-card.pos-active { width: 460px; height: 340px; }
  .ba-card.pos-prev { width: 260px; height: 220px; transform: translate(calc(-50% - 370px), -50%); }
  .ba-card.pos-next { width: 260px; height: 220px; transform: translate(calc(-50% + 370px), -50%); }
  .ba-card.pos-far-prev, .ba-card.pos-far-next { opacity: 0; pointer-events: none; }
}
@media (max-width: 640px) {
  .ba-showcase-wrap { height: 74vw; margin: 0 -16px; }
  .ba-card.pos-active { width: 88vw; height: 70vw; }
  .ba-card.pos-prev { width: 60vw; height: 50vw; transform: translate(calc(-50% - 72vw), -50%); opacity: 0.4; }
  .ba-card.pos-next { width: 60vw; height: 50vw; transform: translate(calc(-50% + 72vw), -50%); opacity: 0.4; }
  .ba-card.pos-far-prev, .ba-card.pos-far-next { opacity: 0; pointer-events: none; }
  .ba-nav { gap: 10px; padding: 0 12px; box-sizing: border-box; width: 100%; }
  .ba-btn { width: 36px; height: 36px; font-size: 15px; flex-shrink: 0; }
  .ba-dots-row { flex-wrap: wrap; justify-content: center; max-width: calc(100vw - 120px); gap: 5px; }
}


/* ============================================================
   INTERIOR PAGE REFINEMENTS
   ============================================================ */

/* Revert service tag hover to original green — no gold */
.service-detail-text:hover .service-tag {
  background: var(--light-green);
  color: var(--green);
  border: none;
}

/* Mini impact band for About stats */
.mini-impact-band {
  background: linear-gradient(135deg, var(--navy) 0%, #001a13 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.mini-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.mini-impact-item {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.mini-impact-item:last-child { border-right: none; }
.mini-impact-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.mini-impact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* FAQ compact impact band */
.impact-band.compact .impact-num {
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.impact-band.compact {
  padding: 48px 0;
}

@media (max-width: 968px) {
  .mini-impact-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .mini-impact-item { border-right: none; padding-bottom: 16px; }
}

/* Value card icon — green to gold on hover */
.value-card .value-icon {
  transition: color 0.3s ease, background 0.3s ease;
  width: 56px; height: 56px;
  background: var(--light-green);
  border-radius: 12px;
  margin: 0 auto 16px;
}
.value-card:hover .value-icon {
  color: var(--accent);
  background: rgba(201,168,76,0.12);
}

/* ============================================================
   JOBBER EMBED OVERRIDES
   Controls outer wrapper + button color — form fields
   are inside an iframe and cannot be styled
   ============================================================ */

/* Remove extra padding from card since Jobber handles its own spacing */
.estimate-form-card {
  padding: 0;
  overflow: hidden;
}

/* Make Jobber's inline container fill the card */
.jobber-inline-work-request {
  max-width: 100% !important;
  margin: 0 !important;
}

/* Match Jobber's iframe to the card */
iframe.jobber-work-request {
  max-width: 100% !important;
  border-radius: 12px !important;
}

/* Override Jobber's lime green button → Island Green */
.jobber-button--green {
  background-color: var(--green) !important;
  font-family: 'Montserrat', sans-serif !important;
}
.jobber-button--green:hover,
.jobber-button--green:focus {
  background-color: var(--dark-green) !important;
}
.jobber-button--green:active {
  background-color: var(--deep-green) !important;
}
.jobber-button:focus {
  box-shadow: 0 0 4px 1px rgba(0,120,92,0.4) !important;
}

/* Error/flash message — soften to match site palette */
.jobber-flash {
  font-family: 'Montserrat', sans-serif !important;
  border-radius: 8px !important;
}

/* ============================================================
   MOBILE BUTTON CENTERING
   ============================================================ */
@media (max-width: 640px) {
  .service-detail-text,
  .about-text,
  .plan-cta { text-align: center; }

  .service-detail-text .btn,
  .about-text .btn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 320px;
  }

  .service-tags { justify-content: center; }

  .cta-banner-actions,
  .hero-actions { flex-direction: column; align-items: center; }

  .cta-banner-actions .btn,
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Estimate page phone link overflow fix */
  .estimate-info a[href^="tel"] {
    font-size: 1.3rem;
    word-break: break-word;
  }

  /* Trusted by grid on about page */
  .trusted-by-grid { grid-template-columns: 1fr 1fr !important; }

  /* FAQ bottom button group */
  .faq-grid + div .btn { min-height: 48px; }
}

/* ============================================================
   HERO LEAF ANIMATIONS — homepage hero only
   ============================================================ */
@keyframes leafFloat1 {
  0%   { transform: rotate(var(--leaf-rot)) translateY(0px) translateX(0px); }
  30%  { transform: rotate(calc(var(--leaf-rot) + 4deg)) translateY(-22px) translateX(8px); }
  65%  { transform: rotate(calc(var(--leaf-rot) - 3deg)) translateY(-10px) translateX(-7px); }
  100% { transform: rotate(var(--leaf-rot)) translateY(0px) translateX(0px); }
}
@keyframes leafFloat2 {
  0%   { transform: rotate(var(--leaf-rot)) translateY(0px) translateX(0px); }
  40%  { transform: rotate(calc(var(--leaf-rot) - 4deg)) translateY(-18px) translateX(-10px); }
  70%  { transform: rotate(calc(var(--leaf-rot) + 3deg)) translateY(-26px) translateX(7px); }
  100% { transform: rotate(var(--leaf-rot)) translateY(0px) translateX(0px); }
}
@keyframes leafFloat3 {
  0%   { transform: rotate(var(--leaf-rot)) translateY(0px) translateX(0px); }
  25%  { transform: rotate(calc(var(--leaf-rot) + 5deg)) translateY(-16px) translateX(9px); }
  55%  { transform: rotate(calc(var(--leaf-rot) - 4deg)) translateY(-24px) translateX(-8px); }
  80%  { transform: rotate(calc(var(--leaf-rot) + 3deg)) translateY(-10px) translateX(5px); }
  100% { transform: rotate(var(--leaf-rot)) translateY(0px) translateX(0px); }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-leaf { animation: none !important; }
}

/* ============================================================
   HERO LEAF — RESPONSIVE SIZING & POSITIONING
   Sizes use clamp() so they scale proportionally at any viewport
   ============================================================ */
.leaf-1 { width: clamp(80px,  13vw, 200px); top: -20px;  left: -30px;  }
.leaf-2 { width: clamp(180px, 30vw, 440px); top: -60px;  right: -80px; }
.leaf-3 { width: clamp(110px, 19vw, 280px); bottom: 40px; left: -60px; }
.leaf-4 { width: clamp(70px,  12vw, 170px); top: 28%;    left: 10%;    }
.leaf-5 { width: clamp(45px,  8vw,  110px); top: 15%;    left: 38%;    }
.leaf-6 { width: clamp(80px,  14vw, 200px); bottom: 20%; right: 8%;    }
.leaf-7 { width: clamp(55px,  9vw,  130px); top: 55%;    right: 25%;   }
.leaf-8 { width: clamp(30px,  6vw,   80px); bottom: 30%; left: 30%;    }
.leaf-9 { width: clamp(130px, 22vw, 320px); bottom: -40px; right: 35%; }

/* Mobile — 8 leaves, spread across the full banner */
@media (max-width: 640px) {
  .leaf-9 { display: none; }
  .leaf-1 { width: 46vw; top: -10px;   left: -16px;  }
  .leaf-2 { width: 56vw; top: -16px;   right: -16px; }
  .leaf-3 { width: 52vw; bottom: 10px; left: -16px;  }
  .leaf-4 { width: 20vw; top: 38%;     left: 6%;     }
  .leaf-5 { width: 16vw; top: 10%;     left: 40%;    }
  .leaf-6 { width: 24vw; bottom: 22%;  right: 4%;    }
  .leaf-7 { width: 18vw; top: 58%;     right: 18%;   }
  .leaf-8 { width: 12vw; top: 28%;     right: 8%;    }
}

/* ============================================================
   LOCATION PAGES
   ============================================================ */
.loc-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.loc-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--light-green);
  border-radius: 8px;
}
.loc-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}
.loc-stat-label {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 4px;
}
.loc-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.loc-services-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--black);
}
.loc-cta-btns {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 640px) {
  .loc-stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .loc-services-list { grid-template-columns: 1fr; }
  .loc-cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
}

