/* ==========================================================================
   V&S SOLUTION SERVICES LLC - DELUXE DESIGN SYSTEM (2026 STANDARD)
   Pillars: Bento Grid 2.0 • Liquid Glass 3.0 • OKLCH Physics • Fluid Springs
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=JetBrains+Mono:wght@500;600;700;800&family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* OKLCH & Core Obsidian Color Palette */
  --bg-deep: #080b12;
  --bg-canvas: #0d121f;
  --bg-surface: #141c2e;
  --bg-surface-elevated: #1b263e;
  --bg-surface-glass: rgba(20, 28, 46, 0.72);
  
  /* Brand Luxury Accents */
  --gold-primary: #d4af37;
  --gold-glow: #e5a93c;
  --gold-light: #fef08a;
  --blue-royal: #1e6091;
  --blue-electric: #2563eb;
  --blue-glow: rgba(37, 99, 235, 0.25);
  --terracotta: #d93829;
  
  /* Neutral Typography Hierarchy */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-specular: rgba(255, 255, 255, 0.16);
  --border-gold: rgba(212, 175, 55, 0.35);

  /* Optical Glass & Lighting Tokens */
  --glass-specular: inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  --gold-shadow: 0 10px 30px -8px rgba(212, 175, 55, 0.3);

  /* Deluxe Multi-Font Architectural System */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-serif: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-editorial: 'Cormorant Garamond', Garamond, Georgia, serif;

  /* Spring Transitions */
  --spring-snappy: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --spring-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Global Scaffolding */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section[id], .gallery-video-banner {
  scroll-margin-top: 100px;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Background Ambient Glow Mesh */
body::before {
  content: '';
  position: fixed;
  top: -15vw;
  left: 20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(30, 96, 145, 0.12) 0%, rgba(212, 175, 55, 0.06) 45%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

body::after {
  content: '';
  position: fixed;
  bottom: -20vw;
  right: 10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
  filter: blur(90px);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--spring-snappy);
}

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top License Bar */
.top-notice-bar {
  background: linear-gradient(90deg, #090e18 0%, #111a2e 50%, #090e18 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.5rem 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-badge-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-glow);
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.22rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.top-right-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-phone-link {
  color: var(--text-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-phone-link:hover {
  color: var(--gold-glow);
}

/* Language Switcher Pill */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  padding: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--spring-snappy);
}

.lang-btn.active {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* Site Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 11, 18, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: var(--spring-snappy);
}

.site-header.scrolled {
  background: rgba(8, 11, 18, 0.92);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  position: relative;
  padding: 0.35rem 0.95rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(212, 175, 55, 0.08) 50%, rgba(10, 14, 23, 0.45) 100%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.18), 0 0 18px rgba(212, 175, 55, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover {
  transform: translateY(-2px) scale(1.025);
  border-color: rgba(212, 175, 55, 0.65);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(212, 175, 55, 0.15) 50%, rgba(10, 14, 23, 0.55) 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55), inset 0 1px 2px rgba(255, 255, 255, 0.25), 0 0 24px rgba(212, 175, 55, 0.32);
}

.brand-logo img {
  height: clamp(68px, 5.2vw, 86px);
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 3px 12px rgba(212, 175, 55, 0.35)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}

.site-header.scrolled .brand-logo {
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(212, 175, 55, 0.06) 100%);
  border-color: rgba(212, 175, 55, 0.25);
}

.site-header.scrolled .brand-logo img {
  height: 62px;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3)) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.85));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.15vw, 1.35rem);
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-glow);
  transition: var(--spring-snappy);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--spring-snappy);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #e5a93c 0%, #d4af37 50%, #b8860b 100%);
  color: #0a0e17;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--gold-shadow), var(--glass-specular);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(212, 175, 55, 0.45);
  filter: brightness(1.08);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border-color: var(--border-specular);
  box-shadow: var(--glass-specular);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-call {
  background: #1e293b;
  border-color: var(--border-subtle);
  color: var(--gold-glow);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  padding: 0.6rem 1.1rem;
}

