/* ============================================================
   TAHURA PLUMBING CONTRACTORS — PREMIUM CSS
   Black #0B0B0B | Gold #D4AF37 | White #FFFFFF | Dark Gray #161616
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0B0B0B;
  --dark: #161616;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dark: #B8962E;
  --white: #FFFFFF;
  --gray: #9A9A9A;
  --gray-light: #C8C8C8;
  --green: #25D366;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Montserrat', system-ui, sans-serif;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CRITICAL: Prevent ALL horizontal overflow */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

/* All images responsive by default */
img { max-width: 100%; height: auto; display: block; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ---- TYPOGRAPHY ---- */
.gold { color: var(--gold); }
.section-label { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(24px, 4vw, 48px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; word-break: break-word; }
.section-desc { color: var(--gray-light); max-width: 560px; margin: 0 auto; font-size: 16px; }
.section-header { text-align: center; margin-bottom: 56px; }

/* ---- BACKGROUNDS ---- */
.section-dark { background: var(--dark); padding: 80px 0; }
.section-black { background: var(--black); padding: 80px 0; }
.section-gold-accent { background: linear-gradient(135deg, #0D0D0D 0%, #1A1500 50%, #0D0D0D 100%); padding: 80px 0; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.35); }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-whatsapp:hover { background: #20BA5A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gray-light); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 18px 32px; font-size: 15px; }
.btn-xl { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   FAB (Floating Action Buttons)
============================================================ */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: var(--transition);
  flex-shrink: 0;
}
.fab:hover { transform: scale(1.1); }
.fab svg { width: 21px; height: 21px; }
.fab-call { background: var(--gold); color: var(--black); }
.fab-whatsapp { background: var(--green); color: var(--white); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  width: 100%;
}
.navbar.scrolled {
  background: rgba(11,11,11,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo-t { color: var(--gold); }
.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-left: 6px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav-call {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-nav-call:hover { background: var(--gold-light); }

/* Hamburger — properly aligned */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,11,0.92) 0%, rgba(11,11,11,0.85) 40%, rgba(11,11,11,0.75) 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 0 70px;
  max-width: 100%;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 100%;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  word-break: break-word;
  max-width: 100%;
}
.hero-gold { color: var(--gold); display: block; }
.hero-subtitle {
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  max-width: 100%;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: 11px; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(212,175,55,0.3); flex-shrink: 0; }
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: floatHint 2.5s ease-in-out infinite;
  z-index: 2;
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes floatHint { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar { background: var(--gold); padding: 18px 0; width: 100%; overflow: hidden; }
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  color: var(--black);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.trust-check { font-size: 14px; font-weight: 800; }
.trust-sep { width: 1px; height: 18px; background: rgba(0,0,0,0.2); flex-shrink: 0; }

/* ============================================================
   ABOUT
============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; min-height: 400px; }
.about-img-main { border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-sec {
  position: absolute;
  bottom: -32px;
  right: -20px;
  width: 50%;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 1;
  max-width: 220px;
}
.about-img-sec img { width: 100%; height: 100%; object-fit: cover; }
.about-exp-badge {
  position: absolute;
  top: 24px;
  left: -12px;
  background: var(--gold);
  color: var(--black);
  padding: 14px 18px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
  z-index: 2;
}
.badge-num { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 900; line-height: 1; }
.badge-text { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.about-content { }
.about-lead { font-size: 16px; color: var(--gray-light); margin-bottom: 14px; line-height: 1.8; }
.about-body { color: var(--gray); margin-bottom: 28px; line-height: 1.8; }
.about-features { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.about-feat { display: flex; gap: 14px; align-items: flex-start; }
.about-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.about-feat-icon svg { width: 18px; height: 18px; }
.about-feat strong { display: block; color: var(--white); margin-bottom: 2px; font-size: 15px; }
.about-feat p { color: var(--gray); font-size: 13px; margin: 0; }

/* ============================================================
   SERVICES
============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.svc-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.svc-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.4); }
.svc-card:hover::before { opacity: 1; }
.svc-card-emg { border-color: rgba(212,175,55,0.3); }
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}
.svc-icon svg { width: 20px; height: 20px; }
.svc-card:hover .svc-icon { background: var(--gold); color: var(--black); }
.svc-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--white); word-break: break-word; }
.svc-card p { color: var(--gray); font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.svc-link { color: var(--gold); font-size: 13px; font-weight: 600; text-decoration: none; letter-spacing: 0.05em; display: inline-flex; gap: 4px; }
.svc-link:hover { gap: 8px; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  min-width: 0;
}
.why-card:hover { border-color: rgba(212,175,55,0.35); transform: translateY(-4px); }
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card:hover .why-icon { background: var(--gold); color: var(--black); border-color: var(--gold); }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--gray); font-size: 13px; line-height: 1.7; }

/* ============================================================
   STATISTICS
============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center;
  padding: 48px 20px;
  border-right: 1px solid rgba(212,175,55,0.15);
  min-width: 0;
}
.stat-item:last-child { border-right: none; }
.stat-num { display: block; font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 60px); font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-light); }

/* ============================================================
   GALLERY
============================================================ */
.gallery-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 40s linear infinite;
  will-change: transform;
}
.gallery-track:hover { animation-play-state: paused; }
@keyframes galleryScroll { 0%{transform:translateX(0)} 100%{transform:translateX(calc(-50% - 8px))} }
.gallery-item {
  width: 300px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap { max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lb-img-wrap img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}
.lb-close { top: 16px; right: 16px; padding: 8px 14px; font-size: 18px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); padding: 14px 18px; font-size: 26px; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--black); }

/* ============================================================
   BEFORE & AFTER
============================================================ */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ba-wrap { border-radius: var(--radius); overflow: hidden; min-width: 0; }
.ba-slider { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; cursor: ew-resize; touch-action: none; }
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-tag {
  position: absolute;
  bottom: 10px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ba-before .ba-tag { left: 10px; background: rgba(0,0,0,0.6); color: var(--gray-light); }
.ba-tag.ba-tag-after { right: 10px; background: var(--gold); color: var(--black); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.ba-line { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--gold); left: 50%; transform: translateX(-50%); }
.ba-circle {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212,175,55,0.5);
  z-index: 1;
  flex-shrink: 0;
}

/* ============================================================
   WORK PROCESS
============================================================ */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow: hidden;
}
.proc-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 12px;
  min-width: 0;
}
.proc-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: rgba(212,175,55,0.12);
  line-height: 1;
  margin-bottom: -16px;
}
.proc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 1.5px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.proc-icon svg { width: 26px; height: 26px; }
.proc-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; word-break: break-word; }
.proc-step p { color: var(--gray); font-size: 12px; line-height: 1.6; }
/* Connector — fixed to not overflow */
.proc-connector {
  display: none; /* Hidden by default; shown with pseudo-element approach */
}

