/* ==========================================================================
   TEJAS INTERIORS - MODERN DESIGN SYSTEM & STYLESHEET
   Brand: Deep Royal Blue (#0A4B8F) & Warm Golden Glow (#F3A712)
   Tagline: Designing Dreams Into Reality
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary: #0A4B8F;
  --primary-dark: #063160;
  --primary-deep: #031B38;
  --primary-light: #1664B8;
  --primary-subtle: #EEF5FC;
  --primary-glow: rgba(10, 75, 143, 0.18);

  --accent-gold: #F3A712;
  --accent-gold-dark: #D48E06;
  --accent-gold-light: #FDE8B5;
  --accent-gold-glow: rgba(243, 167, 18, 0.25);
  
  --secondary: #2B3A4A;
  
  /* Neutrals */
  --neutral-950: #090E17;
  --neutral-900: #0F172A;
  --neutral-800: #1E293B;
  --neutral-700: #334155;
  --neutral-600: #475569;
  --neutral-500: #64748B;
  --neutral-400: #94A3B8;
  --neutral-300: #CBD5E1;
  --neutral-200: #E2E8F0;
  --neutral-100: #F1F5F9;
  --neutral-50: #F8FAFC;
  
  --bg-warm: #FAF8F5;
  --bg-sand: #F4EFEA;
  --surface: #FFFFFF;
  --surface-glass: rgba(255, 255, 255, 0.85);
  --surface-glass-dark: rgba(15, 23, 42, 0.85);
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Cinzel', serif;

  /* Elevations & Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.18);
  --shadow-gold: 0 10px 30px rgba(243, 167, 18, 0.28);
  --shadow-primary: 0 10px 30px rgba(10, 75, 143, 0.25);

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Container */
  --max-width: 1280px;
  --header-height: 84px;
}

/* Reset & Base Setup */
*, *::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 {
  font-family: var(--font-sans);
  background-color: var(--bg-warm);
  color: var(--neutral-800);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--neutral-100);
}
::-webkit-scrollbar-thumb {
  background: var(--neutral-400);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 6rem;
  position: relative;
}

.section-dark {
  background-color: var(--neutral-950);
  color: var(--neutral-50);
}

.section-blue {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 60%, var(--primary) 100%);
  color: var(--surface);
}

.section-light-gradient {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--surface) 50%, var(--neutral-50) 100%);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(10, 75, 143, 0.12);
}

.section-tag.gold {
  color: var(--accent-gold-dark);
  background: var(--accent-gold-light);
  border-color: rgba(243, 167, 18, 0.25);
}

.section-tag.light {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.section-dark .section-title,
.section-dark-luxury .section-title,
.transform-section .section-title,
.gallery-luxury-section .section-title,
.section-blue .section-title {
  color: #ffffff !important;
}

.section-desc {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--neutral-600);
  line-height: 1.7;
  max-width: 720px;
  margin-inline: auto;
}

.section-dark .section-desc,
.section-dark-luxury .section-desc,
.transform-section .section-desc,
.gallery-luxury-section .section-desc {
  color: rgba(255, 255, 255, 0.8) !important;
}