.btn-call:hover {
  background: #283548;
  border-color: var(--gold-glow);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: var(--spring-snappy);
  border-radius: 2px;
}

.mobile-nav-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-nav-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-glow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.38rem 0.95rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 40%, #e5a93c 80%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-title .text-gradient-gold {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding-right: 0.08em;
}

.hero-slogan {
  font-family: var(--font-editorial);
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  font-style: italic;
  font-weight: 600;
  color: var(--gold-glow);
  margin-top: -0.35rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-slogan::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary));
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-description {
  font-size: clamp(1rem, 1.25vw, 1.1875rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero-reassurance {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.reassurance-item svg {
  color: var(--gold-glow);
}

/* Hero Media Showcase Card */
.hero-media-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-specular);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7), var(--glass-specular);
}

.hero-media-card img {
  width: 100%;
  height: clamp(340px, 42vw, 480px);
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media-card:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(13, 18, 31, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-specular);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--glass-shadow), var(--glass-specular);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.badge-text-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.badge-text-sub {
  font-size: 0.8125rem;
  color: var(--gold-glow);
}

/* Metrics & Statistics Bar */
.stats-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-canvas) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: var(--glass-specular);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.8s ease,
              box-shadow 0.8s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  opacity: 0.6;
  transition: opacity 0.8s ease;
}

.stat-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.75), 0 0 26px rgba(212, 175, 55, 0.2);
}

.stat-card:hover::before {
  opacity: 1;
}

/* Number Styling with Slow Ambient Glow Breathing */
.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 800;
  color: var(--gold-glow);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 0.75rem;
  display: inline-block;
  letter-spacing: -0.01em;
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.22);
  transition: transform 0.8s ease, text-shadow 0.8s ease;
  animation: slowNumberBreath 7.5s ease-in-out infinite;
}

.stat-card:nth-child(1) .stat-number { animation-delay: 0s; }
.stat-card:nth-child(2) .stat-number { animation-delay: 1.8s; }
.stat-card:nth-child(3) .stat-number { animation-delay: 3.6s; }
.stat-card:nth-child(4) .stat-number { animation-delay: 5.4s; }

@keyframes slowNumberBreath {
  0%, 100% {
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 28px rgba(212, 175, 55, 0.55), 0 0 45px rgba(212, 175, 55, 0.25);
    transform: scale(1.025);
  }
}

.stat-card:hover .stat-number {
  transform: scale(1.05);
  text-shadow: 0 0 32px rgba(212, 175, 55, 0.75);
}

/* Label Styling - Deluxe Kinetic Typography Container */
.stat-label {
  font-family: var(--font-serif);
  font-size: 0.825rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.45;
  min-height: 2.3em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: letter-spacing 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.8s ease;
}

/* Individual Animated Character (Letters) */
.stat-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px) scale(0.88);
  filter: blur(6px);
  transition: opacity 1.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.25s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.25s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.8s ease,
              text-shadow 0.8s ease;
  will-change: transform, opacity, filter;
}

.stat-space {
  display: inline-block;
  width: 0.32em;
}

/* Revealed State: Slow, Majestic Unfolding */
.stat-card.stat-revealed .stat-char {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* After reveal: Slow continuous ambient golden wave */
.stat-card.stat-revealed .stat-char {
  animation: slowCharWave 6.5s ease-in-out infinite;
}

@keyframes slowCharWave {
  0%, 100% {
    color: var(--text-secondary);
    text-shadow: 0 0 0 transparent;
  }
  40% {
    color: #FFF2D6;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.7), 0 0 24px rgba(212, 175, 55, 0.35);
  }
  75% {
    color: var(--text-secondary);
    text-shadow: 0 0 0 transparent;
  }
}

.stat-card:hover .stat-label {
  letter-spacing: 0.13em;
}

.stat-card:hover .stat-char {
  color: #FFFFFF !important;
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.7) !important;
  animation-play-state: paused;
}

