/* ============================
   PMT TINT — Dark Luxury Automotive
   Colors: #0a0a0a, #141414, #c8a44e, #1a1a2e, #f5f5f5, #8a8a8a
   Fonts: Bebas Neue (display) + Outfit (body)
   ============================ */

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --accent: #c42525; /* PMT Red — darker, richer */
  --accent-glow: 0 0 15px rgba(196,37,37,0.3), 0 0 40px rgba(196,37,37,0.1);
  --accent2: #0d0d0d;
  --text: #e9e4d2; /* warm cream — matched to logo */
  --muted: #7a7a7a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle grain overlay — rugged automotive texture */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background: #e9e4d2;
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent);
  color: #e9e4d2;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 37, 37, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(233, 228, 210, 0.35);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* ===== SECTION STYLING ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== UTILITIES ===== */
.text-tech {
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 0;
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  transition: color 0.3s;
}

.topbar-link:hover {
  color: var(--accent);
}

.topbar-divider {
  color: rgba(138, 138, 138, 0.3);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-badge {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.topbar-social {
  color: var(--muted);
  transition: color 0.3s;
  display: flex;
}

.topbar-social:hover {
  color: var(--accent);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85); /* fallback */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.95);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO — Full-Width Immersive ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  margin-top: 0;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(1.5px) contrast(1.1) brightness(0.85);
  transform: scale(1.05); /* covers blur edge bleed */
}

/* Hide frame canvas on desktop — only used for mobile fallback */
.hero-canvas {
  display: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenburns 20s infinite alternate ease-in-out;
}

/* Placeholder background until real photo drops in */
.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(26,26,46,0.3) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 40%),
    var(--surface);
}

/* Dark overlay to keep text readable over any photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.45) 40%,
    rgba(10,10,10,0.7) 80%,
    var(--bg) 100%
  );
}

.hero .hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 16px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 4px;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-city {
  display: block;
  font-size: 0.55em;
  letter-spacing: 8px;
  opacity: 0.6;
}

/* Rotating tag word — only the category cycles */
.hero-rotating-tag {
  position: relative;
  display: block;
  height: clamp(48px, 6.5vw, 75px);
  margin-bottom: 6px;
  overflow: hidden;
}

.rotating-word {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-30%) scale(0.95);
  opacity: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 6px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0;
  white-space: nowrap;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.rotating-word.active {
  position: relative;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.hero-bullets {
  color: rgba(245,245,245,0.55);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 16px;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.hero-dot:hover {
  border-color: var(--accent);
}

.hero-sub {
  color: rgba(245,245,245,0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Glassmorphism Card — anchored bottom-right */
.hero-glass-card {
  position: absolute;
  bottom: 120px;
  right: 40px;
  z-index: 4;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Hero Trust Bar — bottom strip like Tint World service bar */
/* (hero-trust-bar removed — using .trust-marquee only) */
.glass-icon {
  background: var(--accent);
  color: var(--bg);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.glass-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.2;
}
.glass-text span {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

/* Badge — reusable */
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: rgba(20, 20, 20, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* ===== DIVISIONS BENTO GRID ===== */
.divisions {
  padding: 20px 0 0;
  background: var(--bg);
  display: none; /* Hidden until real photos are added */
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.bento-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  text-decoration: none;
}
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-horizontal {
  grid-column: span 2;
}
.bento-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}
.bento-item.group:hover .bento-bg {
  transform: scale(1.05);
}
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
  z-index: 2;
  transition: opacity 0.5s ease;
}
.bento-item.group:hover .bento-overlay {
  opacity: 0.8;
}
.bento-content {
  position: relative;
  z-index: 3;
}
.bento-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}
.bento-item h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text);
}
.bento-item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 90%;
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap 0.3s ease, color 0.3s ease;
}
.bento-item:hover .btn-text {
  gap: 16px;
  color: var(--accent);
}
.bento-accent {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.bento-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}
.bento-accent h3 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 15s infinite alternate ease-in-out;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
  pointer-events: none;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-image-placeholder,
.about-image-placeholder,
.gallery-placeholder,
.ba-placeholder {
  background: var(--surface);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
}

.hero-image-placeholder {
  aspect-ratio: 4/3;
}

.hero-image-placeholder span,
.about-image-placeholder span,
.gallery-placeholder span,
.ba-placeholder span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--accent);
  opacity: 0.5;
}

.hero-image-placeholder small,
.about-image-placeholder small,
.gallery-placeholder small,
.ba-placeholder small {
  font-size: 0.8rem;
  margin-top: 8px;
  opacity: 0.5;
}

