/* ============================================================
   Sandy Electrical — Shared Stylesheet
   Brand: Sandy Gold #9b8033 | Sandy Navy #003654
   Fonts: Gill Sans MT (fallback: Gill Sans, Calibri, sans-serif)
   ============================================================ */

:root {
  --gold:    #9b8033;
  --navy:    #003654;
  --gold-light: #b8972e;
  --navy-light: #004f7a;
  --white:   #ffffff;
  --off-white: #f7f6f2;
  --grey-light: #e8e6e0;
  --grey-text: #555555;
  --body-font: 'Gill Sans MT', 'Gill Sans', Calibri, Arial, sans-serif;
  --max-width: 1100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.7;
  color: #222;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--body-font);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }
ul { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); color: var(--white); box-shadow: 0 6px 16px rgba(155,128,51,0.35); }
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.btn-secondary:hover { background: var(--navy-light); color: var(--white); box-shadow: 0 6px 16px rgba(0,54,84,0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.4rem 0;
  text-align: right;
}
.top-bar a { color: var(--gold); font-weight: 700; }
.top-bar .container { display: flex; justify-content: flex-end; gap: 1.5rem; align-items: center; }

/* ── Header / Nav ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.1;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-tagline {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav { display: flex; align-items: center; gap: 1.5rem; }
nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--white) !important; }

/* ── Hamburger (mobile) ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: 0.3s; }
.nav-open nav { display: flex; }

/* ── Hero ── */
.hero {
  background: var(--navy) url('images/hero-truck.jpg') center 30%/cover no-repeat;
  color: var(--white);
  padding: 5.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,32,52,0.93) 0%, rgba(0,54,84,0.86) 55%, rgba(0,79,122,0.82) 100%);
}
.hero .container { position: relative; z-index: 1; max-width: 780px; animation: heroFadeUp 0.7s ease-out; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero .container { animation: none; } }
.hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.hero p  { font-size: 1.15rem; opacity: 0.9; margin-bottom: 1.75rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.badge.gold { background: var(--gold); border-color: var(--gold); }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ── Section spacing ── */
section { padding: 3.5rem 1.25rem; }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { color: var(--navy); }
.section-title p { color: var(--grey-text); max-width: 620px; margin: 0.5rem auto 0; }
.bg-offwhite { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy p { color: var(--white); }

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-top: 4px solid var(--gold);
  border-radius: 6px;
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); }
.service-card h3 { color: var(--navy); }
.service-card p { color: var(--grey-text); font-size: 0.95rem; }
.service-card .learn-more {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}
.service-card .learn-more:hover { color: var(--gold-light); }

/* ── Trust strip ── */
.trust-strip {
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.25rem;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.trust-item strong { font-size: 1.4rem; }
.trust-item span { font-size: 0.82rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Areas grid ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.area-tag {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-left: 3px solid var(--gold);
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  text-align: center;
}
.area-tag a { color: var(--navy); }
.area-tag a:hover { color: var(--gold); }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.5rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.95rem; color: #333; font-style: italic; }
.testimonial-author { margin-top: 0.75rem; font-size: 0.85rem; font-weight: 700; color: var(--navy); }

/* ── Testimonial carousel (js/reviews.js) ── */
.testimonial-carousel {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  min-height: 200px;
}
.testimonial-track { position: relative; }
.testimonial-slide {
  display: none;
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  box-shadow: 0 3px 16px rgba(0,0,0,0.08);
  text-align: center;
  animation: testimonialFade 0.4s ease;
}
.testimonial-slide.is-active { display: block; }
@keyframes testimonialFade { from { opacity: 0; } to { opacity: 1; } }
.testimonial-slide .stars { justify-content: center; display: flex; margin: 0 auto 0.75rem; }
.testimonial-slide p { font-size: 1.05rem; color: #333; font-style: italic; }
.testimonial-slide .testimonial-author { margin-top: 1rem; font-size: 0.9rem; }
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--grey-light);
  color: var(--navy);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.2s, color 0.2s;
}
.testimonial-arrow:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.testimonial-arrow.prev { left: -19px; }
.testimonial-arrow.next { right: -19px; }
@media (max-width: 720px) {
  .testimonial-arrow { display: none; }
  .testimonial-slide { padding: 1.75rem 1.5rem; }
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--grey-light);
  cursor: pointer;
  padding: 0;
}
.testimonial-dot.is-active { background: var(--gold); }
.testimonial-attribution { text-align: center; margin-top: 1.5rem; }
.testimonial-attribution a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.testimonial-attribution a:hover { color: var(--gold-light); }

/* ── Reviews hero stat (big number, used on /reviews/) ── */
.reviews-hero-stat { text-align: center; }
.reviews-hero-number {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.reviews-hero-label {
  font-size: 1.15rem;
  color: var(--white);
  opacity: 0.9;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.reviews-hero-rating {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.reviews-hero-rating .stars { color: var(--gold); margin-bottom: 0; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
details {
  border-bottom: 1px solid var(--grey-light);
  padding: 1rem 0;
}
details summary {
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.02rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 1.4rem; color: var(--gold); font-weight: 400; }
details[open] summary::after { content: '−'; }
details p { padding-top: 0.75rem; color: var(--grey-text); font-size: 0.95rem; }

/* ── CTA band ── */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.25rem;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { opacity: 0.88; margin-bottom: 1.75rem; }
.cta-band .ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ── Image placeholder ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
  width: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-style: italic;
}
.img-placeholder.tall { height: 320px; }
.img-placeholder.short { height: 200px; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 1.25rem;
}
.page-hero .container { max-width: 820px; }
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.88; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold); }

/* ── Two-col layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } .two-col.reverse { direction: ltr; } }

/* ── Feature list ── */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--grey-light);
  color: #333;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Contact form ── */