/* Section Common Headers */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-glow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.38rem 0.95rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Interactive Before & After Slider */
.ba-section {
  padding: 6rem 0;
  position: relative;
}

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

.before-after-container {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  border: 1px solid var(--border-specular);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), var(--glass-specular);
  background: #000;
}

.ba-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before-layer {
  z-index: 1;
}

.ba-after-layer {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  transition: clip-path 0.05s linear;
}

.ba-badge-pill {
  position: absolute;
  top: 1.5rem;
  z-index: 5;
  background: rgba(10, 14, 23, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-specular);
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.45rem 1.15rem;
  border-radius: 9999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.ba-badge-before {
  right: 1.5rem;
  border-color: rgba(217, 56, 41, 0.4);
  color: #fca5a5;
}

.ba-badge-after {
  left: 1.5rem;
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--gold-glow);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gold-glow);
  z-index: 10;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
  outline: none;
}

.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5a93c 0%, #b8860b 100%);
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0e17;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
  font-weight: 900;
  font-size: 1rem;
  cursor: ew-resize;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.before-after-container:hover .ba-handle-knob,
.before-after-container.is-dragging .ba-handle-knob {
  transform: translate(-50%, -50%) scale(1.15);
}

.ba-caption-box {
  margin-top: 1.25rem;
  text-align: center;
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: #cbd5e1;
  letter-spacing: 0.01em;
}

/* Bento Grid 2.0 Services */
.services-section {
  padding: 6rem 0;
  background: var(--bg-canvas);
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.bento-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  padding: 1.85rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.15rem;
  box-shadow: var(--glass-specular);
  transition: var(--spring-snappy);
}

/* Spotlight Hover Effect */
.bento-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, -1000px);
  left: var(--mouse-x, -1000px);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.6), var(--glass-specular);
}

.bento-span-2 {
  grid-column: span 2;
}

.bento-card-media {
  margin-top: 0;
  border-radius: 12px;
  overflow: hidden;
  height: 240px;
  width: 100%;
  flex: 1;
  min-height: 210px;
}

.bento-card-media picture,
.bento-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-card:hover .bento-card-media img {
  transform: scale(1.05);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(30, 96, 145, 0.15) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-glow);
  margin-bottom: 1.15rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.4375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '✓';
  color: var(--gold-glow);
  font-weight: 800;
}

/* Portfolio Section */
.portfolio-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--spring-snappy);
}

.filter-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-specular);
}

.filter-btn.active {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.project-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--glass-specular);
  transition: var(--spring-snappy);
}

.project-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
}

.project-thumbnail {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-item:hover .project-thumbnail img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 11, 18, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 1;
}

.project-info {
  width: 100%;
}

.project-category-tag {
  font-family: var(--font-serif);
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--gold-glow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.project-zoom-trigger {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 18, 31, 0.85);
  border: 1px solid var(--border-specular);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: var(--spring-snappy);
}

.project-item:hover .project-zoom-trigger {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.92);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 1000px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  border: 1px solid var(--border-specular);
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* Cost Estimator Section */
.estimator-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-canvas) 0%, var(--bg-surface) 100%);
  position: relative;
}

.estimator-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-specular);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--glass-shadow), var(--glass-specular);
  backdrop-filter: blur(20px);
}

.calc-step {
  margin-bottom: 2rem;
}

.calc-label {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}

.calc-select, .form-input {
  width: 100%;
  background: #0d121f;
  border: 1px solid var(--border-specular);
  border-radius: 10px;
  color: var(--text-primary);
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: var(--spring-snappy);
}