/* ============================================================
   BOOKING FORM
============================================================ */
.booking-wrap {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.bk-progress {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  overflow: hidden;
  min-width: 0;
}
.bk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.bk-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  transition: var(--transition);
  flex-shrink: 0;
}
.bk-step span { font-size: 10px; color: var(--gray); letter-spacing: 0.05em; white-space: nowrap; }
.bk-step.active .bk-circle { background: var(--gold); border-color: var(--gold); color: var(--black); }
.bk-step.completed .bk-circle { background: rgba(212,175,55,0.2); border-color: var(--gold); color: var(--gold); }
.bk-step.active span, .bk-step.completed span { color: var(--gold); }
.bk-line { flex: 1; height: 1.5px; background: rgba(255,255,255,0.1); margin: 0 4px; min-width: 8px; }
.bk-pane { display: none; }
.bk-pane.active { display: block; }
.bk-step-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 24px; color: var(--white); }
.svc-opts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; margin-bottom: 28px; }
.svc-opt {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--gray-light);
  padding: 13px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
  word-break: break-word;
}
.svc-opt:hover { border-color: rgba(212,175,55,0.5); color: var(--gold); background: rgba(212,175,55,0.05); }
.svc-opt.selected { border-color: var(--gold); background: rgba(212,175,55,0.12); color: var(--gold); font-weight: 700; }
.bk-nav { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* Calendar */
.cal-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 20px;
  max-width: 100%;
  width: 360px;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 8px; }
