/* ============================================================
   DANIELS BATHROOMS — Premium Design System
   ============================================================ */

:root {
  --red:        #DC2626;
  --red-d:      #B91C1C;
  --red-l:      #EF4444;
  --dark:       #0A0F1E;
  --dark-2:     #111827;
  --dark-3:     #1F2937;
  --dark-4:     #374151;
  --white:      #FFFFFF;
  --off:        #F8FAFC;
  --light:      #F1F5F9;
  --border:     #E2E8F0;
  --text:       #111827;
  --muted:      #6B7280;
  --gold:       #F59E0B;
  --green:      #16A34A;

  --nav-h:      72px;
  --topbar-h:   40px;
  --r:          10px;
  --r-lg:       16px;
  --trans:      0.25s ease;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.14);
  --shadow-lg:  0 16px 60px rgba(0,0,0,0.22);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container-xl { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--dark-2); }
.section-light { background: var(--light); }
.text-white { color: var(--white) !important; }
.text-muted-light { color: rgba(255,255,255,0.6) !important; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.eyebrow-light { color: rgba(220,38,38,0.85); }
.eyebrow-light::before { background: rgba(220,38,38,0.85); }

.section-head { margin-bottom: 64px; }
.section-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: var(--r);
  border: 2px solid var(--red);
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}
.btn-cta-primary:hover {
  background: var(--red-d);
  border-color: var(--red-d);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,38,38,0.35);
}
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--red);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: var(--r);
  border: 2px solid var(--red);
  transition: background var(--trans), color var(--trans), transform var(--trans);
}
.btn-cta-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: var(--r);
  border: 2px solid var(--white);
  transition: background var(--trans), color var(--trans), transform var(--trans);
}
.btn-cta-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-cta-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: var(--r);
  border: 2px solid rgba(255,255,255,0.4);
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
  backdrop-filter: blur(8px);
}
.btn-cta-ghost-white:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--dark);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.topbar-left i { color: var(--red); font-size: 0.7rem; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-phone,
.topbar-email {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color var(--trans);
}
.topbar-phone { color: var(--white); }
.topbar-phone i { color: var(--red); }
.topbar-email i { color: rgba(255,255,255,0.5); }
.topbar-phone:hover { color: var(--red-l); }
.topbar-email:hover { color: var(--white); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: sticky;
  top: var(--topbar-h);
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0;
  transition: box-shadow var(--trans);
}
#navbar.nav-shadow { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
}
.brand-name {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}
.brand-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hamburger */
.navbar-toggler {
  border: none;
  background: none;
  padding: 8px;
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.toggler-icon span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

#navbar .nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted) !important;
  padding: 8px 12px !important;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  position: relative;
}
#navbar .nav-link:hover,
#navbar .nav-link.active {
  color: var(--text) !important;
  background: var(--light);
}

.btn-nav-cta {
  background: var(--red);
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px !important;
  border-radius: var(--r);
  border: 2px solid var(--red);
  transition: background var(--trans), transform var(--trans);
}
.btn-nav-cta:hover {
  background: var(--red-d) !important;
  border-color: var(--red-d) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 9s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(4, 8, 22, 0.93) 0%,
    rgba(8, 12, 30, 0.84) 40%,
    rgba(80, 10, 10, 0.52) 100%
  );
  z-index: 1;
}