.calc-select:focus, .form-input:focus {
  outline: none;
  border-color: var(--gold-glow);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.calc-range-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.calc-slider {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: #1e293b;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 2px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.calc-sqft-badge {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gold-glow);
  min-width: 110px;
  text-align: right;
}

.grade-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grade-radio-card {
  position: relative;
  background: #0d121f;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--spring-snappy);
}

.grade-radio-card input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.grade-radio-card:hover {
  border-color: var(--border-specular);
}

.grade-radio-card:has(input:checked) {
  border-color: var(--gold-glow);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.grade-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  display: block;
}

.calc-result-box {
  background: #090d16;
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 2.5rem;
}

.calc-result-heading {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.calc-result-bracket {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold-glow);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.5rem;
}

.calc-disclaimer-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Why Choose Us & Trust Grid */
.why-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: var(--glass-specular);
  transition: var(--spring-snappy);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 0;
  background: var(--bg-canvas);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.25rem;
  box-shadow: var(--glass-specular);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: var(--gold-glow);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.testimonial-author {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.testimonial-loc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section (Accordion & Google Rich Snippet Visuals)
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-surface);
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.faq-accordion-container {
  max-width: 940px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.faq-item {
  background: rgba(13, 18, 31, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(20, 28, 46, 0.85);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--border-gold);
  background: rgba(20, 28, 46, 0.95);
  box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.6), 0 0 20px -5px rgba(212, 175, 55, 0.18);
  transform: none;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1.85rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.faq-item.active .faq-trigger {
  color: var(--gold-light);
}

.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #080b12;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
}

.faq-item.active .faq-content {
  max-height: 380px;
  opacity: 1;
}

.faq-body {
  padding: 0 1.85rem 1.6rem;
  font-size: 0.9625rem;
  line-height: 1.8;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.15rem;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4.5rem 0;
  }
  .faq-trigger {
    padding: 1.15rem 1.25rem;
    font-size: 0.985rem;
    gap: 1rem;
  }
  .faq-body {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .faq-icon {
    width: 30px;
    height: 30px;
  }
}

/* Contact Section & Form */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-deep);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.channel-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: var(--glass-specular);
  transition: var(--spring-snappy);
}

.channel-card:hover {
  border-color: var(--border-gold);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(30, 96, 145, 0.2);
  color: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-title {
  font-family: var(--font-serif);
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.channel-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

/* Form Panel */
.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-specular);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--glass-shadow), var(--glass-specular);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}

textarea.form-input {
  resize: vertical;
  min-height: 110px;
}

/* Honeypot Trap - Invisible to humans */
.anti-spam-trap {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

.form-feedback-box {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-feedback-box.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.form-feedback-box.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.form-security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: #05080f;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1.25rem;
}

.footer-about-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--gold-glow);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Floating Quick Actions */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(24px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-actions.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: var(--spring-bounce);
}

.fab:hover {
  transform: scale(1.12);
}

