/* ==========================================================================
   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=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@500;700&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);

  /* Typography Families */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* 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;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  letter-spacing: 0.03em;
}

.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: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.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-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.35rem 0.85rem;
  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;
}

.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: 480px;
  object-fit: cover;
  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.5rem 1rem;
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  box-shadow: var(--glass-specular);
  backdrop-filter: blur(12px);
  transition: var(--spring-snappy);
}

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

.stat-number {
  font-family: var(--font-display);
  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.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 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-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-glow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.35rem 0.85rem;
  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.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-specular);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  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-size: 0.9375rem;
  color: var(--text-secondary);
}

/* 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: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  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: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  height: 230px;
}

.bento-card-media img {
  width: 100%;
  height: 100%;
  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.5rem;
}

.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: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.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-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gold-glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  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-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.calc-result-bracket {
  font-family: var(--font-display);
  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-size: 0.9375rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

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

/* 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-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  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-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.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;
}

.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);
}

/* Scroll Reveal Animation Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   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
   ========================================================================== */

/* Tablet & Smaller Devices (<= 1024px) */
@media (max-width: 1024px) {
  .site-header .nav-links {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .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 img {
    height: 42px;
  }
  .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;
}


