/* ==============================================
   DLC Caravan Servicing LTD — Stylesheet
   Mobile-first, green & white trade theme
   ============================================== */

/* === CSS Custom Properties === */
:root {
  --green-dark:    #1a4a1a;
  --green-mid:     #2a6e2a;
  --green-bright:  #3d9e3d;
  --green-accent:  #5cb85c;
  --green-light:   #a5d6a7;
  --green-pale:    #e8f5e9;
  --green-xpale:   #f4faf4;
  --white:         #ffffff;
  --off-white:     #f8fdf8;
  --text-dark:     #111f11;
  --text-mid:      #2d4a2d;
  --text-muted:    #5a7a5a;
  --whatsapp:      #25D366;
  --whatsapp-dark: #128C7E;
  --star:          #f59e0b;
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.11);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.16);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-pill:   999px;
  --font-heading:  'Poppins', system-ui, -apple-system, sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;
  --transition:    0.25s ease;
  --nav-h:         68px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* === Layout Utilities === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4.5rem 0; }
.section-alt  { background: var(--green-xpale); }
.section-dark {
  background: linear-gradient(145deg, #0e2e0e 0%, var(--green-dark) 50%, #0e2e0e 100%);
  color: var(--white);
}

/* Section headers */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header-left { text-align: left; }
.section-header-left p { margin: 0; }
.section-header-light h2 { color: var(--white); }
.section-header-light p  { color: rgba(255,255,255,0.78); }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.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; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline {
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-green {
  background: var(--green-bright);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

/* =====================
   NAVIGATION
   ===================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 46px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}
.nav-logo-text {
  display: none;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text strong {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
}
.nav-logo-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: var(--green-pale); }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.nav-links {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 0.75rem 1rem 1rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  z-index: 899;
  gap: 0.2rem;
  border-top: 2px solid var(--green-pale);
}
.nav-links.open { display: flex; }

.nav-link {
  padding: 0.7rem 1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  background: var(--green-pale);
  color: var(--green-dark);
}
.nav-link.active { font-weight: 600; }

.nav-cta-link {
  margin-top: 0.4rem;
  display: block;
  padding: 0.75rem 1rem;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  transition: background var(--transition);
}
.nav-cta-link:hover { background: var(--whatsapp-dark); }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('../images/image12.jpeg');
  background-size: cover;
  background-position: center 30%;
  padding-top: var(--nav-h);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,28,8,0.88) 0%,
    rgba(26,74,26,0.78) 50%,
    rgba(8,28,8,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.25rem 5rem;
  max-width: 820px;
  width: 100%;
}

.hero-approved {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.95);
}
.hero-approved-dot {
  width: 8px; height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero-content h1 span { color: var(--green-light); }

.hero-sub {
  font-size: clamp(0.92rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scroll-bounce 2.2s ease-in-out infinite;
}
.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}
.hero-scroll a:hover {
  border-color: white;
  color: white;
  background: rgba(255,255,255,0.1);
}
.hero-scroll svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =====================
   TRUST BAR
   ===================== */
.trust-bar {
  background: var(--green-dark);
  padding: 1rem 1.25rem;
}
.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
}
.trust-item svg {
  width: 18px; height: 18px;
  stroke: var(--green-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* =====================
   SERVICES
   ===================== */
.services-subheading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.services-subheading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--green-light), transparent);
}

/* Price cards */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-accent));
}
.price-card:hover {
  border-color: var(--green-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--green-bright);
  box-shadow: var(--shadow-md);
}
.featured-badge {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  background: var(--green-bright);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-emoji { font-size: 1.65rem; margin-bottom: 0.6rem; }
.price-card h4 {
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
  line-height: 1.35;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.price-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.price-disclaimer {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0.75rem 0 3rem;
}

/* Other services chips */
.other-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}
.other-svc {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--green-bright);
  transition: all var(--transition);
}
.other-svc:hover {
  background: var(--green-pale);
  transform: translateX(4px);
}
.other-svc-icon { font-size: 1.1rem; flex-shrink: 0; }

/* Pre-purchase banner */
.prepurchase-banner {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.prepurchase-icon { font-size: 2.2rem; }
.prepurchase-banner h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.prepurchase-banner p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}

/* =====================
   ABOUT
   ===================== */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.about-image-col { display: flex; flex-direction: column; gap: 1rem; }

.about-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 460px;
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.creds-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.cred-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-pale);
}
.cred-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  object-position: center;
}

.about-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2rem;
}
.about-points li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.point-icon {
  width: 32px; height: 32px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.point-icon svg {
  width: 16px; height: 16px;
  stroke: var(--green-bright);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.point-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.12rem;
}
.point-text span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Coverage map box */
.map-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-pale);
}
.map-box h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.map-box img {
  width: 100%;
  border-radius: var(--radius-sm);
}
.map-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Brands strip */
.brands-strip {
  border-top: 1px solid rgba(45,110,45,0.15);
  padding-top: 2.5rem;
}
.brands-strip h3 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1.5rem;
}
.brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  justify-content: center;
}
.brands-row img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
}