.fab-call {
  background: linear-gradient(135deg, #1e6091 0%, #2563eb 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.fab-whatsapp {
  background: #25D366;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Deluxe Appearance & Scroll Reveal Motion System
   ========================================================================== */

/* Base Scroll Reveal (Fade & Slide Up with Micro-Blur) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(4px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Directional Slide-In: From Left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  filter: blur(4px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-left.is-revealed {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Directional Slide-In: From Right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  filter: blur(4px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-right.is-revealed {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Scale & Pop Reveal (for Cards and Media) */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  filter: blur(4px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-scale.is-revealed {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Hero Section Initial Page Load Keyframes */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.93);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.hero-content .hero-eyebrow {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero-content .hero-title {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}

.hero-content .hero-description {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

.hero-content .hero-actions {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.52s both;
}

.hero-content .hero-reassurance {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.hero-visual .hero-media-card {
  animation: heroScaleIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Section Tag Light Sheen Sweep on Reveal */
.section-tag {
  position: relative;
  overflow: hidden;
}

.section-tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.section-header.is-revealed .section-tag::after {
  transform: translateX(350%);
}

/* Before & After Knob Attention Pulse on Reveal */
@keyframes knobAttentionPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 0 0 35px rgba(212, 175, 55, 1);
  }
}

.ba-wrapper.is-revealed .ba-handle-knob {
  animation: knobAttentionPulse 2s cubic-bezier(0.16, 1, 0.3, 1) 1;
}

/* Accessibility: Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal-on-scroll,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .hero-content .hero-eyebrow,
  .hero-content .hero-title,
  .hero-content .hero-description,
  .hero-content .hero-actions,
  .hero-content .hero-reassurance,
  .hero-visual .hero-media-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   Mobile & Tablet Navigation Drawer & Backdrop
   ========================================================================== */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 7, 13, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #0f1628 0%, #080b14 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.drawer-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-specular);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--spring-snappy);
}

.drawer-close-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  color: var(--gold-glow);
  transform: rotate(90deg);
}

.drawer-lang-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.25rem 0 1rem 0;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.drawer-lang-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.drawer-nav {
  flex: 1;
  margin: 0.5rem 0 1.5rem 0;
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid transparent;
  transition: var(--spring-snappy);
}

.drawer-nav-link:hover,
.drawer-nav-link:focus {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--gold-glow);
  transform: translateX(4px);
}

.drawer-link-icon {
  display: flex;
  align-items: center;
  color: var(--gold-primary);
  margin-right: 0.85rem;
}

.drawer-nav-link > span:nth-child(2) {
  flex: 1;
}

.drawer-link-chevron {
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.drawer-nav-link:hover .drawer-link-chevron {
  color: var(--gold-glow);
  transform: translateX(3px);
}

.drawer-bottom-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.drawer-cta-btn {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  border-radius: 10px;
}

.drawer-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--spring-snappy);
}

.drawer-phone-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-glow);
}

.drawer-legal-badge {
  text-align: center;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ==========================================================================
   Comprehensive Tablet & Mobile Responsive Breakpoints
   ========================================================================== */

/* Header Responsive Breakpoints */
@media (max-width: 1240px) {
  .site-header .btn-call {
    display: none;
  }
}

/* Tablet & Smaller Devices (<= 1140px) */
@media (max-width: 1140px) {
  .site-header .nav-links {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-reassurance {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-video-wrapper {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .bento-span-2 {
    grid-column: span 2;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Phones (<= 768px) */
@media (max-width: 768px) {
  .top-notice-bar {
    display: none;
  }
  .site-header .nav-actions .btn-call,
  .site-header .nav-actions .btn-gold {
    display: none;
  }
  .brand-logo {
    padding: 0.25rem 0.65rem;
    border-radius: 10px;
  }
  .brand-logo img {
    height: 56px;
  }
  .nav-container {
    padding: 0.75rem 1.25rem;
  }
  .hero-section {
    padding: 3rem 0 2.5rem 0;
  }
  .hero-title {
    font-size: clamp(2rem, 7.5vw, 2.75rem);
    line-height: 1.2;
  }
  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .before-after-container {
    height: clamp(260px, 55vw, 380px);
    border-radius: 14px;
  }
  .ba-badge-pill {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .bento-span-2 {
    grid-column: span 1;
  }
  .bento-card {
    padding: 1.5rem;
  }
  .portfolio-filters {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
  }
  .filter-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.8125rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-form-card {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
  }
  .floating-whatsapp .whatsapp-tooltip {
    display: none;
  }
}

/* Extra Small Phones (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .mobile-drawer {
    width: 92%;
    padding: 1.25rem 1rem;
  }
  .drawer-logo-img {
    height: 38px;
  }
  .drawer-nav-link {
    padding: 0.75rem 0.85rem;
    font-size: 0.95rem;
  }
  /* Prevent iOS automatic zoom on focus */
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* ==========================================================================
   WhatsApp Integration & Floating Luxury Widget
   ========================================================================== */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  text-decoration: none;
  font-family: var(--font-display);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  filter: brightness(1.08);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  z-index: -1;
  animation: waPulse 2.2s infinite ease-out;
}

@keyframes waPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp .whatsapp-tooltip {
  position: absolute;
  right: 74px;
  background: rgba(13, 18, 31, 0.95);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 12px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .floating-whatsapp .whatsapp-tooltip {
    display: none;
  }
}

/* ==========================================================================
   Official Social Media Styling (YouTube, Instagram, WhatsApp)
   ========================================================================== */

/* 1. Top Notice Bar Social Icons */
.top-social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 4px;
}

.top-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--spring-snappy);
}

.top-social-icon:hover {
  transform: translateY(-2px) scale(1.08);
  color: #ffffff;
}

.top-social-icon.yt-icon:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.45);
}

.top-social-icon.ig-icon:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.45);
}