.cal-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); }
.cal-btn {
  background: none;
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 17px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cal-btn:hover { background: var(--gold); color: var(--black); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 6px; }
.cal-weekdays span { text-align: center; font-size: 10px; font-weight: 700; color: var(--gray); letter-spacing: 0.04em; padding: 4px 0; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); font-size: 12px; cursor: pointer; transition: var(--transition); color: var(--gray-light); }
.cal-day:hover { background: rgba(212,175,55,0.15); color: var(--gold); }
.cal-day.selected { background: var(--gold); color: var(--black); font-weight: 700; }
.cal-day.today { border: 1px solid rgba(212,175,55,0.4); color: var(--gold); }
.cal-day.other-month { color: rgba(255,255,255,0.15); cursor: default; }
.cal-day.past { color: rgba(255,255,255,0.12); cursor: not-allowed; }
.selected-date { color: var(--gold); font-size: 14px; font-weight: 600; margin-bottom: 8px; min-height: 22px; }

/* Time Slots */
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; margin-bottom: 28px; }
.time-opt {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--gray-light);
  padding: 13px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.time-opt:hover { border-color: rgba(212,175,55,0.5); color: var(--gold); }
.time-opt.selected { border-color: var(--gold); background: rgba(212,175,55,0.12); color: var(--gold); font-weight: 700; }
.time-emg { border-color: rgba(212,175,55,0.4); color: var(--gold); font-weight: 600; }

/* Form Fields */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 8px; }
.fg { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.fg-full { grid-column: 1 / -1; }
.fg label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition);
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--gray); }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--gold); }
.fg select option { background: var(--dark); color: var(--white); }
.fg textarea { resize: vertical; }

/* Booking Summary */
.bk-summary {
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
}
.bk-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 16px;
  min-width: 0;
}
.bk-row:last-child { border-bottom: none; }
.bk-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); flex-shrink: 0; }
.bk-val { font-size: 14px; font-weight: 600; color: var(--white); text-align: right; word-break: break-word; min-width: 0; }
.bk-confirm-actions { display: flex; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.ct-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ct-card:last-of-type { border-bottom: none; margin-bottom: 18px; }
.ct-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.ct-icon svg { width: 16px; height: 16px; }
.ct-card h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.ct-card a { color: var(--gold); font-size: 15px; font-weight: 600; text-decoration: none; word-break: break-all; }
.ct-card a:hover { color: var(--gold-light); }
.ct-card p { color: var(--gray-light); font-size: 13px; margin: 0; line-height: 1.6; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); width: 100%; }
.map-wrap iframe { display: block; }
.cf {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 36px 32px;
  width: 100%;
  box-sizing: border-box;
}
.cf h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.cf .fg { margin-bottom: 16px; }