/* ===== SERVICES ===== */
.services {
  padding: 50px 0;
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  border-top: 2px solid var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover .service-num {
  transform: scale(1.1);
}

.service-card:hover .service-icon {
  color: #ffcc5c;
}

.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.12;
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== BEFORE / AFTER SLIDER ===== */
.before-after {
  padding: 100px 0;
  background: var(--bg);
}

.slider-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.slider-tab {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--muted);
  padding: 10px 24px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-tab:hover,
.slider-tab.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.ba-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 8px;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-image {
  position: absolute;
  inset: 0;
}

.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  z-index: 0;
}

.ba-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}

.ba-placeholder-after {
  background: var(--accent2);
}

.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 16px;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
}

.ba-before .ba-label {
  left: 16px;
}

.ba-after .ba-label {
  right: 16px;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.ba-handle-line {
  flex: 1;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.ba-handle-circle {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
  color: var(--bg);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--surface);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid var(--accent);
  aspect-ratio: 4/5;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text .section-tag {
  display: block;
  text-align: left;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
}

.stat-plus,
.stat-pct {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-filter {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--muted);
  padding: 8px 20px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.gallery-item.hidden {
  display: none;
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 1px;
}

.gallery-desc {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.9;
}

/* Before/After badge on gallery items */
.gallery-ba-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 0;
  z-index: 3;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-ba-badge {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SUMMER PROMO CTA ===== */
.summer-promo {
  padding: 80px 0;
  background: linear-gradient(180deg, #0d0d0d 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.promo-header {
  text-align: center;
  margin-bottom: 48px;
}

.promo-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent);
  padding: 6px 20px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.promo-headline {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--text);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 12px;
}

.promo-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--muted);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.promo-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 60px 28px 40px;
  min-height: 340px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.promo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  transition: opacity 0.5s ease, transform 0.8s ease;
  z-index: 0;
  border-radius: 16px;
}

.promo-bg-fade {
  border-radius: 16px;
}

.promo-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--surface) 0%, var(--surface) 40%, rgba(17,17,17,0.85) 65%, transparent 100%);
  z-index: 1;
}

.promo-card:hover .promo-bg {
  opacity: 0.4;
}

.promo-icon,
.promo-title,
.promo-price,
.promo-detail,
.promo-link,
.promo-hot {
  position: relative;
  z-index: 2;
}

.promo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.promo-featured {
  border-color: rgba(196, 37, 37, 0.3);
  background: linear-gradient(180deg, rgba(196, 37, 37, 0.08) 0%, var(--surface) 40%);
}

.promo-featured:hover {
  border-color: rgba(196, 37, 37, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), var(--accent-glow);
}

.promo-hot {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(196, 37, 37, 0.4);
}

.promo-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.promo-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.promo-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.promo-detail {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap 0.3s, color 0.3s;
}

.promo-card:hover .promo-link {
  gap: 12px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .promo-featured {
    order: -1;
  }
  .promo-headline {
    font-size: 2.5rem;
  }
}

/* ===== AUTO SPLIT (Before/After + Gallery side by side) ===== */
.auto-split {
  padding: 100px 0;
  background: var(--bg);
}

.auto-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.split-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.auto-split-left .split-heading {
  font-size: 2.4rem;
}

.split-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 20px;
}

/* LEFT — Before/After (hero, dominant) */
.auto-split-left .slider-tabs {
  margin-bottom: 16px;
}

.auto-split-left .ba-slider-wrapper {
  border-radius: 12px;
  overflow: hidden;
}

/* RIGHT — Gallery (compact, scrollable) */
.auto-split-right {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: none;
}

.auto-split-right::-webkit-scrollbar {
  width: 0;
  display: none;
}

.auto-split-right .gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.auto-split-right .gallery-filters {
  margin-bottom: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 6px;
}

.auto-split-right .gallery-filter {
  padding: 5px 12px;
  font-size: 0.75rem;
}

.auto-split-right .gallery-img-wrapper {
  aspect-ratio: 1/1;
}

.auto-split-right .gallery-title {
  font-size: 0.95rem;
}

.auto-split-right .gallery-desc {
  font-size: 0.7rem;
}

.auto-split-right .split-heading {
  font-size: 1.4rem;
}

@media (max-width: 1200px) {
  .auto-split-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 768px) {
  .auto-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .auto-split-right {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  .auto-split-right .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== COMMERCIAL SHOWCASE ===== */
.commercial-showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 50%, var(--bg) 100%);
}

.comm-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.comm-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.comm-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 37, 37, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--accent-glow);
}

.comm-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.comm-side .comm-img-wrapper {
  aspect-ratio: 4/3;
}

.comm-featured .comm-img-wrapper {
  aspect-ratio: 16/10;
}

.comm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.comm-card:hover .comm-img {
  transform: scale(1.08);
}

.comm-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comm-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(196, 37, 37, 0.4);
}