/* 2. Mobile Drawer Social Row */
.drawer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0.75rem 0 0.25rem 0;
  padding: 0.5rem 0;
}

.drawer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--spring-snappy);
}

.drawer-social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  color: #ffffff;
}

.drawer-social-btn.yt-btn:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.drawer-social-btn.ig-btn:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
}

.drawer-social-btn.wa-btn:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* 3. Universal Social Badge Links (Used in Contact & Footer) */
.social-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-specular);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
  transition: var(--spring-snappy);
}

.social-badge-link svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.social-badge-link:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.social-badge-link:hover svg {
  transform: scale(1.1);
}

.social-badge-link.yt-badge:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.45);
}

.social-badge-link.ig-badge:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(220, 39, 67, 0.45);
}

.social-badge-link.wa-badge:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

/* 4. Footer Social Wrapper */
.footer-social-wrapper {
  margin-top: 1.25rem;
}

.footer-social-title {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-glow);
  margin-bottom: 0.65rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* ==========================================================================
   Dedicated Deluxe Jobsite Photo Gallery (2026 Bento/Masonry Standard)
   ========================================================================== */
.gallery-section {
  padding: 6.5rem 0 6rem 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(13, 18, 31, 0.95) 50%, var(--bg-deep) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 15%;
  right: -10vw;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(80px);
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.gal-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--spring-snappy);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 11;
  user-select: none;
  -webkit-user-select: none;
}

.gal-filter-btn:hover {
  color: var(--text-primary);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.gal-filter-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(30, 96, 145, 0.25) 100%);
  color: #fff;
  border-color: var(--gold-glow);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 5;
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-specular);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6), var(--glass-specular);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-card.is-hidden {
  display: none !important;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 22px 45px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
}

.gallery-media {
  position: relative;
  width: 100%;
  height: 310px;
  overflow: hidden;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-media img {
  transform: scale(1.06);
}

.gallery-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
}

.gallery-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(8, 11, 18, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 9999px;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-glow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 18, 0) 30%, rgba(8, 11, 18, 0.88) 75%, rgba(8, 11, 18, 0.98) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.5rem;
  z-index: 2;
  transition: background 0.35s ease;
}

.gallery-card:hover .gallery-overlay {
  background: linear-gradient(180deg, rgba(8, 11, 18, 0.15) 0%, rgba(8, 11, 18, 0.85) 60%, rgba(8, 11, 18, 0.98) 100%);
}

.gallery-info {
  flex: 1;
  padding-right: 0.85rem;
}

.gallery-cat-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--gold-glow);
  margin-bottom: 0.35rem;
}

.gallery-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.gallery-card-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.gallery-card:hover .gallery-card-desc {
  opacity: 1;
  color: #e2e8f0;
}

.gallery-zoom-trigger {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-specular);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  transition: var(--spring-snappy);
}