/* ============================================================
   SERVICE AREAS
============================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 10px; }
.area-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-light);
  transition: var(--transition);
  cursor: default;
  min-width: 0;
  word-break: break-word;
}
.area-card:hover { border-color: rgba(212,175,55,0.4); color: var(--gold); background: rgba(212,175,55,0.04); transform: translateY(-2px); }
.area-more { border-color: rgba(212,175,55,0.3); color: var(--gold); font-weight: 600; text-align: center; background: rgba(212,175,55,0.05); }

/* ============================================================
   FAQ
============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; width: 100%; }
.faq-item {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
  width: 100%;
  box-sizing: border-box;
}
.faq-item.open { border-color: rgba(212,175,55,0.35); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  gap: 14px;
  text-align: left;
  box-sizing: border-box;
}
.faq-icon { color: var(--gold); font-size: 20px; font-weight: 300; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 22px 18px; color: var(--gray); font-size: 14px; line-height: 1.8; }

/* ============================================================
   EMERGENCY CTA
============================================================ */
.emg-cta { position: relative; padding: 80px 0; overflow: hidden; width: 100%; }
.emg-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D0800 0%, #1A1000 40%, #0D0800 100%);
}
.emg-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, transparent 70%);
}
.emg-content { position: relative; text-align: center; z-index: 2; }
.emg-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1.5px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  animation: pulse 2s infinite;
}
.emg-content h2 { font-family: var(--font-display); font-size: clamp(24px, 4vw, 44px); font-weight: 700; margin-bottom: 14px; word-break: break-word; }
.emg-content p { color: var(--gray-light); font-size: 15px; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.emg-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #070707; width: 100%; overflow: hidden; }
.footer-top { padding: 72px 0 56px; border-bottom: 1px solid rgba(212,175,55,0.12); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 14px; line-height: 1; }
.footer-logo-sub { font-family: var(--font-body); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-top: 2px; }
.footer-brand p { color: var(--gray); font-size: 13px; line-height: 1.8; margin-bottom: 14px; }
.footer-rating { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-rating span:last-child { color: var(--gray); font-size: 12px; }
.footer-h { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 13px; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.fct-item { display: flex; align-items: flex-start; gap: 9px; color: var(--gray); font-size: 13px; line-height: 1.5; min-width: 0; word-break: break-word; }
.fct-item svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }
.fct-item a { color: var(--gold); text-decoration: none; word-break: break-all; }
.footer-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 12px; word-break: break-word; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* Gold stars */
.gold-stars { color: var(--gold); font-size: 16px; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 480px; margin: 0 auto; min-height: 360px; }
  .about-content { padding-left: 0; }
  .about-img-sec { right: 0; bottom: -24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.15); padding: 36px 20px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(212,175,55,0.15); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .process-steps { flex-direction: column; gap: 36px; align-items: center; overflow: visible; }
  .proc-step { max-width: 320px; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .ba-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .nav-links { gap: 16px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */
@media (max-width: 768px) {
  .section-dark, .section-black, .section-gold-accent { padding: 60px 0; }

  /* Container safe */
  .container { padding: 0 16px; }

  /* Navbar mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(16px);
    padding: 20px 16px;
    gap: 18px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    z-index: 999;
    box-sizing: border-box;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-nav-call { display: none; }

  /* Hero mobile */
  .hero-content { padding: 110px 0 60px; }
  .hero-title { font-size: clamp(30px, 8vw, 44px); }
  .hero-subtitle { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-actions .btn { width: auto; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 20px; }

  /* Trust bar mobile */
  .trust-items { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; padding: 0 16px; }
  .trust-items::-webkit-scrollbar { display: none; }
  .trust-sep { display: none; }
  .trust-item { padding: 6px 12px; font-size: 12px; }

  /* About mobile */
  .about-images { max-width: 100%; }
  .about-img-sec { right: 0; width: 44%; bottom: -20px; max-width: 160px; }
  .about-exp-badge { left: -4px; }

  /* Services mobile */
  .services-grid { grid-template-columns: 1fr; }

  /* Why Us mobile */
  .why-grid { grid-template-columns: 1fr; }

  /* Stats mobile */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 12px; border-right: none; border-bottom: 1px solid rgba(212,175,55,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(212,175,55,0.15); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  /* Gallery mobile — works as-is with overflow:hidden on wrapper */
  .gallery-item { width: 240px; }
  .gallery-item img { height: 180px; }

  /* Booking form mobile */
  .booking-wrap { padding: 24px 16px; }
  .bk-step span { display: none; }
  .bk-circle { width: 30px; height: 30px; font-size: 12px; }
  .svc-opts-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .time-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .fg-full { grid-column: auto; }
  .bk-confirm-actions { flex-direction: column; }
  .bk-confirm-actions .btn { width: 100%; justify-content: center; }
  .cal-wrap { width: 100%; }

  /* Contact form mobile */
  .cf { padding: 24px 18px; }

  /* Areas mobile */
  .areas-grid { grid-template-columns: 1fr 1fr; }

  /* Emergency CTA mobile */
  .emg-actions { flex-direction: column; align-items: center; }
  .emg-actions .btn { width: 100%; max-width: 360px; justify-content: center; }

  /* Footer mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 6px; }
  .footer-btns { flex-wrap: wrap; }

  /* FAB mobile */
  .fab-container { bottom: 16px; right: 14px; gap: 10px; }
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 19px; height: 19px; }

  /* Lightbox mobile */
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(28px, 9vw, 36px); }
  .section-title { font-size: clamp(22px, 6vw, 30px); }
  .svc-opts-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .bk-progress { gap: 0; }
  .bk-line { min-width: 4px; }
  .about-img-sec { display: none; }
  .about-exp-badge { left: 0; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .emg-actions .btn { padding: 16px 20px; font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   EXTRA SAFETY — prevent any child from overflowing viewport
============================================================ */
section, footer, nav, header {
  max-width: 100%;
  overflow-x: hidden;
}