.comm-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.comm-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.comm-featured .comm-name {
  font-size: 2.2rem;
  color: var(--accent);
}

.comm-location {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.comm-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Commercial Lightbox */
.comm-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.comm-lightbox.active {
  display: flex;
}

.comm-lightbox-content {
  text-align: center;
  max-width: 90vw;
  max-height: 85vh;
}

.comm-lightbox-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.comm-lightbox-counter {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.comm-lightbox-img {
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}

/* Commercial Showcase Responsive */
@media (max-width: 1024px) {
  .comm-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .comm-featured {
    grid-column: span 2;
    order: -1;
  }
}

@media (max-width: 640px) {
  .comm-grid {
    grid-template-columns: 1fr;
  }
  .comm-featured {
    grid-column: span 1;
  }
  .comm-name { font-size: 1.5rem; }
  .comm-featured .comm-name { font-size: 1.8rem; }
}

/* ===== GALLERY LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  z-index: 10;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
  padding: 8px;
}

.lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.lightbox-content {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-label {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}

/* Lightbox Before/After slider */
.lightbox-ba {
  width: 100%;
  display: none;
}

.lightbox-ba.active {
  display: block;
}

.lightbox-slider {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/10;
  margin: 0 auto;
}

.lightbox-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Lightbox full image mode */
.lightbox-full {
  width: 100%;
  display: none;
  justify-content: center;
}

.lightbox-full.active {
  display: flex;
}

.lightbox-full-img {
  width: 100%;
  max-width: 900px;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
}

/* Lightbox navigation arrows */
.lightbox-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 960px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 10px;
  pointer-events: none;
}

.lightbox-arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
}

.lightbox-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--bg);
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-bottom: 20px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(196, 37, 37, 0.06) 100%);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--accent);
  margin: 8px 0 16px;
}

.pricing-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.95rem;
}

.pricing-features li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.quote-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.pricing-commercial {
  padding: 50px 0 80px;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-card.popular {
    transform: none;
    order: -1;
  }
  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }
}

/* ===== HOW IT WORKS ===== */
.process {
  padding: 100px 0;
  background: var(--surface);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
}

.process-step {
  text-align: center;
  flex: 1;
  max-width: 320px;
  padding: 0 24px;
  position: relative;
}

.process-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(196, 37, 37, 0.08);
  border: 1px solid rgba(196, 37, 37, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  transition: transform 0.3s ease, background 0.3s ease;
}

.process-step:hover .process-icon {
  transform: scale(1.08);
  background: rgba(196, 37, 37, 0.14);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.process-step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.process-step p strong {
  color: var(--text);
}

.process-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .process-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }
  .process-step {
    max-width: 100%;
  }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #d42d2d;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 0;
  background: var(--surface);
}

/* Reviews Smooth Marquee — full bleed */
.reviews-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewsScroll 45s linear infinite;
  will-change: transform;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  position: relative;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px 36px 36px 52px;
  width: 400px;
  flex-shrink: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.review-card:hover {
  border-color: rgba(196, 37, 37, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/gallery-placeholder.png') center/cover;
  opacity: 0.15;
  pointer-events: none;
}

.cta-banner .btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 12px;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-item.open .faq-question {
  border-left: 3px solid var(--accent);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--accent);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 12px 24px;
  opacity: 1;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0 0;
  background: var(--surface);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.contact-info .section-tag {
  display: block;
  text-align: left;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-spanish {
  margin-top: 32px;
  color: var(--accent);
  font-weight: 600;
  font-style: italic;
  font-size: 1rem;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238a8a8a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group:last-of-type {
  margin-bottom: 20px;
}

.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 12px;
}

/* Quote Builder Radio Cards */
.quote-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--text);
}
.quote-btn {
  width: 100%;
}
.radio-group {
  display: flex;
  gap: 12px;
}
.radio-card {
  flex: 1;
  position: relative;
  cursor: pointer;
}
.radio-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-card .card-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 12px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.radio-card input:checked ~ .card-content {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}
.radio-card:hover .card-content {
  border-color: rgba(255, 255, 255, 0.5);
}

/* Map */
.contact-map {
  width: 100%;
  filter: grayscale(100%) invert(92%) contrast(83%);
  transition: filter 0.4s;
}

.contact-map:hover {
  filter: grayscale(80%) invert(90%) contrast(85%);
}

.contact-map iframe {
  display: block;
}