.gallery-card:hover .gallery-zoom-trigger {
  background: var(--gold-primary);
  border-color: var(--gold-glow);
  color: #080b12;
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gallery-media {
    height: 270px;
  }
  .gallery-overlay {
    padding: 1.25rem 1rem;
  }
  .gallery-card-title {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Gallery On-Site Video Showcase (2026 Luxury Standard)
   ========================================================================== */
.gallery-video-banner {
  margin: 4.5rem auto 1.5rem;
  max-width: 1200px;
  background: linear-gradient(145deg, rgba(20, 28, 46, 0.94) 0%, rgba(13, 18, 31, 0.98) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 3rem 3.25rem;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 35px -10px rgba(212, 175, 55, 0.22);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  scroll-margin-top: 110px;
}

.gallery-video-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.video-banner-content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  z-index: 1;
}

.video-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.video-duration-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  padding: 0.22rem 0.7rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
}

.video-banner-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.video-banner-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.video-banner-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.4rem 0 0.6rem;
  padding: 0.9rem 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.video-feat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.video-feat-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.video-banner-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.25rem;
}

/* Custom Luxury Video Frame & Play Overlay */
.video-banner-player {
  position: relative;
  z-index: 1;
  width: 100%;
}

.custom-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.85), 0 0 25px -5px rgba(212, 175, 55, 0.2);
  transition: all 0.35s ease;
}

.custom-video-frame:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.9), 0 0 35px -5px rgba(212, 175, 55, 0.35);
}

.custom-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 11, 18, 0.35) 0%, rgba(8, 11, 18, 0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.video-play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-btn-pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.play-btn-pulse::before,
.play-btn-pulse::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  animation: playPulseRing 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.play-btn-pulse::after {
  animation-delay: 1.2s;
}

@keyframes playPulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.85); opacity: 0; }
}

.luxury-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #b8860b 100%);
  color: #080b12;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  padding-left: 5px;
}

.video-play-overlay:hover .luxury-play-btn {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.7);
}

.play-overlay-caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.play-caption-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.play-caption-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.video-top-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(8, 11, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f8fafc;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 11;
  pointer-events: none;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: liveDotPulse 1.8s infinite;
}

@keyframes liveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ==========================================================================
   Deluxe Custom Video Controls (Seek / Rewind / Fast-Forward / Scrubber)
   ========================================================================== */
.custom-video-frame {
  user-select: none;
}

.custom-video-frame:focus {
  outline: none;
}

/* Ripple Seek Feedback Overlay */
.video-seek-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.7);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(8, 11, 18, 0.85);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: #ffd700;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  z-index: 15;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-seek-indicator.seek-back {
  left: 14%;
}

.video-seek-indicator.seek-forward {
  right: 14%;
}

.video-seek-indicator.is-active {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

/* Custom Controls Bar Container */
.video-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(6, 9, 15, 0.96) 0%, rgba(6, 9, 15, 0.75) 65%, transparent 100%);
  padding: 1.5rem 1.25rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 12;
  transition: opacity 0.35s ease, transform 0.35s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.custom-video-frame.is-initial .video-controls-bar {
  display: none;
}

.custom-video-frame.autohide-controls .video-controls-bar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.custom-video-frame.autohide-controls {
  cursor: none;
}