/* =====================
   GALLERY
   ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
/* Centre a lone last item in the 2-column mobile grid */
@media (max-width: 559px) {
  .gallery-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 0.325rem);
    justify-self: center;
  }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--green-pale);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,36,10,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-overlay-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}
.gallery-overlay-icon svg {
  width: 22px; height: 22px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gallery-item:hover .gallery-overlay { background: rgba(10,36,10,0.45); }
.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: scale(1);
}

/* =====================
   REVIEWS
   ===================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,110,45,0.08);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.25rem; left: 1rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--green-pale);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(45,110,45,0.2);
}
.review-stars {
  color: var(--star);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}
.review-card blockquote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 1;
}
.review-card cite {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-dark);
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.review-card cite::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--green-bright);
  border-radius: 2px;
}

.rating-summary {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--green-pale);
}
.rating-big {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.rating-stars-big {
  color: var(--star);
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}
.rating-label { font-size: 0.83rem; color: var(--text-muted); }

/* =====================
   CONTACT
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.25rem 2rem;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all var(--transition);
  box-shadow: 0 6px 28px rgba(37,211,102,0.42);
  text-align: center;
  border: 3px solid transparent;
}
.wa-cta:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 38px rgba(37,211,102,0.52);
}
.wa-cta svg { width: 28px; height: 28px; fill: white; flex-shrink: 0; }

.tel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,0.28);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  text-align: center;
}
.tel-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
}
.tel-cta svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,0.8);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.email-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,0.28);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  text-align: center;
}
.email-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
}
.email-cta svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,0.8);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 18px; height: 18px;
  stroke: var(--green-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.58);
  margin-bottom: 0.2rem;
}
.contact-info-item p {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.6;
}

/* Facebook contact button (in contact section CTAs) */
.fb-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,0.28);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  text-align: center;
}
.fb-cta:hover {
  background: #1877f2;
  border-color: #1877f2;
  transform: translateY(-2px);
}
.fb-cta svg {
  width: 20px; height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Facebook inline link inside contact info */
.contact-fb-link {
  color: #7eb8ff;
  text-decoration: underline;
  text-decoration-color: rgba(126,184,255,0.4);
  transition: color var(--transition);
}
.contact-fb-link:hover { color: #aed4ff; }


/* =====================
   FOOTER
   ===================== */
.footer {
  background: #091509;
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 50px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 0.85rem;
}
.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  max-width: 220px;
}

.footer-nav-col h5,
.footer-contact-col h5 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.9rem;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  font-family: var(--font-heading);
  font-weight: 500;
}
.footer-nav-col a:hover { color: var(--white); }

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--whatsapp);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer-wa-link:hover { color: #6fe89b; }
.footer-wa-link svg { width: 16px; height: 16px; fill: var(--whatsapp); }
.footer-tel {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}
.footer-tel:hover { color: var(--white); }
.footer-email {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}
.footer-email:hover { color: var(--white); }
.footer-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
  transition: color var(--transition);
  font-family: var(--font-heading);
  font-weight: 500;
}
.footer-fb-link:hover { color: #7eb8ff; }
.footer-fb-link svg {
  width: 15px; height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-addr {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  margin-top: 0.25rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}
#lb-img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
#lb-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-top: 0.85rem;
  font-style: italic;
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background var(--transition);
  line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,0.18);
}
.lb-close { top: 1rem; right: 1rem; font-size: 1.1rem; }
.lb-prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1rem; top: 50%; transform: translateY(-50%); }

/* =====================
   RESPONSIVE — 560px+
   ===================== */
@media (min-width: 560px) {
  .hero-actions { flex-direction: row; justify-content: center; }
  .trust-bar-inner { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1.25rem 2rem; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .other-services-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .prepurchase-banner { flex-direction: row; align-items: center; }
  .prepurchase-text { flex: 1; }
  .contact-ctas { align-items: flex-start; }
  .footer-inner { flex-direction: row; flex-wrap: wrap; gap: 2rem 3rem; }
}

/* =====================
   RESPONSIVE — 1024px+
   ===================== */
@media (min-width: 1024px) {
  :root { --nav-h: 72px; }
  .section { padding: 6rem 0; }

  /* Nav */
  .nav-toggle { display: none; }
  .nav-logo-text { display: flex; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
    gap: 0.15rem;
    align-items: center;
  }
  .nav-link { font-size: 0.88rem; padding: 0.48rem 0.8rem; }
  .nav-cta-link { margin-top: 0; padding: 0.5rem 1.1rem; font-size: 0.86rem; }

  /* Hero */
  .hero { background-attachment: fixed; }

  /* Price grid */
  .price-grid { grid-template-columns: repeat(4, 1fr); }

  /* Other services */
  .other-services-grid { grid-template-columns: repeat(4, 1fr); }

  /* About */
  .about-grid { flex-direction: row; align-items: flex-start; gap: 4rem; }
  .about-image-col { width: 38%; flex-shrink: 0; }
  .about-text-col { flex: 1; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .wa-cta { font-size: 1.15rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

  /* Footer */
  .footer-inner { flex-wrap: nowrap; }
}

/* =====================
   ACCESSIBILITY
   ===================== */
:focus-visible {
  outline: 3px solid var(--green-accent);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