.section-blue .section-desc {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Universal Typography Utilities */
.text-white {
  color: #ffffff !important;
}

.text-muted {
  color: rgba(255, 255, 255, 0.75) !important;
}

.text-dark {
  color: var(--neutral-900) !important;
}

.text-gold {
  color: var(--accent-gold) !important;
}

.center {
  text-align: center !important;
  margin-inline: auto;
}

/* Button Component Styles */
/* Button Component Styles (With Dynamic Animations) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.12);
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(25deg);
  pointer-events: none;
  transition: none;
}

.btn:hover::after {
  left: 160%;
  transition: left 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1664B8 50%, var(--primary) 100%);
  background-size: 200% auto;
  color: var(--surface);
  box-shadow: 0 6px 20px rgba(10, 75, 143, 0.35);
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(10, 75, 143, 0.45), 0 0 20px rgba(22, 100, 184, 0.3);
  color: var(--surface);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #FBBF24 50%, #D97706 100%);
  background-size: 200% auto;
  color: var(--neutral-950);
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(243, 167, 18, 0.35);
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(243, 167, 18, 0.55), 0 0 25px rgba(251, 191, 36, 0.4);
  color: var(--neutral-950);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--surface);
  color: var(--neutral-950);
  border-color: var(--surface);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--surface);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(10, 75, 143, 0.3);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   HEADER & NAVIGATION (TRANSPARENT MINIMAL LUXURY)
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: transparent !important;
  background-color: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.site-header.scrolled {
  position: fixed;
  background: rgba(9, 14, 23, 0.92) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
  height: 72px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-card {
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast);
}

.brand-logo-card:hover {
  transform: scale(1.03);
}

.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.site-header.scrolled .brand-logo-img {
  height: 34px;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--neutral-700);
  position: relative;
  padding-block: 0.5rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold));
  border-radius: 2px;
  transition: width var(--transition-normal);
}

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

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

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

.phone-quick-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  transition: all var(--transition-fast);
}

.phone-quick-link:hover {
  background: var(--primary);
  color: var(--surface);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--neutral-800);
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--surface);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transition: right var(--transition-smooth);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

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

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.mobile-nav-links .nav-link {
  font-size: 1.15rem;
  color: var(--neutral-800);
  display: block;
}

/* ==========================================================================
   TRANSPARENT MINIMAL LUXURY HEADER & HERO
   ========================================================================== */
.sq-transparent-header,
.sq-dark-header {
  background: transparent !important;
  background-color: transparent !important;
  border-bottom: none !important;
}

.sq-nav-links .nav-link {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.25rem;
  transition: opacity 0.2s ease;
}

.sq-nav-links .nav-link::after {
  display: none;
}

.sq-nav-links .nav-link:hover,
.sq-nav-links .nav-link.active {
  opacity: 0.7;
  color: #ffffff;
}

.sq-nav-links .nav-link svg {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.sq-nav-links .nav-link:hover svg {
  transform: translateY(2px);
}

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

/* Luxury Animated Call Us Button */
.sq-call-btn {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.48rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Light shimmer sweep on hover */
.sq-call-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(25deg);
  pointer-events: none;
  transition: none;
}

.sq-call-btn:hover {
  background: rgba(243, 167, 18, 0.18);
  border-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(243, 167, 18, 0.35), 0 0 15px rgba(243, 167, 18, 0.25);
}

.sq-call-btn:hover::after {
  left: 150%;
  transition: left 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.call-icon-pulse {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--neutral-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(243, 167, 18, 0.4);
}

/* Idle State: Gentle pulse */
.phone-anim-icon {
  animation: phoneIdleWave 3s ease-in-out infinite;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.pulse-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  animation: ripplePulse 2.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  pointer-events: none;
}

/* HOVER STATE ANIMATION: Rapid ringing vibration & glowing boost */
.sq-call-btn:hover .call-icon-pulse {
  background: #ffffff;
  color: var(--neutral-900);
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.8), 0 0 25px rgba(243, 167, 18, 0.7);
}

.sq-call-btn:hover .phone-anim-icon {
  animation: phoneRingRapid 0.35s ease-in-out infinite alternate !important;
  color: var(--neutral-900);
}

.sq-call-btn:hover .pulse-ring {
  animation: ripplePulseRapid 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  border-color: #ffffff;
}

/* Keyframes for Idle and Rapid Hover */
@keyframes phoneIdleWave {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  15%, 25% {
    transform: rotate(-10deg) scale(1.05);
  }
  20%, 30% {
    transform: rotate(10deg) scale(1.05);
  }
  35% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes phoneRingRapid {
  0% {
    transform: rotate(-22deg) scale(1.18);
  }
  50% {
    transform: rotate(0deg) scale(1.22);
  }
  100% {
    transform: rotate(22deg) scale(1.18);
  }
}

@keyframes ripplePulse {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  50%, 100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes ripplePulseRapid {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ==========================================================================
   GET STARTED / WHITE CTA BUTTONS (WITH HOVER LIGHT SHINE)
   ========================================================================== */
.btn-sq-white {
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Plus Jakarta Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.btn-sq-white::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: rotate(25deg);
  pointer-events: none;
  transition: none;
}

.btn-sq-white:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 255, 255, 0.35);
}

.btn-sq-white:hover::after {
  left: 150%;
  transition: left 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-sq-lg {
  padding: 0.95rem 2.4rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   HERO SECTION (SQUARESPACE MINIMALIST CENTERED SLIDER)
   ========================================================================== */
.hero-sq-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: #000000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--header-height);
  box-sizing: border-box;
}

.hero-slides-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.85s;
  z-index: 1;
  pointer-events: none;
  padding-top: var(--header-height);
  padding-bottom: 5.5rem;
  box-sizing: border-box;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 7.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.06);
}

.hero-sq-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-sq-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  margin: auto;
  text-align: center;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-sq-title {
  font-family: -apple-system, BlinkMacSystemFont, "Plus Jakarta Sans", "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-top: 0;
  margin-bottom: 1rem;
  max-width: 800px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 25px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(20px);
}

.hero-slide.active .hero-sq-title {
  animation: heroFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.15s;
}

.hero-sq-subtitle {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 500;
  color: #ffffff;
  max-width: 660px;
  margin-inline: auto;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1.85rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
}

.hero-slide.active .hero-sq-subtitle {
  animation: heroFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

.hero-sq-cta-wrap {
  margin-bottom: 0.9rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
}

.hero-slide.active .hero-sq-cta-wrap {
  animation: heroFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.45s;
}

.hero-sq-note {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.015em;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(16px);
}

.hero-slide.active .hero-sq-note {
  animation: heroFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.55s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dedicated Bottom Navigation Bar that NEVER collides with content */
.hero-sq-bottom-nav {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: 1.75rem;
  margin-top: auto;
}

.hero-sq-pills-wrap {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.hero-sq-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  padding: 0.5rem 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: all 0.25s ease;
  outline: none;
  flex: 1;
  text-align: left;
}

.hero-sq-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-sq-pill.active {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff;
}

.hero-sq-pill-text {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-progress-track {
  width: 100%;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.hero-progress-bar {
  width: 0%;
  height: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: width 0.1s linear;
}

.rating-stars {
  display: flex;
  gap: 3px;
  color: var(--accent-gold);
}

/* ==========================================================================
   STATS BAR BANNER
   ========================================================================== */
.stats-banner {
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--primary-deep) 100%);
  color: var(--surface);
  padding-block: 3rem;
  position: relative;
  z-index: 10;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-box {
  text-align: center;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--neutral-300);
  font-weight: 500;
}

/* ==========================================================================
   BEFORE & AFTER INTERACTIVE TRANSFORMATION SHOWCASE
   ========================================================================== */
.transform-section {
  background: linear-gradient(180deg, #090e17 0%, #0d1522 50%, #090e17 100%);
  position: relative;
  overflow: hidden;
}

.transform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(243, 167, 18, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Category Tabs */
.transform-tabs-nav {
  display: inline-flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.75rem;
}

.transform-tab-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.transform-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.transform-tab-btn.active {
  background: var(--accent-gold);
  color: var(--neutral-950);
  box-shadow: 0 4px 15px rgba(243, 167, 18, 0.35);
}

.transform-tab-btn svg {
  stroke: currentColor;
}

/* Stage Card */
.before-after-wrapper {
  max-width: 1060px;
  margin-inline: auto;
  position: relative;
}

.transform-stage-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
}

.comparison-slider-container {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
}

.comparison-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.comparison-img.after-img {
  z-index: 1;
}

.comparison-before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid #ffffff;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
  transition: width 0.05s linear;
}

.comparison-before-wrapper .before-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1060px;
  max-width: none;
  object-fit: cover;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0px;
  z-index: 10;
  pointer-events: none;
}

.comparison-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(243, 167, 18, 0.7), 0 4px 15px rgba(0, 0, 0, 0.5);
  border: 2.5px solid var(--accent-gold);
  cursor: ew-resize;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comparison-handle-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 35px rgba(243, 167, 18, 0.9), 0 6px 20px rgba(0, 0, 0, 0.6);
}

.comparison-badge {
  position: absolute;
  top: 1.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 6;
  backdrop-filter: blur(12px);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.comparison-badge.before {
  left: 1.5rem;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.comparison-badge.after {
  right: 1.5rem;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  border: 1px solid rgba(243, 167, 18, 0.4);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.badge-dot.orange { background: #f97316; box-shadow: 0 0 8px #f97316; }
.badge-dot.green { background: var(--accent-gold); box-shadow: 0 0 8px var(--accent-gold); }

/* Interactive Hotspot Material Pins */
.transform-hotspots-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hotspot-pin {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
}

.hotspot-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(243, 167, 18, 0.35);
  border: 2px solid #ffffff;
  box-shadow: 0 0 15px var(--accent-gold);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hotspot-dot::after {
  content: '+';
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.hotspot-pin:hover .hotspot-dot {
  transform: scale(1.25);
  background: var(--accent-gold);
  box-shadow: 0 0 25px var(--accent-gold);
}

.hotspot-card {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 240px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(243, 167, 18, 0.3);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.hotspot-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.hotspot-card span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.hotspot-pin:hover .hotspot-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* High-Visibility Quick Presets Control Bar */
.transform-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: #0d1522;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
  gap: 1.25rem;
}

.transform-presets-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.transform-presets-label svg {
  color: var(--accent-gold);
}

.transform-presets-group {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.preset-btn {
  background: #1e293b;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.preset-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  pointer-events: none;
  transition: none;
}

.preset-btn:hover::after {
  left: 160%;
  transition: left 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.preset-btn:hover {
  background: #334155;
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(243, 167, 18, 0.3);
}

.preset-btn:hover .preset-dot {
  animation: dotPulsing 0.6s ease-in-out infinite alternate;
}

.preset-btn.active {
  background: var(--accent-gold);
  border-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 25px rgba(243, 167, 18, 0.75), 0 6px 18px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.preset-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  transition: transform 0.2s ease;
}
.orange-dot { background: #f97316; box-shadow: 0 0 8px #f97316; }
.blue-dot { background: #38bdf8; box-shadow: 0 0 8px #38bdf8; }
.gold-dot { background: #10b981; box-shadow: 0 0 8px #10b981; }

@keyframes dotPulsing {
  0% { transform: scale(1); }
  100% { transform: scale(1.45); }
}

.sweep-btn {
  background: linear-gradient(135deg, rgba(243, 167, 18, 0.25) 0%, rgba(243, 167, 18, 0.45) 100%);
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
}

.sweep-btn:hover,
.sweep-btn.active {
  background: var(--accent-gold);
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(243, 167, 18, 0.85);
  transform: translateY(-3px) scale(1.04);
}

/* Project Story and Metadata Box */
.transform-project-meta {
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: rgba(9, 14, 23, 0.9);
}

.meta-project-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.meta-project-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.meta-project-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.project-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.spec-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.spec-stat-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

.spec-stat-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
}

.text-gold { color: var(--accent-gold) !important; }
.text-success { color: #10b981 !important; }

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 75, 143, 0.25);
}

.service-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.service-icon-floating {
  position: absolute;
  bottom: -22px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  border: 3px solid var(--surface);
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-floating {
  background: var(--accent-gold);
  color: var(--neutral-950);
}

.service-body {
  padding: 2.2rem 1.8rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.85rem;
}

.service-text {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-100);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--neutral-700);
  font-weight: 500;
}

.service-feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.service-action-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.service-card:hover .service-action-btn {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

/* ==========================================================================
   INTERACTIVE COST ESTIMATOR / BUDGET CALCULATOR
   ========================================================================== */
.calculator-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--neutral-200);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
}

.calc-step-group {
  margin-bottom: 2.25rem;
}

.calc-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.calc-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

/* Space Type Selector */
.space-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.space-option-btn {
  background: var(--neutral-50);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.space-option-btn svg {
  color: var(--neutral-500);
  transition: color var(--transition-fast);
}

.space-option-btn span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.space-option-btn:hover {
  border-color: var(--primary-light);
  background: var(--primary-subtle);
}

.space-option-btn.selected {
  border-color: var(--primary);
  background: var(--primary-subtle);
}

.space-option-btn.selected svg {
  color: var(--primary);
}

.space-option-btn.selected span {
  color: var(--primary-dark);
  font-weight: 700;
}

/* Package Tier Selector */
.package-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.tier-option-btn {
  background: var(--neutral-50);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 1rem 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}

.tier-option-btn:hover {
  border-color: var(--primary-light);
}

.tier-option-btn.selected {
  border-color: var(--primary);
  background: var(--primary-subtle);
}

.tier-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--neutral-900);
  margin-bottom: 0.2rem;
}

.tier-subtitle {
  font-size: 0.78rem;
  color: var(--neutral-500);
}

/* Range Slider */
.slider-container {
  margin-top: 1rem;
}

.slider-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.slider-val-badge {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
}

.range-input {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--neutral-200);
  accent-color: var(--primary);
  cursor: pointer;
}

/* Calculator Result Panel */
.calc-result-panel {
  background: linear-gradient(145deg, var(--neutral-900) 0%, var(--primary-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.calc-result-heading {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.calc-estimated-price {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--surface);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.calc-breakdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  padding-block: 1.25rem;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--neutral-300);
}

.breakdown-row span:last-child {
  font-weight: 700;
  color: var(--surface);
}

/* ==========================================================================
   INTERACTIVE ARCHITECTURAL STUDIO STAGE & MASTERPIECE DECK
   ========================================================================== */
.gallery-luxury-section {
  background: linear-gradient(180deg, #070B11 0%, #0D1522 50%, #070B11 100%);
  position: relative;
  overflow: hidden;
  padding-block: 6.5rem;
}

.gallery-luxury-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(circle, rgba(243, 167, 18, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-luxury-section .section-header {
  margin-bottom: 3.5rem;
}

.gallery-luxury-section .section-tag {
  background: rgba(243, 167, 18, 0.15) !important;
  color: var(--accent-gold) !important;
  border: 1px solid rgba(243, 167, 18, 0.35) !important;
  box-shadow: 0 0 20px rgba(243, 167, 18, 0.2);
}

.gallery-luxury-section .section-title {
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8);
}

.gallery-title-gradient {
  background: linear-gradient(135deg, #F3A712 0%, #FFD700 45%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: none;
  filter: drop-shadow(0 2px 14px rgba(243, 167, 18, 0.45));
}

.gallery-luxury-section .section-desc {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.06rem;
  max-width: 680px;
}

.gallery-filter-wrapper {
  margin-bottom: 2.75rem;
}

.portfolio-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.7rem 1.45rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.filter-count {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--accent-gold);
  color: var(--neutral-950);
  border-color: var(--accent-gold);
  box-shadow: 0 0 25px rgba(243, 167, 18, 0.45);
  transform: translateY(-2px);
}

.filter-btn.active .filter-count {
  background: var(--neutral-950);
  color: var(--accent-gold);
}

/* 1. Cinema Master Stage */
.gallery-studio-showcase {
  max-width: 1280px;
  margin-inline: auto;
}

.studio-cinema-stage {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(243, 167, 18, 0.35);
  background: #090E17;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(243, 167, 18, 0.15);
  margin-bottom: 3.5rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.stage-image-container {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}

.stage-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-gradient-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 14, 23, 0.6) 0%,
    rgba(9, 14, 23, 0.1) 35%,
    rgba(9, 14, 23, 0.5) 60%,
    rgba(9, 14, 23, 0.96) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Hotspots on Stage */
.stage-hotspots-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.stage-hotspots-layer.hidden {
  opacity: 0;
  pointer-events: none;
}

.stage-hotspot-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  cursor: pointer;
  z-index: 15;
}

.pin-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(243, 167, 18, 0.35);
  animation: pinPulse 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.pin-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--accent-gold);
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(243, 167, 18, 0.9);
  transition: transform 0.25s ease;
}

.stage-hotspot-pin:hover .pin-core {
  transform: translate(-50%, -50%) scale(1.3);
}

.pin-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(9, 14, 23, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(243, 167, 18, 0.5);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 20;
}

.pin-tooltip strong {
  display: block;
  font-size: 0.82rem;
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.pin-tooltip span {
  display: block;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.85);
}

.stage-hotspot-pin:hover .pin-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@keyframes pinPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Stage Floating HUDs */
.stage-top-hud {
  position: absolute;
  top: 1.75rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.stage-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stage-badge {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #D97706 100%);
  color: #000000;
  font-weight: 900;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(243, 167, 18, 0.5);
}

.stage-counter-pill {
  background: rgba(9, 14, 23, 0.75);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stage-top-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.stage-hud-btn {
  background: rgba(9, 14, 23, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stage-hud-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.stage-hud-btn.active {
  background: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
}

.stage-hud-btn.saved {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

/* Stage Bottom HUD */
.stage-bottom-hud {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.25rem 2.5rem 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  z-index: 12;
  background: linear-gradient(180deg, rgba(9, 14, 23, 0) 0%, rgba(9, 14, 23, 0.9) 35%, rgba(9, 14, 23, 0.98) 100%);
  backdrop-filter: blur(8px);
}

.stage-info-column {
  flex: 1;
  max-width: 750px;
}

.stage-meta-pills {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.meta-room-tag {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.meta-spec-pill {
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stage-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.stage-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.stage-materials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.mat-pill {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Stage Actions */
.stage-action-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  min-width: 240px;
}

.stage-cta-btn {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #D97706 100%);
  color: #000000;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 25px rgba(243, 167, 18, 0.4);
  white-space: nowrap;
}

.stage-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(243, 167, 18, 0.6);
}

.stage-cta-outline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.25s ease;
}

.stage-cta-outline:hover {
  color: var(--accent-gold);
  transform: translateX(3px);
}

/* Stage Nav Arrows */
.stage-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(9, 14, 23, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 15;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.stage-prev-btn { left: 1.5rem; }
.stage-next-btn { right: 1.5rem; }

.stage-nav-arrow:hover {
  background: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(243, 167, 18, 0.5);
}

/* 2. Interactive Masterpiece Deck */
.studio-deck-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-inline: 0.5rem;
}

.deck-subtitle {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.25rem;
}

.deck-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.deck-controls {
  display: flex;
  gap: 0.5rem;
}

.deck-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.deck-nav-btn:hover {
  background: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
}

/* Deck Track Carousel */
.studio-deck-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.deck-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.deck-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 167, 18, 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.deck-card.active {
  border-color: var(--accent-gold);
  background: rgba(243, 167, 18, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(243, 167, 18, 0.3);
  transform: translateY(-6px);
}

.deck-card-img-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #0f172a;
}

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

.deck-card:hover .deck-card-img,
.deck-card.active .deck-card-img {
  transform: scale(1.08);
}

.deck-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(9, 14, 23, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.deck-card.active .deck-card-badge {
  background: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
}

.deck-card-body {
  padding: 1.1rem 1.2rem;
}

.deck-card-room {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.2rem;
}

.deck-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.deck-card-meta {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

/* ==========================================================================
   FIND YOUR INTERIOR STYLE QUIZ
   ========================================================================== */
.quiz-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--neutral-200);
  max-width: 920px;
  margin-inline: auto;
}

.quiz-progress-bar {
  height: 6px;
  width: 100%;
  background: var(--neutral-200);
  border-radius: var(--radius-full);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 33.3%;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold));
  transition: width var(--transition-normal);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1.75rem;
  text-align: center;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.quiz-option-card {
  background: var(--neutral-50);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.quiz-option-card:hover {
  border-color: var(--primary);
  background: var(--primary-subtle);
  transform: translateY(-2px);
}

.quiz-option-card.selected {
  border-color: var(--primary);
  background: var(--primary-subtle);
  box-shadow: var(--shadow-sm);
}

.quiz-option-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.quiz-option-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--neutral-900);
  margin-bottom: 0.2rem;
}

.quiz-option-desc {
  font-size: 0.85rem;
  color: var(--neutral-600);
}

.quiz-result-box {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-subtle) 0%, var(--accent-gold-light) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 75, 143, 0.15);
}

.quiz-result-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.quiz-result-desc {
  font-size: 1.05rem;
  color: var(--neutral-700);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ==========================================================================
   DESIGN PROCESS (ROADMAP)
   ========================================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 2rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-gold) 100%);
  z-index: 0;
}

.process-step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-num-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.process-step-card:hover .process-num-circle {
  background: var(--primary);
  color: var(--surface);
  transform: scale(1.1);
  box-shadow: var(--shadow-primary);
}

.process-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.6rem;
}

.process-text {
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ==========================================================================
   WHY CHOOSE TEJAS INTERIORS
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 75, 143, 0.25);
}

.why-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.why-card:hover .why-icon-box {
  background: var(--accent-gold);
  color: var(--neutral-950);
}

.why-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.75rem;
}

.why-card-desc {
  font-size: 0.92rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ==========================================================================
   CLIENT TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.75rem;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.author-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--neutral-900);
}

.author-project {
  font-size: 0.8rem;
  color: var(--neutral-500);
}

/* ==========================================================================
   CONSULTATION BOOKING & CONTACT SUITE
   ========================================================================== */
.booking-section-wrapper {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--neutral-200);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.booking-info-panel {
  background: linear-gradient(145deg, var(--neutral-900) 0%, var(--primary-deep) 100%);
  color: var(--surface);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-info-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.contact-detail-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-block: 2.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--surface);
}

.booking-form-panel {
  padding: 3.5rem;
  background: var(--surface);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--neutral-800);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--neutral-200);
  background: var(--neutral-50);
  color: var(--neutral-900);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  background: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-subtle);
}

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