/* Timeline Track & Scrubber */
.video-timeline-container {
  position: relative;
  width: 100%;
  height: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.video-timeline-track {
  position: relative;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  overflow: visible;
  transition: height 0.15s ease;
}

.video-timeline-container:hover .video-timeline-track,
.video-timeline-container.is-scrubbing .video-timeline-track {
  height: 8px;
}

.video-timeline-buffered {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  pointer-events: none;
  transition: width 0.25s linear;
}

.video-timeline-played {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, #b8860b 0%, #ffd700 100%);
  border-radius: 9999px;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.video-timeline-handle {
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ffd700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 12px rgba(255, 215, 0, 0.9);
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-timeline-container:hover .video-timeline-handle,
.video-timeline-container.is-scrubbing .video-timeline-handle {
  transform: translateY(-50%) scale(1);
}

.video-timeline-tooltip {
  position: absolute;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(10, 14, 23, 0.92);
  color: #ffd700;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 6px;
  padding: 2px 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  z-index: 20;
}

.video-timeline-container:hover .video-timeline-tooltip,
.video-timeline-container.is-scrubbing .video-timeline-tooltip {
  opacity: 1;
}

/* Toolbar Controls Row */
.video-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.video-controls-left,
.video-controls-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v-ctrl-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
  border-radius: 8px;
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

.v-ctrl-btn:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: rgba(212, 175, 55, 0.55);
  color: #ffd700;
  transform: translateY(-1px);
}

.v-ctrl-btn:active {
  transform: translateY(1px);
}

.v-ctrl-btn.play-pause-btn {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35) 0%, rgba(184, 134, 11, 0.45) 100%);
  border-color: rgba(212, 175, 55, 0.6);
  color: #ffd700;
  padding: 7px 12px;
}

.v-ctrl-btn.play-pause-btn:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5) 0%, rgba(184, 134, 11, 0.65) 100%);
}

.v-ctrl-btn.seek-btn {
  padding: 6px 9px;
  color: #e2e8f0;
}

.v-ctrl-btn.seek-btn:hover {
  color: #ffd700;
}

.seek-label {
  font-size: 0.72rem;
  letter-spacing: -0.02em;
}

/* Icon Toggling States */
.icon-pause {
  display: none;
}
.custom-video-frame.is-playing .icon-play {
  display: none;
}
.custom-video-frame.is-playing .icon-pause {
  display: block;
}

.icon-volume-muted {
  display: none;
}
.custom-video-frame.is-muted .icon-volume-high {
  display: none;
}
.custom-video-frame.is-muted .icon-volume-muted {
  display: block;
  color: #ef4444;
}

.icon-fs-exit {
  display: none;
}
.custom-video-frame.is-fullscreen .icon-fs-enter {
  display: none;
}
.custom-video-frame.is-fullscreen .icon-fs-exit {
  display: block;
}

/* Time Counters */
.video-time-display {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #94a3b8;
  padding: 0 0.35rem;
}

#v-time-current {
  color: #f8fafc;
  font-weight: 600;
}

.time-sep {
  color: #64748b;
  font-size: 0.7rem;
}

/* Volume Slider Group */
.video-volume-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.v-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 65px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.25);
  outline: none;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}

.v-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffd700;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.7);
}

.v-volume-slider::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffd700;
  border: none;
  cursor: pointer;
}

@media (max-width: 640px) {
  .v-volume-slider {
    display: none;
  }
  .v-ctrl-btn.seek-btn {
    padding: 5px 7px;
  }
  .seek-label {
    display: none;
  }
  .video-time-display {
    font-size: 0.7rem;
  }
}

@media (max-width: 991px) {
  .gallery-video-banner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 2.25rem 1.75rem;
    margin-top: 3.5rem;
  }
  .video-banner-title {
    font-size: 1.65rem;
  }
  .luxury-play-btn {
    width: 62px;
    height: 62px;
  }
  .luxury-play-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================================================
   Deluxe Multi-Typography System Utilities
   ========================================================================== */
.font-serif {
  font-family: var(--font-serif) !important;
}

.font-editorial {
  font-family: var(--font-editorial) !important;
}

.font-display {
  font-family: var(--font-display) !important;
}

.font-body {
  font-family: var(--font-body) !important;
}

.font-mono {
  font-family: var(--font-mono) !important;
}

.editorial-italic {
  font-family: var(--font-editorial) !important;
  font-style: italic !important;
}

/* ==========================================================================
   Extreme Performance & Core Web Vitals Optimization
   ========================================================================== */
.services-section,
.ba-section,
.portfolio-section,
.gallery-section,
.why-section,
.testimonials-section,
.faq-section,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* Image Aspect-Ratio Protection for Zero CLS */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