.contact-form { max-width: 580px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--navy); }
input, textarea, select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { resize: vertical; min-height: 120px; }

/* ── Footer ── */
footer {
  background: #01222f;
  color: rgba(255,255,255,0.8);
  padding: 3rem 1.25rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto 2rem;
}
footer h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 0.5rem; }
footer ul a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
footer ul a:hover { color: var(--gold); }
.footer-logo { margin-bottom: 0.6rem; }
.footer-logo img { height: 56px; width: auto; display: block; }
.footer-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.footer-tagline { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-contact a { color: var(--gold); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* ── Social icons ── */
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.social-link:hover { background: var(--gold); color: var(--white); }
.social-link svg { width: 17px; height: 17px; fill: currentColor; }

/* ── Photo placeholders (improved) ── */
.photo-placeholder {
  background: #e8edf0;
  border: 2px dashed #b0bcc5;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #6a8090;
  font-size: 0.82rem;
  text-align: center;
  padding: 1.25rem;
  position: relative;
}
.photo-placeholder.tall  { min-height: 320px; }
.photo-placeholder.short { min-height: 200px; }
.photo-placeholder.sq    { aspect-ratio: 1; }
.photo-placeholder svg   { opacity: 0.4; }
.photo-placeholder strong { color: #4a6070; font-size: 0.88rem; display: block; }
.photo-placeholder em    { font-style: normal; opacity: 0.65; font-size: 0.75rem; }
/* Keep old class working */
.img-placeholder { background: #e8edf0; border: 2px dashed #b0bcc5; border-radius: 8px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  color:#6a8090; font-size:0.82rem; text-align:center; padding:1rem; }
.img-placeholder.tall  { min-height: 320px; }
.img-placeholder.short { min-height: 200px; }

/* ── Gallery grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #e8edf0;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,30,50,0.75));
  color: white; font-size: 0.8rem; padding: 1.5rem 0.75rem 0.6rem;
  opacity: 0; transition: opacity 0.2s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; padding: 1rem;
  color: #6a8090; font-size: 0.78rem; text-align: center;
  border: 2px dashed #b0bcc5; border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.gallery-placeholder:hover { border-color: var(--gold); background: #f0ead8; }
.gallery-placeholder svg { opacity: 0.35; }
.gallery-placeholder strong { color: #4a6070; font-size: 0.82rem; }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ── Gallery filter bar ── */
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem; margin-bottom: 2rem;
}
.filter-btn {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  color: var(--navy);
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.filter-count {
  text-align: center; color: var(--grey-text); font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.gallery-item.is-hidden { display: none; }

/* ── Lightbox ── */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; transition: opacity 0.2s; pointer-events: none;
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 4px; object-fit: contain; }
.lightbox-close {
  position: fixed; top: 1rem; right: 1.25rem;
  color: white; font-size: 2rem; cursor: pointer; line-height: 1;
  opacity: 0.75; transition: opacity 0.15s; background: none; border: none;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-caption {
  position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.8); font-size: 0.88rem; text-align: center;
}
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: white;
  font-size: 1.8rem; padding: 0.5rem 0.9rem; cursor: pointer;
  border-radius: 4px; transition: background 0.15s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ── Photo carousel (auto-scrolling) ── */
.photo-carousel {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  background: #000;
}
.photo-carousel-track { position: relative; width: 100%; aspect-ratio: 4/3; }
.photo-carousel-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.7s ease;
}
.photo-carousel-slide.is-active { opacity: 1; visibility: visible; }
.photo-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-carousel-slide figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,30,50,0.8));
  color: white; font-size: 0.9rem; padding: 2.5rem 1rem 0.75rem;
}
.photo-carousel-prev, .photo-carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; color: white;
  font-size: 1.6rem; padding: 0.4rem 0.8rem; cursor: pointer;
  border-radius: 4px; transition: background 0.15s; line-height: 1;
}
.photo-carousel-prev:hover, .photo-carousel-next:hover { background: rgba(255,255,255,0.3); }
.photo-carousel-prev { left: 0.75rem; }
.photo-carousel-next { right: 0.75rem; }
.photo-carousel-dots {
  position: absolute; bottom: 0.6rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 0.4rem; z-index: 2;
}
.photo-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; padding: 0; cursor: pointer;
  transition: background 0.15s;
}
.photo-carousel-dot.is-active { background: var(--gold); }

/* ── Sticky CTA bar ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.95rem 1rem;
  font-family: var(--body-font); font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: filter 0.15s;
}
.sticky-cta-btn:hover { filter: brightness(1.08); }
.sticky-cta-btn.call { background: var(--gold); color: white; }
.sticky-cta-btn.book { background: var(--navy); color: white; }
.sticky-cta-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
/* Only show sticky CTA when user has scrolled past the first fold */
@media (min-width: 900px) {
  .sticky-cta { left: auto; right: 1.5rem; bottom: 1.5rem; width: auto;
    border-radius: 8px; overflow: hidden; flex-direction: column; }
  .sticky-cta-btn { padding: 0.75rem 1.25rem; font-size: 0.88rem; }
}

/* ── Suburb page specifics ── */
.suburb-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 700px) { .suburb-intro { grid-template-columns: 1fr; } }
.suburb-svg-hook { width: 100%; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); object-fit: cover; aspect-ratio: 4 / 3; }
.suburb-photo-caption { text-align: center; color: var(--grey-text); font-size: 0.85rem; margin-top: 0.6rem; font-style: italic; }

/* ── Responsive ── */
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: 2px solid var(--gold);
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  nav.open { display: flex; }
  nav a { padding: 0.6rem 0; border-bottom: 1px solid var(--grey-light); width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip .container { gap: 1.25rem; }
}