/* ==========================================================================
   MODAL & SUCCESS CONFIRMATION
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.modal-container {
  background: var(--surface);
  border-radius: var(--radius-xl);
  max-width: 550px;
  width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
  position: relative;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-icon-success {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  color: var(--accent-gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(243, 167, 18, 0.3);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 0.75rem;
}

.modal-desc {
  font-size: 1rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--neutral-400);
  cursor: pointer;
  padding: 0.5rem;
}

.modal-close-btn:hover {
  color: var(--neutral-900);
}

/* Interactive 4K Cinema Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 23, 0.96);
  backdrop-filter: blur(20px);
  z-index: 1;
}

.lightbox-top-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
}

.lightbox-project-badge {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(243, 167, 18, 0.3);
}

.lightbox-controls {
  display: flex;
  gap: 0.75rem;
}

.lightbox-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-btn:hover {
  background: var(--accent-gold);
  color: var(--neutral-950);
  border-color: var(--accent-gold);
}

.lightbox-btn.close-btn:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

/* Lightbox Stage */
.lightbox-stage {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 4rem;
  overflow: hidden;
}

.lightbox-img-wrap {
  max-width: 85vw;
  max-height: 68vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.lightbox-img-wrap.zoomed {
  transform: scale(1.35);
  cursor: zoom-out;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* Navigation Arrows */
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-nav-btn.prev { left: 1.75rem; }
.lightbox-nav-btn.next { right: 1.75rem; }

.lightbox-nav-btn:hover {
  background: var(--accent-gold);
  color: var(--neutral-950);
  border-color: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(243, 167, 18, 0.6);
}

/* Bottom Spec Bar */
.lightbox-bottom-bar {
  position: relative;
  z-index: 10;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.lightbox-project-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.lightbox-project-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ==========================================================================
   FLOATING WHATSAPP & ACTION BUTTON
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
  color: #FFFFFF;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--neutral-950);
  color: var(--neutral-400);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(1.1);
}

.footer-brand-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--neutral-400);
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 1.5rem;
}

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