/* Slide dot indicators */
.hero-dots {
  position: absolute;
  bottom: 64px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dot-btn.active {
  background: var(--red);
  transform: scale(1.4);
}
.hero-dot-btn:hover { background: rgba(255,255,255,0.6); }
.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero-scroll { z-index: 2; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}
.hero-h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-rating .stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.9rem;
}
.hero-rating span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.hero-rating span strong { color: var(--white); font-weight: 700; }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-cta-primary.hero-btn-primary {
  font-size: 1.05rem;
  padding: 17px 32px;
  box-shadow: 0 8px 30px rgba(220,38,38,0.4);
}
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: var(--r);
  border: 2px solid rgba(255,255,255,0.3);
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
  backdrop-filter: blur(8px);
}
.btn-cta-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  transform: translateY(-2px);
}
.hero-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.trust-pill i { color: var(--red-l); font-size: 0.75rem; }
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.4);
  font-size: 1.3rem;
  animation: bob 2.5s ease-in-out infinite;
  transition: color var(--trans);
}
.hero-scroll:hover { color: rgba(255,255,255,0.9); }
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--dark);
  border-top: 3px solid var(--red);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.stat-divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-n {
  font-size: 3rem;
  font-weight: 900;
  color: var(--red-l);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-sym {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red-l);
  line-height: 1;
  margin-left: 3px;
  align-self: flex-start;
  margin-top: 6px;
}
.stat-l {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.svc-card:hover {
  border-color: rgba(220,38,38,0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-featured {
  background: var(--dark-2);
  border-color: var(--red);
}
.svc-featured::after { display: none; }
.svc-featured .svc-num { color: rgba(255,255,255,0.15); }
.svc-featured .svc-icon { background: rgba(220,38,38,0.15); color: var(--red-l); }
.svc-featured .svc-title { color: var(--white); }
.svc-featured .svc-text { color: rgba(255,255,255,0.6); }
.svc-featured .svc-cta { color: var(--red-l); }
.svc-featured:hover { transform: translateY(-5px); box-shadow: 0 12px 50px rgba(0,0,0,0.4); }

.svc-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.svc-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  margin-bottom: -8px;
  letter-spacing: -0.05em;
  user-select: none;
}
.svc-icon {
  width: 52px;
  height: 52px;
  background: rgba(220,38,38,0.07);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: background var(--trans), color var(--trans);
}
.svc-card:hover .svc-icon { background: var(--red); color: var(--white); }
.svc-featured:hover .svc-icon { background: var(--red); color: var(--white); }
.svc-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.svc-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  transition: gap var(--trans);
}
.svc-cta:hover { gap: 10px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-wrapper { margin-top: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(220,38,38,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
  font-size: 1.6rem;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--r);
  transition: background var(--trans), border-color var(--trans);
}
.btn-load-more:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.gallery-count {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.97);
  cursor: pointer;
}
.lightbox-body {
  position: relative;
  z-index: 2;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-body img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lb-counter {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  letter-spacing: 0.06em;
}
.lb-btn {
  position: fixed;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
  z-index: 3;
}
.lb-btn:hover { background: var(--red); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-img-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.ab-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}
.ab-txt {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.4;
  margin-top: 2px;
}
.about-p {
  font-size: 0.97rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 24px 0 28px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.check-item i {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}
.about-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.process-step {
  padding: 0 36px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-line { display: none; }
.process-num {
  width: 72px;
  height: 72px;
  background: var(--red);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 24px rgba(220,38,38,0.35);
  border: 3px solid var(--white);
  outline: 3px solid rgba(220,38,38,0.2);
}
.process-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.process-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.rs-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 1rem;
}
.rs-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--trans), border-color var(--trans);
  position: relative;
}
.review-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.rc-large {
  grid-row: span 1;
  background: rgba(220,38,38,0.12);
  border-color: rgba(220,38,38,0.3);
}
.rc-large:hover { background: rgba(220,38,38,0.16); }
.rc-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.85rem;
}
.review-card blockquote {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  font-style: italic;
  quotes: none;
  margin: 0;
  flex: 1;
}
.review-card blockquote::before { content: '\201C'; }
.review-card blockquote::after { content: '\201D'; }
.rc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.rc-av {
  width: 42px;
  height: 42px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.rc-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
}
.rc-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: color var(--trans);
}
.faq-q:hover,
.faq-q:not(.collapsed) { color: var(--red); }
.faq-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--red);
  transition: transform var(--trans);
}
.faq-q:not(.collapsed) .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 20px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--red);
  padding: 72px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.cta-band-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.cta-band-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  transition: border-color var(--trans), background var(--trans);
}
a.ci-item:hover {
  border-color: rgba(220,38,38,0.35);
  background: rgba(220,38,38,0.03);
}
.ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(220,38,38,0.07);
  color: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--trans), color var(--trans);
}
a.ci-item:hover .ci-icon { background: var(--red); color: var(--white); }
.ci-text { display: flex; flex-direction: column; gap: 2px; }
.ci-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ci-text strong { font-size: 0.92rem; color: var(--text); font-weight: 700; }

/* Form */
.quote-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 13px 16px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
}
.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.form-input::placeholder { color: rgba(107,114,128,0.7); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-input.error { border-color: var(--red); }
.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--r);
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-submit:hover {
  background: var(--red-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,38,38,0.35);
}
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
.form-success {
  background: rgba(22,163,74,0.08);
  border: 1.5px solid rgba(22,163,74,0.4);
  color: #15803d;
  border-radius: var(--r);
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.93rem;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding-top: 72px;
}
.footer-top { padding-bottom: 56px; }
.footer-brand {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.footer-brand span { color: var(--red-l); }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contacts a,
.footer-contacts span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--trans);
}
.footer-contacts a:hover { color: var(--red-l); }
.footer-contacts i { color: var(--red); font-size: 0.78rem; }
.footer-heading {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--red-l); }
.footer-areas {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
  text-align: center;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 800;
  transition: transform var(--trans), box-shadow var(--trans);
  animation: wa-pulse 3.5s infinite;
}
.wa-float:hover {
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
  animation: none;
}
.wa-tip {
  position: absolute;
  right: 68px;
  background: var(--dark-2);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}
.wa-tip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark-2);
  border-right: none;
}
.wa-float:hover .wa-tip { opacity: 1; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 98px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--dark-3);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 799;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--trans), transform var(--trans), background var(--trans);
}
.back-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-top:hover { background: var(--red); }

/* ============================================================
   MOBILE CALL BAR
   ============================================================ */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mcb-call {
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 10px;
  transition: background var(--trans);
}
.mcb-call:hover { background: var(--red-d); color: var(--white); }
.mcb-whatsapp {
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 10px;
}
.mcb-whatsapp:hover { color: var(--white); background: #1da854; }
.mcb-quote {
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 10px;
}
.mcb-quote:hover { background: var(--dark-3); color: var(--white); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1023px) {
  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::after { display: none; }
  .process-step { padding: 0; text-align: left; display: flex; align-items: flex-start; gap: 20px; }
  .process-num { margin: 0; flex-shrink: 0; width: 60px; height: 60px; font-size: 1.5rem; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider:nth-child(2)::before { display: none; }
  .stat:nth-child(1), .stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .navbar-collapse {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-md);
  }
}

@media (max-width: 767px) {
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-cta-primary, .btn-cta-ghost, .btn-cta-outline { justify-content: center; }
  .about-checks { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 48px; }
  body { padding-bottom: 58px; }
  .wa-float { bottom: 74px; }
  .back-top { bottom: 120px; right: 16px; }
  .about-badge { right: -8px; bottom: -8px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

@media (max-width: 575px) {
  .container-xl { padding: 0 16px; }
  .hero-h1 { font-size: 2.6rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar-left { display: none; }
}