/* ===== GOOGLE RATING ===== */
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.google-stars {
  color: #fbbc04;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.google-score {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== REVIEWS CTA ===== */
.reviews-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== CONTACT ACTIONS ===== */
.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-spanish {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ===== BUTTON SMALL ===== */
.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  font-size: 2rem;
  margin-bottom: 12px;
  display: inline-block;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-areas {
  margin-top: 8px;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
  letter-spacing: 0.5px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer-contact a {
  color: var(--muted);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-social:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-legal {
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-credit {
  font-size: 0.7rem !important;
  opacity: 0.4;
  margin-top: 8px;
}

.footer-credit a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-credit a:hover {
  opacity: 0.8;
}

/* ===== FLOATING CTA (old — removed, see bottom of file) ===== */

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0.05s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.15s; }
.service-card:nth-child(4) { transition-delay: 0.2s; }
.service-card:nth-child(5) { transition-delay: 0.25s; }
.service-card:nth-child(6) { transition-delay: 0.3s; }

.gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery-item:nth-child(4) { transition-delay: 0.2s; }
.gallery-item:nth-child(5) { transition-delay: 0.25s; }
.gallery-item:nth-child(6) { transition-delay: 0.3s; }
.gallery-item:nth-child(7) { transition-delay: 0.35s; }
.gallery-item:nth-child(8) { transition-delay: 0.4s; }

/* Review carousel cards don't need fade-in transforms */

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: 300px;
  }
  .bento-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    width: 340px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar-address {
    display: none;
  }

  .topbar-divider {
    display: none;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 10000;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    display: none;
    z-index: 9999;
    padding: 80px 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .navbar {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(10, 10, 10, 0.95);
  }

  .nav-links a {
    font-size: 1.6rem;
    color: var(--text);
    letter-spacing: 1px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  /* Show video on mobile too — frame sequence disabled for IG compatibility */
  .hero-bg-video {
    display: block;
  }

  .hero-canvas {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(1.5px) contrast(1.1) brightness(0.85);
    transform: scale(1.05);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-text {
    padding: 60px 20px;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .hero-image::before {
    background: linear-gradient(to bottom, var(--bg) 0%, rgba(10, 10, 10, 0.4) 40%, transparent 100%);
  }

  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    text-align: center;
  }

  .hero-badges {
    flex-direction: column;
    gap: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .slider-tabs {
    flex-wrap: wrap;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-filters {
    flex-wrap: wrap;
  }

  .review-card {
    width: 300px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large, .bento-horizontal {
    grid-column: span 1;
  }
  .bento-accent {
    grid-row: auto;
  }
  .radio-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    text-align: left;
  }

  .ba-handle-circle {
    width: 40px;
    height: 40px;
  }

  .ba-handle-circle svg {
    width: 16px;
    height: 16px;
  }
}

/* ===== TECHNICAL SPECS ===== */
.specs {
  padding: 100px 0;
  background: var(--bg);
}

/* Big stat highlights row */
.spec-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.spec-highlight {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: var(--surface);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.spec-highlight:hover {
  border-color: rgba(196, 37, 37, 0.3);
  transform: translateY(-4px);
}

.spec-big-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  letter-spacing: 2px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.spec-big-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Product spec cards */
.spec-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.spec-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.spec-card:hover {
  border-color: rgba(196, 37, 37, 0.2);
}

.spec-card-alt {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(196, 37, 37, 0.04) 100%);
}

.spec-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.spec-card-header svg {
  color: var(--accent);
  flex-shrink: 0;
}

.spec-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.spec-card-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.spec-card-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.spec-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: var(--muted);
}

.spec-stat-row:last-child {
  border-bottom: none;
}

.spec-val {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .spec-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .spec-cards {
    grid-template-columns: 1fr;
  }

  .spec-card {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .spec-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .spec-highlight {
    padding: 24px 12px;
  }

  .spec-big-num {
    font-size: 2.4rem;
  }
}

/* ===== TRUST MARQUEE ===== */
.trust-marquee {
  background: var(--surface);
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.marquee-item svg {
  color: var(--accent);
}

.marquee-dot {
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.4rem;
  flex-shrink: 0;
  padding: 0 8px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FLOATING MOBILE CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  display: none;
  z-index: 2000;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .floating-cta {
    display: flex;
  }
}

.f-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.f-cta-btn:last-child {
  border-right: none;
}

.f-cta-btn svg {
  color: var(--accent);
}

.f-cta-call {
  color: var(--text);
}

.f-cta-text {
  color: var(--text);
}

.f-cta-book {
  color: var(--text);
}

.f-cta-btn:active {
  background: rgba(255, 255, 255, 0.05);
}

/* ===== LIGHTBOX MOBILE ===== */
@media (max-width: 768px) {
  .lightbox {
    padding: 20px 10px;
  }

  .lightbox-label {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .lightbox-slider {
    aspect-ratio: 4/3;
  }

  .lightbox-nav {
    padding: 0 4px;
  }

  .lightbox-arrow {
    width: 40px;
    height: 40px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .gallery-ba-badge {
    opacity: 1;
    transform: translateY(0);
  }
}