.footer-link {
  font-size: 0.92rem;
  color: var(--neutral-400);
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--surface);
  font-size: 0.9rem;
}

.newsletter-input:focus {
  border-color: var(--accent-gold);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}

.social-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
  color: var(--surface);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-sq-content {
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 6.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .stat-box:nth-child(2)::after {
    display: none;
  }

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

  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .process-timeline::before {
    display: none;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-inline: auto;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links-desktop,
  .sq-call-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    color: #ffffff;
  }

  .hero-sq-section,
  .hero-slide,
  .hero-slides-wrapper {
    min-height: 90vh;
  }

  .hero-sq-content {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 2rem;
    padding-inline: 1.25rem;
  }

  .hero-sq-title {
    font-size: 1.95rem;
    line-height: 1.18;
    margin-bottom: 1rem;
  }

  .hero-sq-subtitle {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .btn-sq-lg {
    width: 100%;
    max-width: 280px;
    padding: 0.95rem 1.8rem;
  }

  .hero-sq-bottom-nav {
    padding-bottom: 1.25rem;
  }

  .hero-sq-pills-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    padding-inline: 0.75rem;
  }

  .hero-sq-pill {
    padding: 0.45rem 0.5rem;
  }

  .hero-sq-pill-text {
    font-size: 0.62rem;
    text-align: center;
  }

  .section {
    padding-block: 4rem;
  }

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

  .calculator-card {
    padding: 2rem 1.5rem;
  }

  .space-type-grid,
  .package-tier-grid {
    grid-template-columns: 1fr;
  }

  .stage-image-container {
    height: 480px;
  }

  .stage-top-hud {
    top: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .stage-bottom-hud {
    padding: 1.5rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .stage-title {
    font-size: 1.4rem;
  }

  .stage-action-column {
    align-items: stretch;
  }

  .stage-cta-btn {
    justify-content: center;
  }

  .studio-deck-track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .lightbox-stage {
    padding-inline: 1rem;
  }

  .lightbox-img-wrap {
    max-width: 95vw;
    max-height: 55vh;
  }

  .lightbox-nav-btn {
    width: 42px;
    height: 42px;
  }

  .lightbox-nav-btn.prev { left: 0.5rem; }
  .lightbox-nav-btn.next { right: 0.5rem; }

  .lightbox-bottom-bar {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
  }

  .quiz-options-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-info-panel,
  .booking-form-panel {
    padding: 2.5rem 1.5rem;
  }

  .comparison-slider-container {
    height: 360px;
  }

  .transform-tabs-nav {
    width: 100%;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    border-radius: var(--radius-lg);
  }

  .transform-tab-btn {
    flex: 1;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .transform-controls-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .transform-presets-group {
    width: 100%;
    justify-content: space-between;
  }

  .transform-project-meta {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .project-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
   POLICY & LEGAL PAGES DESIGN SYSTEM (PRIVACY, TERMS, WARRANTY)
   ========================================================================== */
.policy-hero {
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  background: linear-gradient(135deg, var(--neutral-950) 0%, var(--primary-deep) 60%, var(--primary-dark) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(243, 167, 18, 0.2);
}

.policy-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(243, 167, 18, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.policy-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--neutral-400);
  margin-bottom: 1.25rem;
}

.policy-breadcrumbs a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.policy-breadcrumbs a:hover {
  color: var(--accent-gold);
}

.policy-breadcrumbs .current {
  color: var(--accent-gold);
  font-weight: 600;
}

.policy-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #ffffff;
}

.policy-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 750px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.policy-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.policy-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  color: var(--accent-gold-light);
  font-weight: 600;
}

/* Policy Content Grid */
.policy-section {
  padding: 4rem 0 6rem;
  background: var(--bg-warm);
}

.policy-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sticky Sidebar */
.policy-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  background: var(--surface);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.policy-sidebar-title {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--primary-subtle);
}

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

.policy-nav-link {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  color: var(--neutral-600);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.policy-nav-link:hover,
.policy-nav-link.active {
  background: var(--primary-subtle);
  color: var(--primary);
  border-left-color: var(--accent-gold);
  font-weight: 600;
  padding-left: 1rem;
}

.policy-sidebar-help {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--neutral-200);
  font-size: 0.85rem;
}

.policy-sidebar-help strong {
  display: block;
  color: var(--neutral-900);
  margin-bottom: 0.35rem;
}

/* Main Content Cards */
.policy-content-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.policy-block {
  background: var(--surface);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal);
}

.policy-block:hover {
  box-shadow: var(--shadow-md);
}

.policy-block-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-block-heading .heading-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 800;
}

.policy-block p {
  color: var(--neutral-700);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.policy-block p:last-child {
  margin-bottom: 0;
}

.policy-block ul,
.policy-block ol {
  padding-left: 1.35rem;
  margin-bottom: 1.25rem;
  color: var(--neutral-700);
}

.policy-block li {
  margin-bottom: 0.6rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.policy-callout {
  background: #fffbf0;
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: #714b00;
}

.policy-callout strong {
  color: #452c00;
}

.policy-callout-primary {
  background: var(--primary-subtle);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--primary-dark);
}

/* Warranty Coverage Matrix Table */
.warranty-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
}

.warranty-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
  background: var(--surface);
}

.warranty-table th {
  background: var(--primary-deep);
  color: #ffffff;
  padding: 1rem 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.warranty-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--neutral-200);
  color: var(--neutral-700);
}

.warranty-table tr:last-child td {
  border-bottom: none;
}

.warranty-table tr:nth-child(even) td {
  background: var(--neutral-50);
}

.warranty-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(10, 75, 143, 0.1);
  color: var(--primary);
}

.warranty-badge.gold {
  background: rgba(243, 167, 18, 0.15);
  color: #925f00;
}

@media (max-width: 991px) {
  .policy-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .policy-sidebar {
    position: static;
  }
}


