/* Intaura Luxury Design System & Styling */

@font-face {
  font-family: 'Monument Extended';
  src: url('fonts/MonumentExtended-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Monument Extended';
  src: url('fonts/MonumentExtended-UltraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   1. Root Variables & Reset
   ========================================================================== */
:root {
  /* === Split Midnight Navy Blue & White Theme with Soft Luxury Gold === */
  --bg-primary: #080E1E;
  /* Deep Midnight Navy */
  --bg-secondary: #0F1A30;
  /* Card/Section Lighter Navy */
  --bg-card: #12203C;
  /* Dark Card Navy */
  --bg-modal: rgba(8, 14, 30, 0.98);
  --bg-white: #FFFFFF;
  /* Crisp Ice White */
  --bg-light: #F8FAFC;
  /* Off White */

  /* Golden accents matching the luxury reference details */
  --accent-gold: #C5A880;
  /* Soft Editorial Sand Gold */
  --accent-gold-hover: #D4B26F;
  /* Bright Gold for Hover */
  --accent-gold-rgb: 197, 168, 128;

  /* Secondary slate-blue accent */
  --accent-indigo: #8B9BB4;
  /* Slate Blue */
  --accent-indigo-soft: rgba(139, 155, 180, 0.1);
  --accent-indigo-rgb: 139, 155, 180;

  /* Primary text variables (Light by default since body background is dark navy) */
  --text-primary: #FFFFFF;
  --text-secondary: #A0AABF;
  --text-muted: #6B7A90;

  /* Specific text colors for light/white backgrounds */
  --text-dark-primary: #080E1E;
  --text-dark-secondary: #334155;
  --text-dark-muted: #64748B;

  --border-thin: rgba(197, 168, 128, 0.15);
  --border-gold: rgba(197, 168, 128, 0.3);
  --border-gold-focus: rgba(197, 168, 128, 0.7);
  --border-indigo: rgba(139, 155, 180, 0.2);

  --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, Cambria, serif;
  --font-display: 'Cinzel', serif;
  --font-extended: 'Monument Extended', sans-serif;

  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-modal: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

a,
a:hover,
a:focus,
a:active,
a:visited,
button,
.btn-gold-solid,
.btn-primary,
.btn-secondary,
.btn-outline-gold,
.btn-vip-outline,
.btn-product-spec,
.btn-welcome-link {
  text-decoration: none !important;
}

html,
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Global Date & Time Input Mobile Hardening */
input[type="date"],
input[type="time"],
input[type="datetime-local"] {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

/* Outgoing Page Dissolve State */
body.page-dissolving {
  opacity: 0 !important;
  transform: scale(0.985) !important;
  pointer-events: none;
  will-change: opacity, transform;
}

/* Incoming Page Initial State before Fade-In */
body.page-loading {
  opacity: 0;
  transform: scale(1.01);
  will-change: opacity, transform;
}

/* Glassmorphic Dissolve Overlay */
.page-dissolve-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 30%, rgba(15, 26, 48, 0.98) 0%, rgba(8, 14, 30, 0.99) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.page-dissolve-overlay.active {
  opacity: 1;
  pointer-events: auto;
}




/* Ambient Particle Canvas — Fixed Background Layer Behind All Content */
#ambient-particles {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.9 !important;
}

/* Only hero gallery items need explicit z-index elevation above particle canvas */
.gallery__item {
  position: relative;
  z-index: 3;
}

/* Force 100% transparent background across ALL section & footer wrappers on ALL pages */
section,
footer,
.main-footer,
.hero-gallery-wrap,
.inner-page-hero,
.contact-3d-section,
.welcome-section,
.sectors-section,
.lifestyle-modes-section,
.quote-page-section {
  position: relative;
  z-index: 2;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* =========================================================================
   CARD Z-INDEX ELEVATION — Ensure cards float above the particle canvas
   Each card keeps its OWN designed background (glass, image, dark panel)
   ========================================================================= */

/* Image-backed cards — keep their own full-bleed backgrounds */
.sector-card,
.ts-bento-card,
.studio-card {
  position: relative;
  z-index: 3;
}

/* Glass/dark panel cards — restore original designed backgrounds */
.trust-card {
  background: rgba(15, 26, 48, 0.82) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 3;
}

.lifestyle-mode-card {
  background: rgba(18, 32, 60, 0.75) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 3;
}

.product-card {
  background: rgba(10, 16, 35, 0.82) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 3;
}

.stat-card {
  background: rgba(10, 16, 35, 0.78) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 3;
}

.legal-section-card {
  background: rgba(12, 20, 40, 0.82) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 3;
}

.contact-form-card,
.glass-contact-card {
  background: rgba(10, 15, 30, 0.92) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 3;
}

.tool-dark-card,
.ekinex-solution-card {
  background: rgba(10, 16, 35, 0.85) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 3;
}

.quote-option-card {
  background: rgba(12, 20, 42, 0.88) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 3;
}

.process-step-card {
  background: rgba(10, 16, 35, 0.80) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 3;
}

.modal-card {
  background: rgba(8, 14, 28, 0.97) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 3;
}

.drawer-content {
  background: rgba(8, 14, 28, 0.97) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 2600 !important;
}

/* Scroll margin offset for fixed header navigation */
section,
.hero-gallery-wrap,
[id] {
  scroll-margin-top: 80px;
}



/* Lenis Smooth Scrolling & Touch Optimization */
html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis,
html.lenis *,
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden !important;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Luxury Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary, #080E1E);
}

::-webkit-scrollbar-thumb {
  background: rgba(197, 168, 128, 0.35);
  border-radius: 4px;
  border: 2px solid var(--bg-primary, #080E1E);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(197, 168, 128, 0.7);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 168, 128, 0.35) var(--bg-primary, #080E1E);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.section-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--accent-gold);
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}

.relative {
  position: relative;
}

.mt-6 {
  margin-top: 1.5rem;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================================================
   2. Main Header
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1200;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.main-header.scrolled {
  background-color: rgba(8, 14, 30, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-thin);
}

.header-container {
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-container .logo {
  justify-self: start;
}

.header-container .menu-toggle {
  justify-self: center;
  transform: translateY(2px);
}

.header-container .btn-vip-outline {
  justify-self: end;
}

/* Logo */
.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--accent-gold);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 38px;
  max-height: 40px;
  max-width: 145px;
  width: auto;
  object-fit: contain;
  margin: 0;
  display: block;
}

.logo span {
  display: inline-block;
  color: var(--accent-gold);
  transition: var(--transition-fast);
}

.logo:hover span {
  color: var(--accent-gold-hover);
}

/* Hamburger menu button */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 210;
}

.bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--text-primary);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-toggle:hover .bar {
  background-color: var(--accent-gold);
}

/* Morph bars into X when menu is open */
body.menu-open .menu-toggle .bar-top {
  transform: translateY(3.75px) rotate(45deg);
  background-color: var(--accent-gold);
}

body.menu-open .menu-toggle .bar-bottom {
  transform: translateY(-3.75px) rotate(-45deg);
  background-color: var(--accent-gold);
}

/* Hide Book VIP Consultation button when menu drawer is open */
body.menu-open .btn-vip-outline {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Hide Navbar when Book VIP Consultation is clicked */
#site-header.header-hidden,
body.navbar-hidden #site-header {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: transform 0.4s ease, opacity 0.4s ease !important;
}

/* Straight Hyphen Override for Serif & Calligraphic Text */
.hyphen-straight,
.straight-hyphen {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  display: inline-block !important;
  transform: rotate(0deg) translateY(-1px) !important;
  vertical-align: middle !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
}

/* Gold Glow Pulse Keyframes for VIP Button */
@keyframes goldGlowPulse {

  0%,
  100% {
    box-shadow: 0 0 0px 0px rgba(107, 107, 184, 0);
    border-color: rgba(107, 107, 184, 0.6);
  }

  50% {
    box-shadow: 0 0 14px 3px rgba(107, 107, 184, 0.25);
    border-color: rgba(107, 107, 184, 1);
  }
}

/* Outlined VIP Consultation Button */
.btn-vip-outline,
a.btn-vip-outline {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--accent-gold);
  border-radius: 2px;
  padding: 12px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  animation: goldGlowPulse 2.8s ease-in-out infinite;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-vip-outline *,
a.btn-vip-outline * {
  text-decoration: none !important;
}

.btn-vip-outline:hover {
  background-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107, 107, 184, 0.35);
  animation-play-state: paused;
}

.btn-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-vip-outline:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   3. Navigation Drawer (Overlay Menu)
   ========================================================================== */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2500 !important;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.nav-drawer.open {
  visibility: visible;
  opacity: 1;
}

.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 14, 30, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  max-height: 100vh;
  background-color: var(--bg-secondary);
  border-left: 1px solid var(--border-thin);
  padding: 80px 60px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto !important;
  z-index: 2550 !important;
}

.drawer-content::-webkit-scrollbar {
  width: 4px;
}

.drawer-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.drawer-content::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}

.nav-drawer.open .drawer-content {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 40px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 2.2rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 2600 !important;
  pointer-events: auto !important;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.drawer-close:hover {
  color: var(--accent-gold);
  transform: scale(1.15) rotate(90deg);
}

.drawer-inner {
  min-height: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Drawer nav link entrance animation */
@keyframes drawerLinkIn {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Drawer footer entrance animation */
@keyframes drawerFooterIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* By default, hide links — they animate in when drawer opens */
.drawer-menu li {
  opacity: 0;
}

.nav-drawer.open .drawer-menu li {
  animation: drawerLinkIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-drawer.open .drawer-menu li:nth-child(1) {
  animation-delay: 0.15s;
}

.nav-drawer.open .drawer-menu li:nth-child(2) {
  animation-delay: 0.20s;
}

.nav-drawer.open .drawer-menu li:nth-child(3) {
  animation-delay: 0.25s;
}

.nav-drawer.open .drawer-menu li:nth-child(4) {
  animation-delay: 0.30s;
}

.nav-drawer.open .drawer-menu li:nth-child(5) {
  animation-delay: 0.35s;
}

.nav-drawer.open .drawer-menu li:nth-child(6) {
  animation-delay: 0.40s;
}

.nav-drawer.open .drawer-menu li:nth-child(7) {
  animation-delay: 0.45s;
}

.nav-drawer.open .drawer-menu li:nth-child(8) {
  animation-delay: 0.50s;
}

.nav-drawer.open .drawer-menu li:nth-child(9) {
  animation-delay: 0.55s;
}

.nav-drawer.open .drawer-menu li:nth-child(10) {
  animation-delay: 0.60s;
}

.nav-drawer.open .drawer-menu li:nth-child(11) {
  animation-delay: 0.65s;
}

.nav-drawer.open .drawer-menu li:nth-child(12) {
  animation-delay: 0.70s;
}

.drawer-footer {
  opacity: 0;
  border-top: 1px solid var(--border-thin);
  padding-top: 30px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.nav-drawer.open .drawer-footer {
  animation: drawerFooterIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.drawer-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}

.drawer-link:hover {
  color: var(--accent-gold);
  transform: translateX(10px);
}

.drawer-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.drawer-email {
  display: inline-block;
  margin-top: 15px;
  color: var(--accent-gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
}

.drawer-email:hover {
  border-bottom: 1px solid var(--accent-gold);
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero-container {
  display: flex;
  height: 100%;
  width: 100%;
}

/* Hero Left Column */
.hero-left {
  width: 50%;
  height: 100%;
  padding: 160px 80px 60px 10%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.hero-text-block {
  margin-bottom: 48px;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 24px;
  display: inline-block;
}

.hero-title {
  font-size: 4.8rem;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.22rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

/* Primary CTA Button */
.btn-primary {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff;
  background-color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  border-radius: 2px;
  padding: 16px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Secondary CTA Button */
.btn-secondary {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-thin);
  border-radius: 2px;
  padding: 16px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(4px);
}



.mouse-icon {
  width: 22px;
  height: 38px;
  border: 1.5px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  display: block;
  width: 2px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 1px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

@keyframes scrollWheel {
  0% {
    top: 8px;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    top: 22px;
    opacity: 0;
  }
}

/* Expanded Video Section Minimalist Scroll Indicator — Ultra-Clean Editorial */
.hero-video-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: var(--accent-gold) !important;
  text-decoration: none !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  cursor: pointer;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.95)) !important;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-video-scroll-indicator .scroll-text {
  font-family: var(--font-sans);
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  color: var(--accent-gold) !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95) !important;
}

.hero-video-scroll-indicator .mouse-icon {
  width: 17px;
  height: 28px;
  border: 1.5px solid var(--accent-gold) !important;
  border-radius: 9px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  background: transparent !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
}

.hero-video-scroll-indicator .mouse-wheel {
  width: 2px;
  height: 5px;
  background-color: var(--accent-gold) !important;
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

.hero-video-scroll-indicator .scroll-arrow-down {
  color: var(--accent-gold) !important;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.95)) !important;
  animation: arrowBounce 1.8s infinite ease-in-out;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

.hero-video-scroll-indicator:hover {
  transform: translateX(-50%) translateY(3px);
}

.hero-video-scroll-indicator:hover .scroll-text {
  color: var(--accent-gold-hover) !important;
}

/* Hero Right Column */
.hero-right {
  width: 50%;
  height: 100%;
  position: relative;
}

.hero-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: zoomReveal 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-primary) 0%, rgba(250, 247, 242, 0.2) 20%, transparent 100%);
}

@keyframes zoomReveal {
  to {
    transform: scale(1);
  }
}

/* ==========================================================================
   5. Lifestyle Experience Section
   ========================================================================== */
.lifestyle-section {
  background-color: transparent;
  padding: 140px 0;
  border-bottom: 1px solid var(--border-thin);
}

.lifestyle-grid {
  display: flex;
  gap: 80px;
  align-items: center;
}

.lifestyle-left {
  width: 45%;
}

.editorial-block {
  max-width: 540px;
}

.editorial-title {
  font-size: 2.8rem;
  line-height: 1.25;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.editorial-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
}

.lifestyle-right {
  width: 55%;
}

.scene-visual-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 100%);
  /* Start hidden for GSAP curtain reveal */
}

.scene-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s;
  overflow: hidden;
}

.scene-image-container.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.scene-image-container.active .scene-img {
  transform: scale(1.04);
}

.scene-overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(237, 230, 213, 0.75) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Segmented Controls */
.segmented-control-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.segmented-controls {
  display: flex;
  background-color: rgba(237, 230, 213, 0.85);
  backdrop-filter: blur(12px);
  padding: 6px;
  border-radius: 4px;
  border: 1px solid rgba(107, 107, 184, 0.15);
}

.controls-active-bg {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  background-color: var(--accent-gold);
  border-radius: 2px;
  z-index: 1;
  transition: none;
  /* Let GSAP handle transition dynamically */
}

.segment-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 2px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.segment-btn.active {
  background-color: transparent;
  /* Handled by active-bg indicator */
  color: #ffffff;
}

/* ==========================================================================
   5. Section 2: Welcome — Cinematic Split + Stat Counters + Marquee
   ========================================================================== */
.welcome-section {
  background-color: var(--bg-primary);
  padding: 110px 0 0;
  border-bottom: 1px solid rgba(197, 168, 128, 0.12);
  overflow: hidden;
}

/* Split Layout */
.welcome-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 80px;
}

.welcome-split-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.welcome-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.28em;
  display: inline-block;
}

.welcome-heading {
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
}

.welcome-heading em {
  font-style: italic;
  color: var(--accent-gold);
}

.welcome-desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.welcome-desc {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

/* CTA Link */
.btn-welcome-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-gold);
  text-decoration: none;
  position: relative;
  transition: gap 0.3s ease, color 0.3s ease;
}

.btn-welcome-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-welcome-link:hover::after {
  width: 100%;
}

.btn-welcome-link:hover {
  gap: 14px;
}

.btn-welcome-link svg {
  transition: transform 0.3s ease;
}

.btn-welcome-link:hover svg {
  transform: translateX(4px);
}

/* Stat Counter Cards */
.stat-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(15, 26, 48, 0.7);
  border: 1px solid rgba(197, 168, 128, 0.18);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

.stat-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.stat-card:hover {
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--accent-gold);
  line-height: 1;
  display: inline-block;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* Marquee Strip */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(197, 168, 128, 0.15);
  background: rgba(8, 14, 30, 0.6);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}

.marquee-icon {
  color: var(--accent-gold);
  font-size: 0.6rem;
}

.marquee-sep {
  color: rgba(197, 168, 128, 0.3);
  font-size: 1rem;
}

/* Legacy button keep (used elsewhere) */
.btn-welcome-cta {
  display: inline-block;
  padding: 14px 32px;
  background-color: #ffffff;
  color: var(--bg-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.05em;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-welcome-cta:hover {
  background-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   6. Section 3: Sector Cards — Numbered 3D Hover Parallax
   ========================================================================== */
.sectors-section {
  background-color: var(--bg-primary);
  padding: 100px 0 120px;
  border-top: 1px solid rgba(197, 168, 128, 0.1);
}

/* Section Header */
.sectors-header-wrap {
  margin-bottom: 50px;
}

.sectors-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-top: 14px;
}

.sectors-heading {
  flex: 1;
  max-width: 660px;
  font-size: clamp(2.3rem, 3.5vw, 3.4rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  margin: 0;
}

.sectors-heading em {
  font-style: italic;
  color: var(--accent-gold);
}

.sectors-header-desc {
  flex: 0 0 380px;
  max-width: 380px;
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 20px 0 0 0;
  padding: 0;
}

/* Cards Grid */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Individual Card */
.sector-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid rgba(197, 168, 128, 0.12);
  background: var(--bg-secondary);
  aspect-ratio: 3 / 4.2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform-style: preserve-3d;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  transform: translateZ(0);
}

.sector-card:hover {
  border-color: rgba(197, 168, 128, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform: translate3d(0, -6px, 0);
}

/* Image */
.sector-card-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sector-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.02);
  transform: scale(1.05);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.9s ease;
}

.sector-card:hover .sector-card-img {
  transform: scale(1.02);
  filter: brightness(1.04) contrast(1.04);
}

/* Dark gradient overlay — soft baseline scrim */
.sector-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

/* Large display number label */
.sector-num-label {
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(212, 178, 111, 0.85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  z-index: 2;
  transition: color 0.4s ease;
}

.sector-card:hover .sector-num-label {
  color: #ffffff;
}

/* Content Panel — High Contrast & Readability */
.sector-card-content {
  position: relative;
  z-index: 2;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sector-tag {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #d4b26f;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
  display: block;
}

.sector-title {
  font-size: 1.35rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 2px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

.sector-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 350;
  margin: 2px 0 6px 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95);
}

/* Gold Sweep Line */
.sector-gold-line {
  width: 0;
  height: 1px;
  background: #d4b26f;
  margin-bottom: 6px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card:hover .sector-gold-line {
  width: 100%;
}

/* Link — High-Contrast Gold */
.sector-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4b26f;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95);
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.3s ease, gap 0.3s ease, color 0.3s ease;
}

.sector-card:hover .sector-link {
  opacity: 1;
  color: #ffffff;
}

.sector-link:hover {
  gap: 12px;
}

.sector-arrow {
  transition: transform 0.3s ease;
}

.sector-link:hover .sector-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Existing Pillars CSS kept below (legacy reference only - unused classes)
   ========================================================================== */
.pillars-section {
  background-color: var(--bg-primary);

  padding: 100px 0 120px;
}

/* Section Header */
.pillars-header {
  margin-bottom: 60px;
}

.pillars-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.28em;
  display: inline-block;
  margin-bottom: 14px;
}

.pillars-heading {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
}

.pillars-heading em {
  font-style: italic;
  color: var(--accent-gold);
}

/* ─── Cards Grid — 4 columns (Ekinex Sector Style) ───────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

/* ─── Individual Card ─────────────────────────────────────────── */
.pillar-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(197, 168, 128, 0.14);
  border-radius: 4px;
  background-color: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

/* ─── Image Section (top ~65%) ────────────────────────────────── */
.pillar-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pillar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: brightness(0.82);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.9s ease;
  will-change: transform;
}

.pillar-card:hover .pillar-img {
  transform: scale(1.0);
  filter: brightness(0.95);
}

/* Subtle dark gradient at image bottom */
.pillar-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 50%,
      rgba(8, 14, 30, 0.55) 100%);
  pointer-events: none;
}

/* ─── Content Panel (bottom) ──────────────────────────────────── */
.pillar-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 32px 32px;
  border-top: 1px solid rgba(197, 168, 128, 0.12);
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s ease;
}

/* Gold bar that slides in on hover (bottom edge) */
.pillar-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover .pillar-panel::after {
  width: 100%;
}

/* Sector label */
.pillar-sector {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-gold);
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

/* Animated underline on the sector label */
.pillar-sector::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover .pillar-sector::after {
  width: 100%;
}

/* Card Title */
.pillar-title {
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 18px;
  transition: color 0.35s ease;
}

.pillar-card:hover .pillar-title {
  color: #ffffff;
}

/* Find out more link */
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: auto;
  transition: gap 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}

.pillar-link:hover {
  color: #ffffff;
  gap: 12px;
}

.pillar-link-arrow {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-link:hover .pillar-link-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   7. Product Solutions Section (Clean Container Grid Cards)
   ========================================================================== */
.ekinex-prod-section {
  background-color: var(--bg-primary);
  padding: 100px 0 110px;
  border-top: 1px solid rgba(197, 168, 128, 0.12);
}

.ekinex-prod-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: 100%;
}

.ekinex-solution-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.ekinex-solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* Moderately sized, beautifully framed image (240px) */
.solution-img-frame {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.solution-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
}

.ekinex-solution-card:hover .solution-img {
  transform: scale(1.05);
  filter: brightness(0.95);
}

.solution-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  background: rgba(8, 14, 30, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid rgba(197, 168, 128, 0.25);
}

.solution-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.solution-card-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.ekinex-solution-card:hover .solution-card-title {
  color: #ffffff;
}

.solution-card-desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.solution-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.3s ease, color 0.3s ease;
}

.solution-card-link svg {
  transition: transform 0.3s ease;
}

.solution-card-link:hover {
  color: #ffffff;
  gap: 12px;
}

.solution-card-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   8. Section 5: Tools — Dark Glass Cards + Marquee Ticker
   ========================================================================== */
.tools-dark-section {
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(197, 168, 128, 0.1);
  overflow: hidden;
}

/* Tools Marquee Bar */
.tools-marquee-bar {
  overflow: hidden;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  background: rgba(197, 168, 128, 0.04);
  padding: 16px 0;
}

.tools-marquee-track {
  display: flex;
  width: max-content;
  animation: toolsMarqueeScroll 24s linear infinite;
}

@keyframes toolsMarqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.tools-marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
}

.tools-marquee-item {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.tools-marquee-dot {
  color: rgba(197, 168, 128, 0.4);
  font-size: 0.6rem;
}

/* Tools Dark Grid */
.tools-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 80px 0;
}

/* Tool Card */
.tool-dark-card {
  background: rgba(15, 26, 48, 0.8);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tool-dark-card:hover {
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.tool-card-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.tool-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
}

.tool-dark-card:hover .tool-card-img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.tool-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 26, 48, 0.9) 0%, transparent 60%);
}

/* Tool Card Body */
.tool-card-body {
  padding: 32px 36px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.tool-icon-badge {
  width: 44px;
  height: 44px;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.tool-card-title {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  transition: color 0.3s ease;
}

.tool-dark-card:hover .tool-card-title {
  color: #ffffff;
}

.tool-card-desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.tool-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 8px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.tool-card-link svg {
  transition: transform 0.3s ease;
}

.tool-card-link:hover {
  color: #ffffff;
  gap: 12px;
}

.tool-card-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   9. Section 7: Quote CTA — Cinematic Full-Width Banner
   ========================================================================== */
.quote-section {
  position: relative;
  background-color: var(--bg-primary);
  padding: 140px 0;
  overflow: hidden;
  border-top: 1px solid rgba(197, 168, 128, 0.1);
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  transform: translateZ(0);
  will-change: transform;
}

/* Ambient glow orbs */
.quote-glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
}

.quote-glow-left {
  background: radial-gradient(circle, rgba(197, 168, 128, 0.06) 0%, transparent 65%);
  top: -200px;
  left: -200px;
}

.quote-glow-right {
  background: radial-gradient(circle, rgba(139, 155, 180, 0.05) 0%, transparent 65%);
  bottom: -200px;
  right: -150px;
}

/* Grid overlay texture */
.quote-texture-bg {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  pointer-events: none;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, var(--text-primary) 1px, transparent 1px),
    linear-gradient(to bottom, var(--text-primary) 1px, transparent 1px);
  z-index: 0;
}

.quote-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.quote-banner-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  text-align: left;
}

.quote-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.12;
  margin: 0;
  padding: 0;
}

.quote-title em {
  font-style: italic;
  color: var(--accent-gold);
}

.quote-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 440px;
  margin: 0;
  padding: 0;
}

/* Quote CTA Button */
.btn-quote-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  color: var(--bg-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(197, 168, 128, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  align-self: flex-start;
  margin-left: 36px;
}

.btn-quote-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(197, 168, 128, 0.4);
}

.btn-quote-cta .btn-arrow {
  transition: transform 0.3s ease;
}

.btn-quote-cta:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-quote-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.75s ease;
}

.btn-quote-cta:hover .btn-quote-shimmer {
  left: 140%;
}

/* Right: Value Bullets */
.quote-banner-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.quote-value-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

.quote-value-item:first-child {
  border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.quote-val-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  opacity: 0.6;
  flex-shrink: 0;
  padding-top: 3px;
}

.quote-val-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote-val-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.quote-val-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   10. Main Footer — Premium Editorial Design
   ========================================================================== */
/* ==========================================================================
   9b. Contact 3D Section — Avatar Character Form Animation
   ========================================================================== */
.contact-3d-section {
  background: transparent !important;
  padding: 100px 0 0 0;
  position: relative;
  overflow: hidden;
}

.contact-3d-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 168, 128, 0.4), transparent);
}

.contact-3d-header {
  text-align: center;
  padding-bottom: 52px;
}

.contact-3d-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--text-primary, #F5EDD8);
  margin: 12px 0 16px;
  line-height: 1.2;
}

.contact-3d-title em {
  font-style: italic;
  color: #c5a880;
}

.contact-3d-subtitle {
  font-size: 1rem;
  color: rgba(245, 237, 216, 0.55);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Jost', sans-serif;
}

/* ── Split Panel Wrapper ──────────────────────────────────────────────── */
.contact-split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto 100px;
  padding: 20px 0;
}

/* ── Left: Heading + Info Column ────────────────────────────────────── */
.csp-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.csp-tag-row {
  display: flex;
  align-items: center;
}

.csp-main-heading {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 500;
  color: var(--text-primary, #F5EDD8);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

.csp-main-heading em {
  font-style: italic;
  color: var(--accent-gold, #c5a880);
}

.csp-desc {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  color: rgba(245, 237, 216, 0.65);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 0 12px 0;
}

/* Icon Info List */
.csp-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.csp-info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text-primary, #F5EDD8);
  transition: color 0.3s ease, transform 0.3s ease;
  width: fit-content;
}

.csp-info-row:hover {
  color: var(--accent-gold, #c5a880);
  transform: translateX(4px);
}

.csp-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold, #c5a880);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.csp-info-row:hover .csp-info-icon {
  background: rgba(197, 168, 128, 0.18);
  border-color: rgba(197, 168, 128, 0.45);
}

.csp-info-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ── Right: Form Panel ────────────────────────────────────────────── */
.csp-right {
  display: flex;
  justify-content: center;
}

/* Form Card Container (matching screenshot rounded card style in dark theme) */
.contact-form-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: rgba(10, 15, 30, 0.95);
  border-radius: 24px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(197, 168, 128, 0.1);
  padding: 44px 38px 38px;
  color: #F5EDD8;
  font-family: 'Jost', sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.cfc-header {
  text-align: center;
  margin-bottom: 24px;
}

.cfc-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c5a880;
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.cfc-title {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #F5EDD8 0%, #c5a880 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cfc-gold-bar {
  height: 2px;
  width: 32px;
  background: linear-gradient(90deg, #c5a880, #a8895e);
  border-radius: 2px;
  margin: 0 auto;
}

.cfc-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
  width: 100%;
}

.cfc-field {
  margin-bottom: 18px;
  min-width: 0;
  width: 100%;
}

.cfc-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(245, 237, 216, 0.7);
  transition: color 0.2s ease;
}

.cfc-field:focus-within .cfc-label {
  color: #c5a880;
}

.cfc-input {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 13px 16px;
  background: rgba(8, 14, 30, 0.8);
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 12px;
  color: #F5EDD8;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  font-family: 'Jost', sans-serif;
  transition: all 0.2s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.cfc-input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  cursor: pointer;
}

/* Date input specific handling for mobile iOS & WebKit */
.cfc-input[type="date"],
input[type="date"].cfc-input {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 42px;
  line-height: normal;
  color: #F5EDD8;
  color-scheme: dark;
}

.cfc-input[type="date"]::-webkit-date-and-time-value,
input[type="date"].cfc-input::-webkit-date-and-time-value {
  text-align: left;
  min-height: 1.2em;
  color: #F5EDD8;
}

.cfc-input[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"].cfc-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.8) sepia(50%) saturate(100%) hue-rotate(15deg);
  opacity: 0.85;
  transition: opacity 0.2s ease;
  padding-right: 2px;
}

.cfc-input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="date"].cfc-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.cfc-input:focus {
  background: rgba(12, 18, 36, 0.95);
  border-color: #c5a880;
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.22), inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cfc-textarea {
  resize: none;
  height: 105px;
}

.cfc-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #c5a880 0%, #8a6e45 100%);
  border: none;
  border-radius: 12px;
  color: #080e1e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  box-shadow: 0 8px 22px rgba(197, 168, 128, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
  margin-top: 8px;
}



.cfc-submit:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(197, 168, 128, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cfc-success {
  text-align: center;
  padding: 30px 10px;
}

.cfc-success-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.cfc-success-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #F5EDD8;
}

.cfc-success-sub {
  font-size: 13px;
  opacity: 0.7;
  color: #F5EDD8;
}


/* ==========================================================================
   10. Main Footer — Premium Editorial Design (High-Contrast & Aesthetic)
   ========================================================================== */

.main-footer {
  background: transparent !important;
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(197, 168, 128, 0.25);
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Banner Row at top of footer */
.footer-banner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
  gap: 30px;
}

.footer-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-banner-heading {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
}

.footer-banner-heading em {
  font-style: italic;
  color: var(--accent-gold);
}

.btn-vip-gold-footer {
  padding: 16px 32px;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid var(--accent-gold);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-vip-gold-footer:hover {
  background: var(--accent-gold);
  color: #080e1e;
  box-shadow: 0 12px 30px rgba(197, 168, 128, 0.35);
  transform: translateY(-3px);
}

.footer-divider-subtle {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(197, 168, 128, 0.25) 20%, rgba(197, 168, 128, 0.4) 50%, rgba(197, 168, 128, 0.25) 80%, transparent 100%);
  margin-bottom: 60px;
  transform-origin: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.8fr 1.5fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Brand Column */
.footer-logo-link {
  display: inline-block;
  margin-left: 0 !important;
}

.footer-logo-img {
  height: 40px;
  max-height: 42px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  filter: brightness(1);
  transition: transform 0.3s ease;
  display: block;
}

.footer-tagline {
  font-size: 1.15rem;
  color: var(--accent-gold);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.footer-brand-desc {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-weight: 300;
}

.footer-contact-pills {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 16px;
  margin-top: 6px;
  width: fit-content;
}

.footer-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.footer-contact-pill svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.footer-contact-pill:hover {
  background: rgba(197, 168, 128, 0.15);
  border-color: var(--accent-gold);
  color: #ffffff;
  transform: translateX(4px);
}

/* Column Titles */
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.25);
}

/* Location Card (Experience Center) */
.footer-location-card {
  background: rgba(15, 26, 48, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 8px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(10px);
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  animation: livePulse 2s infinite ease-in-out;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.location-card-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.location-card-address {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.footer-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: 4px;
}

.footer-maps-btn:hover {
  color: #ffffff;
  gap: 12px;
}

/* Ecosystem / Partner Badges */
.partner-badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.partner-badge {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.partner-badge:hover {
  background: rgba(197, 168, 128, 0.12);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.footer-text-link:hover {
  color: #ffffff;
  gap: 12px;
}

.footer-text-link svg {
  transition: transform 0.3s ease;
}

.footer-text-link:hover svg {
  transform: translateX(4px);
}

/* Social Buttons Grid */
.footer-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 168, 128, 0.18);
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-social-btn svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-social-btn:hover {
  background: rgba(197, 168, 128, 0.16);
  border-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social-btn:hover svg {
  transform: scale(1.1);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-accent-tag {
  color: var(--accent-gold);
  font-weight: 500;
  margin-left: 10px;
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-link {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--accent-gold);
}

.footer-legal-dot {
  color: var(--accent-gold);
}

/* Legacy footer styles kept for backwards compat */
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-link:hover {
  color: var(--accent-gold);
}

.footer-title {
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 5px;
}

.partners-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.partners-link:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   7. Curated Collection Section
   ========================================================================== */
.curated-section {
  background-color: transparent;
  padding: 160px 0;
  border-top: 1px solid var(--border-thin);
  border-bottom: 1px solid var(--border-thin);
}

.curated-grid {
  display: flex;
  gap: 80px;
  align-items: center;
}

.curated-left {
  width: 40%;
}

.btn-outline-gold {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  background: transparent;
  border: 1px solid var(--accent-gold);
  border-radius: 2px;
  padding: 16px 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-gold:hover .btn-arrow {
  transform: translateX(4px);
}

.curated-right {
  width: 60%;
}

/* Carousel Layout */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 400%;
  /* 4 slides */
}

.carousel-slide {
  width: 25%;
  /* 100% of container viewport width */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Product Spotlight Rendering */
.product-spotlight {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.spotlight {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(107, 107, 184, 0.16) 0%, rgba(201, 168, 122, 0.08) 50%, transparent 70%);
  z-index: 1;
  bottom: 0;
}

/* Tactile Switch CSS Drawing */
.switch-render-wrapper {
  position: relative;
  z-index: 2;
  perspective: 1000px;
  animation: floatSwitch 6s ease-in-out infinite;
}

.switch-img-render {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.35));
  transition: transform 0.5s ease;
}

.switch-render-wrapper:hover .switch-img-render {
  transform: scale(1.05);
}

@keyframes floatSwitch {

  0%,
  100% {
    transform: translateY(0) rotateX(4deg) rotateY(-4deg);
  }

  50% {
    transform: translateY(-12px) rotateX(6deg) rotateY(-2deg);
  }
}

.switch-plate {
  width: 220px;
  height: 220px;
  border-radius: 2px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-plate {
  background: linear-gradient(135deg, rgba(250, 247, 242, 0.85) 0%, rgba(237, 230, 213, 0.95) 100%);
  border: 1px solid rgba(107, 107, 184, 0.18);
  box-shadow:
    0 25px 50px rgba(107, 107, 184, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.8),
    inset -2px -2px 4px rgba(237, 230, 213, 0.5);
  backdrop-filter: blur(10px);
}

.titanium-plate {
  background: linear-gradient(135deg, #f0ede5 0%, #e6e0d2 50%, #dcd5c4 100%);
  border: 1px solid rgba(107, 107, 184, 0.2);
  box-shadow:
    0 25px 50px rgba(107, 107, 184, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.stone-plate {
  background: linear-gradient(135deg, #f9f6f0 0%, #ede6d5 100%);
  border: 1px solid rgba(107, 107, 184, 0.1);
  /* Marbled stone styling shadow */
  background-image: radial-gradient(rgba(107, 107, 184, 0.06) 1px, transparent 0), radial-gradient(rgba(201, 168, 122, 0.03) 2px, transparent 0);
  background-size: 30px 30px, 50px 50px;
}

.metal-plate {
  background: linear-gradient(135deg, #eae5d9 0%, #cfc7b5 100%);
  border: 1px solid rgba(107, 107, 184, 0.25);
  box-shadow:
    0 25px 50px rgba(107, 107, 184, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* 4 Buttons grid layout */
.switch-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  height: 100%;
}

.switch-btn-tactile {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.8),
    0 1px 1px rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.glass-plate .switch-btn-tactile {
  border-color: rgba(255, 255, 255, 0.06);
}

.switch-btn-tactile:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Glowing LED */
.btn-led {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  transition: var(--transition-fast);
}

.switch-btn-tactile.active .btn-led {
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

/* Product Info */
.product-info {
  margin-top: 15px;
}

.product-name {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.product-material {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Carousel Nav Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--text-muted);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-fast);
  opacity: 0.5;
}

.carousel-nav-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  opacity: 1;
}

.carousel-nav-btn.prev {
  left: 0;
}

.carousel-nav-btn.next {
  right: 0;
}

/* Pagination Dots */
.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.pagination-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  opacity: 0.4;
}

.pagination-dot.active {
  background-color: var(--accent-gold);
  opacity: 1;
  transform: scale(1.3);
}

/* ==========================================================================
   8. Experience Center Section
   ========================================================================== */
.showroom-section {
  background-color: var(--bg-primary);
  padding: 140px 0;
}

.showroom-grid {
  display: flex;
  gap: 80px;
  align-items: center;
}

.showroom-left {
  width: 50%;
}


.showroom-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid var(--border-thin);
  clip-path: inset(0 100% 0 0);
  /* Start hidden for GSAP curtain reveal */
}

body:not(.gsap-active) .scene-visual-wrapper,
body:not(.gsap-active) .showroom-image-frame {
  clip-path: none;
}

.showroom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showroom-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 14, 30, 0.65) 0%, transparent 100%);
}

.showroom-right {
  width: 52%;
}

/* ─── Trendy Glassmorphic Contact Card ────────────────────────── */
.glass-contact-card {
  background: rgba(15, 26, 48, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 8px;
  padding: 48px 44px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.showroom-badge-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-gold);
  background: rgba(8, 14, 30, 0.88);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 3px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.contact-header {
  margin-bottom: 28px;
}

.booking-title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  margin-top: 8px;
  margin-bottom: 12px;
  color: #ffffff;
}

.booking-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Form Controls & Animations ────────────────────────────── */
.trendy-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Interest Selector Pills */
.form-interest-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.interest-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
}

.interest-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.interest-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 168, 128, 0.2);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.interest-pill:hover {
  border-color: var(--accent-gold);
  color: #ffffff;
}

.interest-pill.active {
  background: rgba(197, 168, 128, 0.18);
  border-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(197, 168, 128, 0.25);
}

/* Floating Label Inputs */
.trendy-input-group {
  position: relative;
  width: 100%;
}

.trendy-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trendy-input {
  width: 100%;
  padding: 16px 14px 10px;
  background: rgba(8, 14, 30, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 4px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.trendy-input.date-input {
  padding-top: 18px;
  padding-bottom: 8px;
}

.trendy-label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-secondary);
  pointer-events: none;
  transition: transform 0.3s ease, font-size 0.3s ease, color 0.3s ease;
  transform-origin: left top;
}

.trendy-input:focus~.trendy-label,
.trendy-input:not(:placeholder-shown)~.trendy-label {
  transform: translateY(-9px) scale(0.82);
  color: var(--accent-gold);
}

.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.4s ease, left 0.4s ease;
}

.trendy-input:focus~.input-focus-line {
  width: 100%;
  left: 0;
}

.trendy-input:focus {
  border-color: rgba(197, 168, 128, 0.6);
  background: rgba(8, 14, 30, 0.9);
}

/* Preferred Time Slot Pills */
.form-slot-group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-pills {
  display: flex;
  gap: 6px;
  width: 100%;
}

.slot-pill {
  flex: 1;
  background: rgba(8, 14, 30, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.2);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 13px 0;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.slot-pill:hover {
  border-color: var(--accent-gold);
  color: #ffffff;
}

.slot-pill.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 12px rgba(197, 168, 128, 0.35);
}

/* Glowing Shimmer Submit Button */
.btn-trendy-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #C5A880 0%, #D4B26F 100%);
  color: var(--bg-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(197, 168, 128, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  margin-top: 8px;
}

.btn-trendy-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(197, 168, 128, 0.4);
}

.btn-sparkle-arrow {
  transition: transform 0.3s ease;
}

.btn-trendy-submit:hover .btn-sparkle-arrow {
  transform: translateX(4px);
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.75s ease;
}

.btn-trendy-submit:hover .btn-shimmer {
  left: 140%;
}

/* Luxury Form Design */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background-color: rgba(107, 107, 184, 0.04);
  border: 1px solid var(--border-indigo);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-gold);
  background-color: rgba(107, 107, 184, 0.07);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* Date input custom styling representation */
.calendar-input {
  position: relative;
}

.calendar-input::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(50%) saturate(100%) hue-rotate(15deg);
  cursor: pointer;
}

.btn-gold-solid {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff;
  background-color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  border-radius: 2px;
  padding: 18px 32px;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.btn-gold-solid:hover:not(:disabled) {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.btn-gold-solid:disabled {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  color: var(--text-muted);
  cursor: not-allowed;
}

.form-message {
  margin-top: 15px;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: var(--transition-fast);
}

.form-message.success {
  color: #a7f3d0;
}

.form-message.error {
  color: #fca5a5;
}

/* ==========================================================================
   11. Interactive Modals (VIP & Quote Engine)
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(250, 247, 242, 0.75);
  backdrop-filter: blur(12px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.modal-overlay.open {
  visibility: visible;
  opacity: 1;
}

/* Modal card premium entrance animation */
@keyframes modalCardIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

.modal-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-thin);
  width: 100%;
  max-width: 540px;
  padding: 50px;
  position: relative;
  border-radius: 18px;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  filter: blur(4px);
  transition: none;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-card::-webkit-scrollbar {
  display: none;
}

.modal-overlay.open .modal-card {
  animation: modalCardIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 50 !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close:hover {
  color: var(--accent-gold) !important;
  background: rgba(197, 168, 128, 0.18) !important;
  border-color: rgba(197, 168, 128, 0.35) !important;
  transform: scale(1.1);
}

.modal-close:active {
  transform: scale(0.92);
}

.modal-header {
  margin-bottom: 30px;
}

.modal-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: inline-block;
}

/* --- VIP Consultation Modal Styling (Universal Luxury Design, Rounded Corners & Hidden Scrollbar) --- */
#vip-modal .modal-card {
  width: 92vw !important;
  max-width: 520px !important;
  padding: 40px 44px 36px 44px !important;
  max-height: calc(100vh - 40px) !important;
  overflow-y: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  border-radius: 18px !important;
  border: 1px solid rgba(197, 168, 128, 0.25) !important;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.7) !important;
  box-sizing: border-box !important;
  background: var(--bg-secondary) !important;
}

#vip-modal .modal-card::-webkit-scrollbar {
  display: none !important;
}

#vip-modal .modal-close {
  top: 22px !important;
  right: 26px !important;
  width: 40px !important;
  height: 40px !important;
  font-size: 1.8rem !important;
  line-height: 1 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--text-muted) !important;
}

#vip-modal .modal-header {
  margin-bottom: 22px !important;
}

#vip-modal .modal-title {
  font-size: 1.8rem !important;
  line-height: 1.25 !important;
  margin-bottom: 6px !important;
}

#vip-modal .modal-subtitle {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  color: var(--text-secondary) !important;
}

#vip-modal .modal-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
}

#vip-modal .form-label {
  font-size: 0.76rem !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 6px !important;
  color: var(--text-muted) !important;
}

#vip-modal .form-input {
  padding: 12px 18px !important;
  font-size: 0.94rem !important;
  height: 46px !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--border-thin) !important;
  color: var(--text-primary) !important;
}

#vip-modal #btn-submit-vip {
  margin-top: 8px !important;
  padding: 14px 28px !important;
  font-size: 0.86rem !important;
  letter-spacing: 0.08em !important;
  border-radius: 8px !important;
  width: 100% !important;
}

@media (max-width: 576px) {
  #vip-modal .modal-card {
    padding: 30px 22px 26px 22px !important;
    border-radius: 16px !important;
    max-height: 92vh !important;
  }

  #vip-modal .modal-close {
    top: 16px !important;
    right: 18px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 1.5rem !important;
  }

  #vip-modal .modal-title {
    font-size: 1.45rem !important;
  }

  #vip-modal .modal-subtitle {
    font-size: 0.84rem !important;
  }

  #vip-modal .modal-form {
    gap: 12px !important;
  }

  #vip-modal .form-input {
    height: 44px !important;
    padding: 10px 14px !important;
    font-size: 0.88rem !important;
  }

  #vip-modal #btn-submit-vip {
    padding: 12px 20px !important;
    font-size: 0.82rem !important;
  }
}

/* ==========================================================================
   Quote Engine & Bespoke Proposal Configurator — Perfectly Proportioned Luxury Canvas
   ========================================================================== */
.quote-page-section {
  padding: 40px 0 100px 0;
  background: transparent !important;
  position: relative;
}

.quote-configurator-wrapper {
  display: flex !important;
  flex-direction: column !important;
  max-width: 880px !important;
  margin: 0 auto !important;
  gap: 24px !important;
  position: relative;
}

/* --- Top Horizontal Real-Time Proposal Console Strip --- */
.quote-summary-header-strip {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 12px 22px !important;
  background: rgba(12, 22, 44, 0.75) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(197, 168, 128, 0.25) !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35) !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
}

.quote-summary-header-strip::-webkit-scrollbar {
  display: none !important;
}

.strip-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.strip-label {
  font-size: 0.65rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--text-muted) !important;
  font-weight: 500 !important;
}

.strip-val {
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
}

.strip-val.gold-tier {
  font-family: var(--font-serif) !important;
  color: var(--accent-gold) !important;
  font-size: 0.9rem !important;
}

.strip-badge-item {
  justify-content: center !important;
}

/* --- Stepper Navigation --- */
.configurator-stepper {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 8px !important;
  position: relative !important;
  margin-bottom: 28px !important;
  padding: 6px !important;
  background: rgba(8, 14, 30, 0.45) !important;
  border: 1px solid rgba(197, 168, 128, 0.15) !important;
  border-radius: 12px !important;
}

.stepper-step {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  opacity: 0.55;
}

.stepper-step.active {
  opacity: 1 !important;
  background: rgba(197, 168, 128, 0.12) !important;
  border-color: rgba(197, 168, 128, 0.35) !important;
  box-shadow: 0 2px 12px rgba(197, 168, 128, 0.15) !important;
}

.stepper-step.completed {
  opacity: 0.85 !important;
  background: rgba(197, 168, 128, 0.04) !important;
}

.stepper-num {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(197, 168, 128, 0.35) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  font-family: var(--font-sans) !important;
  background: rgba(197, 168, 128, 0.06) !important;
  color: var(--accent-gold) !important;
  flex-shrink: 0 !important;
}

.stepper-step.active .stepper-num {
  background: linear-gradient(135deg, #C5A880 0%, #D4B26F 100%) !important;
  color: #080E1E !important;
  border-color: #C5A880 !important;
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.5) !important;
}

.stepper-label {
  font-size: 0.74rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--text-primary) !important;
}

/* --- Main Configurator Glass Canvas --- */
.configurator-main-panel {
  background: rgba(10, 18, 36, 0.82) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(197, 168, 128, 0.24) !important;
  border-radius: 20px !important;
  padding: 36px 32px !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  position: relative;
  overflow: hidden;
  width: 100% !important;
}

/* --- Smooth Step Animations --- */
.wizard-step {
  display: none;
  opacity: 0;
  transform: translateY(16px);
}

.wizard-step.active {
  display: block;
  animation: wizardStepEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wizardStepEnter {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wizard-step-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem) !important;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 8px;
}

.wizard-step-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.55;
}

/* --- Option Cards --- */
.options-grid-2col {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 18px !important;
  margin-bottom: 28px !important;
}

.options-grid-3col {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
  margin-bottom: 28px !important;
}

.quote-option-card-new {
  background: rgba(18, 32, 60, 0.5) !important;
  border: 1px solid rgba(197, 168, 128, 0.18) !important;
  border-radius: 14px !important;
  padding: 22px 20px !important;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.quote-option-card-new:hover {
  border-color: rgba(197, 168, 128, 0.5) !important;
  background: rgba(18, 32, 60, 0.85) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4) !important;
}

.quote-option-card-new.selected {
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.16) 0%, rgba(18, 32, 60, 0.92) 100%) !important;
  border-color: #C5A880 !important;
  box-shadow: 0 10px 28px rgba(197, 168, 128, 0.2), inset 0 0 0 1px #C5A880 !important;
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-svg-icon {
  width: 30px;
  height: 30px;
  color: var(--accent-gold);
}

.card-badge {
  font-size: 0.65rem;
  padding: 4px 9px;
  border-radius: 16px;
  background: rgba(197, 168, 128, 0.14);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Room Counter & Toggle Styles */
.counters-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 18px !important;
  margin-bottom: 28px !important;
}

.counter-box {
  background: rgba(18, 32, 60, 0.55);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s ease;
}

.counter-box:hover {
  border-color: rgba(197, 168, 128, 0.45);
}

.counter-label {
  font-size: 0.94rem;
  color: var(--text-primary);
  font-weight: 500;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-counter {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  background: rgba(197, 168, 128, 0.08);
  color: var(--accent-gold);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.btn-counter:hover {
  background: var(--accent-gold);
  color: #080E1E;
}

.counter-val {
  font-size: 1.05rem;
  font-weight: 700;
  width: 24px;
  text-align: center;
  color: var(--text-primary);
}

/* --- Form Inputs --- */
#quote-proposal-form .form-row-2 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 18px !important;
  margin-bottom: 10px !important;
}

#quote-proposal-form .form-group {
  margin-bottom: 18px !important;
  display: flex !important;
  flex-direction: column !important;
}

#quote-proposal-form .form-label {
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--accent-gold) !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
  display: block !important;
}

#quote-proposal-form .form-input {
  width: 100% !important;
  padding: 13px 18px !important;
  font-size: 0.92rem !important;
  font-family: var(--font-sans) !important;
  border-radius: 10px !important;
  background: rgba(8, 14, 30, 0.65) !important;
  border: 1px solid rgba(197, 168, 128, 0.22) !important;
  color: #FFFFFF !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

#quote-proposal-form .form-input:focus {
  border-color: #C5A880 !important;
  background: rgba(8, 14, 30, 0.9) !important;
  box-shadow: 0 0 18px rgba(197, 168, 128, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-1px) !important;
}

#quote-proposal-form textarea.form-input {
  min-height: 100px !important;
  resize: vertical !important;
}

#quote-proposal-form select.form-input option {
  background: #0F1A30 !important;
  color: #FFFFFF !important;
  padding: 10px !important;
}

/* --- Sticky Live Proposal Summary Sidebar Console --- */
.quote-summary-sidebar {
  position: sticky !important;
  top: 110px !important;
  background: rgba(12, 22, 44, 0.85) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(197, 168, 128, 0.35) !important;
  border-radius: 24px !important;
  padding: 36px 30px !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55) !important;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  margin-bottom: 22px;
}

.sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
}

.sidebar-live-tag {
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-live-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ade80;
}

.summary-data-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.summary-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.summary-data-label {
  color: var(--text-secondary);
}

.summary-data-val {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}

.summary-modules-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.module-pill {
  font-size: 0.74rem;
  padding: 5px 12px;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.28);
  color: var(--accent-gold);
  border-radius: 20px;
  font-weight: 500;
}

.summary-tier-box {
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.12) 0%, rgba(18, 32, 60, 0.7) 100%);
  border: 1px solid var(--border-gold);
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  margin-bottom: 24px;
}

.summary-tier-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.summary-tier-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.summary-perks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(197, 168, 128, 0.18);
  padding-top: 20px;
}

.summary-perks-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-perks-list svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.summary-perks-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-perks-list svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* Process Timeline & FAQ Sections */
.quote-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.process-step-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-thin);
  border-radius: 4px;
  padding: 30px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.process-step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.process-step-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--accent-gold);
  opacity: 0.6;
  margin-bottom: 12px;
}

.process-step-title {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.quote-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.faq-item-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-thin);
  border-radius: 4px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item-box:hover {
  border-color: var(--border-gold);
}

.faq-item-box.active {
  border-color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.04);
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  user-select: none;
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-icon-chevron {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item-box.active .faq-icon-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.faq-item-box.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(197, 168, 128, 0.15);
}

/* ==========================================================================
   12. Scroll Animations & Reveal Classes
   ========================================================================== */
.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   13. Responsive Styles (Media Queries)
   ========================================================================== */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }

  .container,
  .section-container,
  .header-container,
  .footer-container {
    padding: 0 40px;
  }

  .hero-left {
    padding-left: 40px;
  }

  .hero-title {
    font-size: 3.8rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .hero-container {
    flex-direction: column-reverse;
  }

  .hero-left {
    width: 100%;
    height: auto;
    min-height: 50vh;
    padding: 60px 40px;
  }

  .hero-right {
    width: 100%;
    height: 50vh;
  }

  .lifestyle-grid,
  .showroom-grid,
  .curated-grid {
    flex-direction: column;
    gap: 50px;
  }

  .lifestyle-left,
  .lifestyle-right,
  .showroom-left,
  .showroom-right,
  .curated-left,
  .curated-right {
    width: 100%;
  }

  .pillars-grid {
    flex-direction: column;
    gap: 30px;
  }

  .pillar-card {
    width: 100%;
    aspect-ratio: 16/10;
  }



  .options-grid {
    grid-template-columns: 1fr;
  }

  .options-grid.multi-select {
    grid-template-columns: 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
  }

  .main-header .btn-vip-outline {
    display: inline-flex !important;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .editorial-title {
    font-size: 2.2rem;
  }

  .booking-card {
    padding: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ==========================================================================
   14. GSAP Animation Helpers & Integration Overrides
   ========================================================================== */
body.gsap-active .reveal-section {
  opacity: 1;
  transform: none;
  transition: none;
}

body.gsap-active .scene-image-container {
  transition: none;
}

.btn-vip-drawer {
  width: 100%;
  justify-content: center;
  margin-top: 30px;
}

/* Re-enable smooth hover transform transitions after entrance animations are complete */
body.intro-complete .btn-vip-outline,
body.intro-complete .btn-primary,
body.intro-complete .btn-secondary,
body.intro-complete .btn-outline-gold,
body.intro-complete .btn-gold-solid {
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ==========================================================================
   GSAP Scrubbed Bento Gallery Styling
   ========================================================================== */
.hero-gallery-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: transparent;
}

.hero-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.hero-text-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(8, 14, 30, 0.95) 0%,
      rgba(8, 14, 30, 0.7) 40%,
      rgba(8, 14, 30, 0) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-text-overlay .hero-left {
  pointer-events: auto;
  width: 100%;
  max-width: 600px;
}

.gallery {
  position: relative;
  width: 100%;
  height: 100%;
  flex: none;
  z-index: 2;
}

.gallery__item {
  background-position: 50% 50%;
  background-size: cover;
  flex: none;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(197, 168, 128, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.gallery__item img,
.gallery__item video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.gallery--bento {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 16.5vw);
  grid-template-rows: repeat(4, 16.5vh);
  justify-content: end;
  align-content: center;
  padding-right: 60px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.gallery--final.gallery--bento {
  grid-template-columns: 0px 100vw 0px;
  grid-template-rows: 0px 50vh 50vh 0px;
  gap: 0;
  padding: 0;
  justify-content: center;
  align-content: center;
  height: 100%;
}

.gallery--final .gallery__item.video-item {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  z-index: 100 !important;
}

.gallery--final .gallery__item:not(.video-item) {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}


.gallery--bento .gallery__item:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
  height: 100%;
}

.gallery--bento .gallery__item:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}

.gallery--bento .gallery__item:nth-child(3) {
  grid-area: 2 / 2 / 4 / 3;
}

.gallery--bento .gallery__item:nth-child(4) {
  grid-area: 1 / 3 / 3 / 4;
}

.gallery--bento .gallery__item:nth-child(5) {
  grid-area: 3 / 1 / 4 / 2;
}

.gallery--bento .gallery__item:nth-child(6) {
  grid-area: 3 / 3 / 5 / 4;
  height: calc(100% + 36px);
}

.gallery--bento .gallery__item:nth-child(7) {
  grid-area: 4 / 1 / 5 / 2;
  height: calc(100% + 36px);
}

.gallery--bento .gallery__item:nth-child(8) {
  grid-area: 4 / 2 / 5 / 3;
  height: calc(100% + 36px);
}

/* ── Hero Bento Image Framing & Video Integration ── */
.gallery--bento .gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.gallery--bento .gallery__item:hover img {
  transform: scale(1.05);
}

/* ── Hero Bento Items 0.8s Smooth Cross-Dissolve Animation ── */
.gallery__item.hero-fade-gallery {
  position: relative;
  overflow: hidden;
}

.gallery__item.hero-fade-gallery img.hero-fade-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0 !important;
  filter: blur(4px) !important;
  transform: scale(1.04) !important;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
  pointer-events: none;
  will-change: opacity, filter, transform;
}

.gallery__item.hero-fade-gallery img.hero-fade-img.active {
  opacity: 1 !important;
  filter: blur(0px) !important;
  transform: scale(1.01) !important;
  pointer-events: auto;
}

.gallery__item.hero-fade-gallery:hover img.hero-fade-img.active {
  transform: scale(1.05) !important;
}

.gallery__item.video-item {
  position: relative;
}

.gallery__item.video-item img.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 2;
  transition: opacity 0.6s ease;
}

.gallery__item.video-item video#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  filter: none;
}

/* Responsive Overrides (tablet) */
@media (max-width: 991px) {
  .hero-text-overlay {
    padding: 0 40px;
  }

  .gallery--bento {
    padding-right: 40px;
    padding-bottom: 0;
    align-content: center;
    gap: 0px;
    grid-template-columns: repeat(3, 20vw);
    grid-template-rows: 115px 100px 102px 138px;
    height: auto;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVE — Simple clean layout for phones & small tablets
   Desktop is completely unchanged above. All mobile rules are here only.
   ========================================================================== */
@media (max-width: 768px) {

  /* --- Global Mobile Base --- */
  html {
    font-size: 14px;
  }

  .container,
  .section-container,
  .footer-container {
    padding: 0 20px;
  }

  /* --- Header Mobile --- */
  .header-container {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-container .menu-toggle {
    justify-self: unset;
  }

  .main-header .btn-vip-outline {
    display: inline-flex !important;
  }

  /* --- Drawer Mobile --- */
  .drawer-content {
    max-width: 100%;
    padding: 70px 30px 40px;
  }

  .drawer-link {
    font-size: 1.6rem;
  }

  /* Show VIP button inside drawer on mobile */
  .btn-vip-drawer {
    display: flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }

  /* --- Hero Mobile: Hide bento grid, show simple video hero --- */
  .hero-gallery-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background: #080E1E;
    /* Disable the pinned scroll on mobile — no GSAP pin */
  }

  /* Video as full-screen background on mobile */
  .hero-gallery-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(8, 14, 30, 0.95) 0%,
        rgba(8, 14, 30, 0.6) 50%,
        rgba(8, 14, 30, 0.2) 100%);
    z-index: 3;
    pointer-events: none;
  }

  /* Show ONLY video on mobile — zero lag instant playback */
  .hero-gallery-wrap::after {
    display: none !important;
  }

  .gallery--bento {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .gallery--bento .gallery__item:not(.video-item) {
    display: none !important;
  }

  .gallery--bento .gallery__item.video-item {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
  }

  #hero-video {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 2 !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
  }

  /* Hero text overlay — bottom-aligned on mobile */
  .hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0 24px 50px;
    z-index: 4;
    display: block;
    background: none;
    pointer-events: none;
  }

  .hero-text-overlay::before {
    display: none;
  }

  .hero-text-overlay .hero-left {
    pointer-events: auto;
    width: 100%;
    max-width: 100%;
  }

  .hero-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .hero-actions {
    margin-bottom: 24px;
    gap: 12px;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.75rem;
    padding: 14px 20px;
    width: 100%;
    justify-content: center;
  }



  /* --- Lifestyle Section Mobile --- */
  .lifestyle-section {
    padding: 60px 0;
  }

  .lifestyle-grid {
    flex-direction: column;
    gap: 36px;
  }

  .lifestyle-left,
  .lifestyle-right {
    width: 100%;
  }

  .editorial-title {
    font-size: 1.8rem;
  }

  .editorial-desc {
    font-size: 0.95rem;
  }

  .scene-visual-wrapper {
    clip-path: none !important;
    aspect-ratio: 4/3;
  }

  .segmented-controls {
    flex-wrap: wrap;
    justify-content: center;
  }

  .segment-btn {
    font-size: 0.75rem;
    padding: 10px 14px;
  }

  /* --- Pillars Section Mobile --- */
  .pillars-section {
    padding: 60px 0 70px;
  }

  .pillars-heading {
    font-size: 1.9rem;
  }

  .pillars-header {
    margin-bottom: 36px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pillar-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .pillar-panel {
    padding: 18px 20px 22px;
  }

  .pillar-title {
    font-size: 1.1rem;
  }

  /* --- Curated Collection Mobile --- */
  .curated-section {
    padding: 60px 0;
  }

  .curated-grid {
    flex-direction: column;
    gap: 40px;
  }

  .curated-left,
  .curated-right {
    width: 100%;
  }

  .carousel-container {
    max-width: 100%;
  }

  .switch-plate {
    width: 180px;
    height: 180px;
  }

  /* --- Experience Center Mobile --- */
  .showroom-section {
    padding: 60px 0;
  }

  .showroom-grid {
    flex-direction: column;
    gap: 36px;
  }

  .showroom-left,
  .showroom-right {
    width: 100%;
  }

  .showroom-image-frame {
    clip-path: none !important;
    aspect-ratio: 16/9;
  }

  .booking-card {
    padding: 28px 20px;
  }

  .booking-title {
    font-size: 1.6rem;
  }

  .booking-desc {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  /* --- Quote Engine Mobile --- */
  .quote-section {
    padding: 60px 0;
  }

  .quote-title {
    font-size: 2rem;
  }

  .quote-desc {
    font-size: 0.95rem;
  }

  /* --- Footer Mobile --- */
  .main-footer {
    padding: 60px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  /* --- Modals Mobile --- */
  .modal-card {
    padding: 32px 20px;
    margin: 16px;
    max-height: 92vh;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .options-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
  }

  .options-grid.multi-select {
    grid-template-columns: 1fr;
  }

  .quote-option-card {
    padding: 20px 16px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wizard-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .wizard-actions .btn-outline-gold,
  .wizard-actions .btn-gold-solid {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Very small phones */
@media (max-width: 390px) {
  .hero-title {
    font-size: 2rem;
  }

  .drawer-link {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   LUSION-INSPIRED: Corner Crosshair Marks
   ========================================================================== */
.corner-marks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 200;
}

.corner-mark {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0.3;
  transition: opacity 0.6s ease;
}

.corner-mark::before,
.corner-mark::after {
  content: '';
  position: absolute;
  background: var(--accent-gold);
}

.corner-mark::before {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
}

.corner-mark::after {
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
}

.corner-tl {
  top: 24px;
  left: 24px;
}

.corner-tr {
  top: 24px;
  right: 24px;
}

.corner-bl {
  bottom: 68px;
  left: 24px;
}

.corner-br {
  bottom: 68px;
  right: 24px;
}

/* ==========================================================================
   LUSION-INSPIRED: Custom Luxury Cursor (Gold & White)
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {

  body.has-custom-cursor,
  body.has-custom-cursor *,
  body.has-custom-cursor *::before,
  body.has-custom-cursor *::after {
    cursor: none !important;
  }
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none !important;
  z-index: 999999999 !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#custom-cursor.active {
  opacity: 1;
}

.cursor-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.8);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  will-change: left, top;
}

.cursor-ring {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(197, 168, 128, 0.65);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    background-color 0.3s ease;
  will-change: left, top;
}

/* Cursor grows on interactive hover */
#custom-cursor.cursor-hover .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: var(--accent-gold);
  background-color: rgba(197, 168, 128, 0.1);
}

#custom-cursor.cursor-hover .cursor-dot {
  background: #ffffff;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

/* Click feedback shrink */
#custom-cursor.cursor-click .cursor-ring {
  width: 22px;
  height: 22px;
  border-color: #ffffff;
}

/* ==========================================================================
   LUSION-INSPIRED: Scroll Progress Bar (bottom strip)
   ========================================================================== */
.scroll-progress-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 150;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,
      #C5A880 0%,
      #E6C898 50%,
      #C5A880 100%);
  box-shadow: 0 0 8px rgba(197, 168, 128, 0.8);
  transition: width 0.08s linear;
}

.scroll-progress-label {
  display: none;
}

body {
  padding-bottom: 0;
}

/* ==========================================================================
   LUSION-INSPIRED: Nav Link Slide Hover Effect
   ========================================================================== */
.drawer-link {
  position: relative;
  overflow: hidden;
}

.drawer-link .link-text-primary {
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-link .link-text-clone {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--accent-gold);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-link:hover .link-text-primary {
  transform: translateY(-100%);
}

.drawer-link:hover .link-text-clone {
  transform: translateY(-100%);
}

/* ==========================================================================
   LUSION-INSPIRED: Pulsing Live Tag
   ========================================================================== */
.lusion-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(201, 168, 122, 0.22);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(107, 107, 184, 0.06);
}

.lusion-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: lusionPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes lusionPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.55);
  }
}

/* ==========================================================================
   LUSION-INSPIRED: Giant Oversized Section Text
   ========================================================================== */
.oversized-reveal {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 12rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  overflow: hidden;
}

.oversized-reveal-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.oversized-reveal-inner {
  display: block;
  transform: translateY(108%);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.oversized-reveal.in-view .oversized-reveal-inner {
  transform: translateY(0);
}

.oversized-reveal-line:nth-child(2) .oversized-reveal-inner {
  transition-delay: 0.12s;
}

.oversized-reveal-line:nth-child(3) .oversized-reveal-inner {
  transition-delay: 0.24s;
}

/* ==========================================================================
   Tablet Breakpoint — Pillars 5-card grid adapts to 3 columns
   ========================================================================== */
@media (max-width: 1100px) and (min-width: 769px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

/* ==========================================================================
   New Sections Responsive — Tablet & Mobile
   ========================================================================== */

/* --- Welcome Split --- */
@media (max-width: 1024px) {
  .welcome-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .stat-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sectors-header {
    flex-direction: column;
    gap: 20px;
  }

  .sectors-header-desc {
    flex: unset;
  }

  .quote-banner-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .tools-dark-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .welcome-split {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }

  .stat-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sector-card {
    aspect-ratio: 2 / 3;
  }

  .quote-banner-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .btn-quote-cta {
    width: 100%;
    justify-content: center;
  }

  .tools-dark-grid {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .sector-card {
    aspect-ratio: 4 / 3;
  }

  .stat-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .welcome-heading {
    font-size: 2.2rem;
  }

  .footer-social-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Tailored Systems — Modern Page Grid / Bento Layout
   ========================================================================== */

/* ── Section ──────────────────────────────────────────────────────────────── */
.tailored-section {
  padding: 120px 0 140px;
  background-color: var(--bg-primary);
  position: relative;
}

/* ── Section Header ──────────────────────────────────────────────────────── */
.ts-grid-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 56px;
}

.ts-grid-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ts-grid-main-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 3.5vw, 3.4rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.ts-grid-main-heading em {
  font-style: italic;
  color: var(--accent-gold);
}

.ts-grid-header-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
}

.ts-grid-header-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.ts-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-gold);
  text-decoration: none;
  width: fit-content;
  transition: gap 0.3s ease, color 0.3s ease;
}

.ts-header-cta:hover {
  gap: 14px;
  color: var(--accent-gold-hover);
}

.ts-header-cta svg {
  transition: transform 0.3s ease;
}

.ts-header-cta:hover svg {
  transform: translateX(4px);
}

/* ── Bento Grid Container ────────────────────────────────────────────────── */
.ts-bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 18px;
}

/* ── Base Card ───────────────────────────────────────────────────────────── */
.ts-bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(197, 168, 128, 0.18);
  background: transparent !important;
  cursor: pointer;
  transition: border-color 0.45s ease, box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ts-bento-card:hover {
  border-color: rgba(197, 168, 128, 0.6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  transform: translateY(-5px);
}

/* ── Hero Card — spans col 1, rows 1 + 2 ────────────────────────────────── */
.ts-bento-hero {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

/* ── Feature Card ─────────────────────────────────────────────────────────── */
.ts-bento-feature {
  grid-column: span 1;
  grid-row: span 1;
}

/* ── Image Layer — 100% Brightness & Crystal Clarity ───────────────────── */
.ts-bento-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ts-bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.9s ease;
  filter: brightness(1.04) contrast(1.03) !important;
}

.ts-bento-card:hover .ts-bento-img {
  transform: scale(1.06);
  filter: brightness(1.08) contrast(1.05) !important;
}

/* Remove blue tint veil — keep images 100% bright & clear */
.ts-bento-img-veil,
.ts-bento-img-veil-h {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* ── Content Positioning — Tightly Scoped Subtle Text Backplate for 100% Image Visibility & Text Clarity ── */
.ts-bento-content {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.6) 100%) !important;
}

.ts-bento-content-bottom {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px 18px;
}

/* Cards with light backgrounds (Card 02 Lighting & Card 03 Climate) image brightness tuning for vivid text contrast */
#ts-card-2 .ts-bento-img,
#ts-card-3 .ts-bento-img {
  filter: brightness(0.80) contrast(1.08) !important;
}

#ts-card-2:hover .ts-bento-img,
#ts-card-3:hover .ts-bento-img {
  filter: brightness(0.88) contrast(1.08) !important;
}

/* ── Number Label ─────────────────────────────────────────────────────────── */
.ts-bento-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(212, 178, 111, 0.85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  z-index: 3;
  transition: color 0.4s ease;
}

.ts-bento-card:hover .ts-bento-num {
  color: #ffffff;
}

/* ── Content Details — Crystal-Clear Yellow Gold Text & Sharp Shadow ───────── */
.ts-bento-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F5D796;
  text-shadow: 0 1px 2px #000, 0 2px 6px #000, 0 0 10px rgba(0, 0, 0, 0.95);
  margin-bottom: 2px;
}

.ts-bento-title {
  font-size: clamp(1.2rem, 1.4vw, 1.45rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

/* Pills row */
.ts-bento-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.ts-bento-pill {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F5EDD8;
  background: rgba(6, 10, 24, 0.85);
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 100px;
  padding: 4px 11px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.ts-bento-card:hover .ts-bento-pill {
  background: rgba(197, 168, 128, 0.25);
  color: #ffffff;
  border-color: rgba(197, 168, 128, 0.7);
}

/* CTA Link — High-Contrast Gold */
.ts-bento-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4b26f;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.ts-bento-card:hover .ts-bento-link {
  color: #ffffff;
}

.ts-bento-link:hover {
  gap: 13px;
}

.ts-bento-link svg {
  transition: transform 0.3s ease;
}

.ts-bento-link:hover svg {
  transform: translateX(4px);
}

/* Gold sweep line at bottom on hover */
.ts-bento-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4;
}

.ts-bento-card:hover::after {
  width: 100%;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ts-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .ts-bento-hero {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 380px;
  }

  .ts-bento-wide {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 300px;
  }

  .ts-bento-feature {
    grid-column: auto;
    min-height: 320px;
  }

  .ts-grid-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .ts-bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .ts-bento-hero,
  .ts-bento-feature,
  .ts-bento-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .ts-bento-content-overlay {
    top: auto;
    left: 0;
    right: 0;
    transform: none;
    max-width: 100%;
    padding: 28px 24px 32px;
    bottom: 0;
    position: absolute;
  }

  .ts-bento-img-veil-h {
    background: linear-gradient(to top, rgba(8, 14, 30, 0.94) 0%, rgba(8, 14, 30, 0.5) 50%, transparent 100%);
  }

  .tailored-section {
    padding: 80px 0 100px;
  }
}

/* ── Contact Split Panel Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-split-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .csp-left {
    min-height: 380px;
  }

  .csp-left-content {
    padding: 36px 36px;
  }

  .csp-right {
    padding: 30px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .csp-right .contact-form-card {
    margin: 0 auto;
    align-self: center;
  }
}

@media (max-width: 640px) {
  .contact-split-panel {
    border-radius: 14px;
    margin-bottom: 20px !important;
  }

  .csp-left {
    min-height: 300px;
  }

  .csp-left-content {
    padding: 28px 24px;
  }

  .csp-headline-text {
    font-size: 2rem;
  }

  .csp-right {
    padding: 24px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .csp-info-cards {
    gap: 8px;
  }

  .csp-info-card {
    padding: 12px 14px;
  }
}

/* ==========================================================================
   Intaura Legal Hub, Privacy Policy & Terms — Signature Design System
   ========================================================================== */

.legal-page-body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
}

/* ── Hero Section ── */
.legal-hero {
  position: relative;
  padding: 160px 0 60px 0;
  background: radial-gradient(circle at 50% 20%, rgba(197, 168, 128, 0.08) 0%, rgba(8, 14, 30, 0) 70%),
    linear-gradient(180deg, #050813 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-thin);
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(197, 168, 128, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.3;
  pointer-events: none;
}

.legal-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.legal-breadcrumb a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-breadcrumb a:hover {
  color: var(--accent-gold-hover);
  text-decoration: none !important;
}

.legal-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.legal-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.legal-hero-title span {
  color: var(--accent-gold);
  font-style: italic;
}

.legal-hero-desc {
  max-width: 720px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── Document Switcher & Meta Bar ── */
.legal-hero-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 16px 24px;
  background: rgba(18, 32, 60, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
}

.legal-nav-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 14, 30, 0.6);
  padding: 5px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-tab-btn {
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legal-tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.legal-tab-btn.active {
  background: var(--accent-gold);
  color: var(--text-dark-primary);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(197, 168, 128, 0.3);
}

.legal-meta-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legal-meta-item strong {
  color: var(--text-secondary);
}

.legal-actions-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-legal-action {
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-thin);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-legal-action:hover {
  color: var(--accent-gold);
  border-color: var(--border-gold);
  background: rgba(197, 168, 128, 0.08);
}


/* ==========================================================================
   BEAUTIFUL SECTION: Signature Trust & Security Blueprint
   ========================================================================== */
.beautiful-trust-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0B1226 50%, var(--bg-primary) 100%);
  position: relative;
  border-bottom: 1px solid var(--border-thin);
}

.beautiful-trust-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
  opacity: 0.3;
}

.trust-section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.trust-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px auto;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.trust-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.trust-title span {
  color: var(--accent-gold);
  font-style: italic;
}

.trust-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Filter Controls inside Beautiful Section */
.trust-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.trust-filter-btn {
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(18, 32, 60, 0.6);
  border: 1px solid var(--border-thin);
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-filter-btn:hover {
  border-color: var(--border-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.trust-filter-btn.active {
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.25) 0%, rgba(18, 32, 60, 0.9) 100%);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.15);
}

/* 6 Grid Feature Cards */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.trust-card {
  position: relative;
  background: rgba(15, 26, 48, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 168, 128, 0.18);
  border-radius: 20px;
  padding: 36px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(197, 168, 128, 0.1);
  background: rgba(18, 32, 60, 0.85);
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.trust-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.trust-card:hover .trust-card-icon {
  transform: scale(1.1) rotate(4deg);
  background: rgba(197, 168, 128, 0.2);
}

.trust-card-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(139, 155, 180, 0.12);
  color: var(--accent-indigo);
  border: 1px solid rgba(139, 155, 180, 0.2);
}

.trust-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.trust-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.trust-card-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-gold);
  font-weight: 500;
}

.trust-card-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}


/* ==========================================================================
   MAIN DUAL-COLUMN LEGAL LAYOUT & SEARCH
   ========================================================================== */
.legal-main-section {
  padding: 70px 0 120px 0;
  background-color: var(--bg-primary);
}

.legal-main-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Filter Search Bar */
.legal-search-wrapper {
  margin-bottom: 45px;
  position: relative;
}

.legal-search-box {
  width: 100%;
  padding: 18px 24px 18px 56px;
  background: rgba(15, 26, 48, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.legal-search-box::placeholder {
  color: var(--text-muted);
}

.legal-search-box:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 25px rgba(197, 168, 128, 0.2);
  background: rgba(18, 32, 60, 0.95);
}

.legal-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  pointer-events: none;
}

/* Dual Column Layout */
.legal-grid-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sticky Table of Contents Sidebar */
.legal-sidebar {
  position: sticky;
  top: 100px;
  background: rgba(15, 26, 48, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-thin);
  border-radius: 16px;
  padding: 28px 22px;
}

.toc-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.toc-link:hover {
  color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.08);
}

.toc-link.active {
  color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.15);
  font-weight: 600;
  border-left: 2px solid var(--accent-gold);
}

.toc-num {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--accent-gold);
  opacity: 0.8;
}

.legal-sidebar-cta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.btn-sidebar-contact {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark-primary);
  background: var(--accent-gold);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-sidebar-contact:hover {
  background: var(--accent-gold-hover);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

/* Legal Content Body */
.legal-content-body {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.legal-section-card {
  background: rgba(15, 26, 48, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 168, 128, 0.12);
  border-radius: 20px;
  padding: 40px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.legal-section-card:hover {
  border-color: rgba(197, 168, 128, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.legal-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-card-num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(197, 168, 128, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.legal-card-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.25;
}

.btn-copy-anchor {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-copy-anchor:hover {
  color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.1);
}

.legal-text-p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-text-p strong {
  color: var(--text-primary);
}

.legal-list {
  list-style: none;
  margin: 18px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.legal-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-gold);
  font-size: 0.7rem;
}

/* Callout Highlights Box */
.legal-callout-box {
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.08) 0%, rgba(15, 26, 48, 0.8) 100%);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin: 24px 0;
}

.legal-callout-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-callout-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── FAQ Accordion ── */
.legal-faq-container {
  margin-top: 50px;
}

.legal-faq-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(15, 26, 48, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: var(--accent-gold);
  background: rgba(18, 32, 60, 0.8);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px 24px;
}

.faq-answer-text {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Contact DPO Banner ── */
.dpo-contact-banner {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(18, 32, 60, 0.9) 0%, rgba(8, 14, 30, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.dpo-info-left h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.dpo-info-left p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.dpo-contact-details {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--accent-gold);
}

/* Responsive adjustments for Legal & Beautiful Section */
@media screen and (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-grid-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
    margin-bottom: 30px;
  }

  .toc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .legal-hero {
    padding: 120px 0 40px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .legal-hero-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-nav-tabs {
    width: 100%;
    justify-content: center;
  }

  .toc-list {
    grid-template-columns: 1fr;
  }

  .dpo-contact-banner {
    flex-direction: column;
    text-align: center;
  }

  .dpo-contact-details {
    flex-direction: column;
    gap: 8px;
  }
}

/* ==========================================================================
   Intaura Dedicated Navbar Pages Design System
   (Lifestyle Experience, Our Pillars, Curated Collection, Experience Center, Quote Engine, Contact Us)
   ========================================================================== */

/* ── Common Inner Page Hero ── */
.inner-page-hero {
  position: relative;
  padding: 160px 0 70px 0;
  background: transparent !important;
  border-bottom: 1px solid var(--border-thin);
  overflow: hidden;
}

.inner-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(197, 168, 128, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.3;
  pointer-events: none;
}

.inner-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.inner-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.inner-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 20px;
  max-width: 850px;
}

.inner-hero-title em,
.inner-hero-title span {
  color: var(--accent-gold);
  font-style: italic;
}

.inner-hero-desc {
  max-width: 720px;
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
}

.inner-hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.inner-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inner-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.inner-stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ── 1. Lifestyle Experience Page Custom Elements ── */
.lifestyle-modes-section {
  padding: 90px 0;
  background: transparent !important;
  border-bottom: 1px solid var(--border-thin);
}

.lifestyle-mode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.lifestyle-mode-card {
  background: rgba(18, 32, 60, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-thin);
  border-radius: 20px;
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.lifestyle-mode-card:hover,
.lifestyle-mode-card.active {
  border-color: var(--accent-gold);
  background: rgba(18, 32, 60, 0.9);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(197, 168, 128, 0.15);
}

.mode-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.mode-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.mode-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.mode-presets-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.mode-preset-pill {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(139, 155, 180, 0.12);
  color: var(--accent-indigo);
  border: 1px solid rgba(139, 155, 180, 0.2);
}

/* Interactive Room Simulator */
.room-simulator-box {
  background: rgba(15, 26, 48, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 40px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sim-preview-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.sim-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.sim-controls-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sim-slider-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sim-slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.sim-slider-label strong {
  color: var(--accent-gold);
}

.sim-range-input {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.sim-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  cursor: pointer;
}

/* ── 2. Curated Collection Page Custom Elements ── */
.collection-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.collection-filter-btn {
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(18, 32, 60, 0.6);
  border: 1px solid var(--border-thin);
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.collection-filter-btn:hover {
  color: var(--accent-gold);
  border-color: var(--border-gold);
}

.collection-filter-btn.active {
  background: var(--accent-gold);
  color: var(--text-dark-primary);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: rgba(15, 26, 48, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(197, 168, 128, 0.15);
  background: rgba(18, 32, 60, 0.85);
}

.product-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: rgba(8, 14, 30, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(8, 14, 30, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
}

.product-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-brand {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-finishes {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.finish-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.finish-dot:hover {
  transform: scale(1.25);
}

.btn-product-spec {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-thin);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-product-spec:hover {
  background: var(--accent-gold);
  color: var(--text-dark-primary);
  border-color: var(--accent-gold);
}

/* ── 3. Experience Center Page Custom Elements ── */
.tour-studio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.studio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.studio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.studio-card:hover .studio-card-img {
  transform: scale(1.06);
}

.studio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 14, 30, 0.95) 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.studio-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.studio-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.studio-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive Breakpoints for Inner Pages */
@media screen and (max-width: 1200px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .lifestyle-mode-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-simulator-box {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-studio-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 640px) {
  .lifestyle-mode-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero-stats {
    gap: 20px;
  }
}

/* ==========================================================================
   PAGE DISSOLVE TRANSITION & RESIDENTIAL PAGE MASTER STYLES
   ========================================================================== */

/* ── Smooth Page Dissolve Overlay ── */
.page-dissolve-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: var(--bg-primary, #080E1E);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.page-dissolve-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ── Residential Hero Actions & Hero Media ── */
.residential-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-primary, #080E1E);
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.1);
  transform: scale(1.03);
  transition: transform 12s ease;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 14, 30, 0.7) 0%,
      rgba(8, 14, 30, 0.88) 60%,
      rgba(8, 14, 30, 0.98) 100%);
}

.residential-hero .inner-hero-container {
  position: relative;
  z-index: 5;
}

.residential-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 40px;
  flex-wrap: wrap;
}

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #C5A880 0%, #E3C598 100%);
  color: #080E1E;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.28);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(197, 168, 128, 0.42);
  color: #000000;
}

.btn-secondary-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 6px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary-glass:hover {
  background: rgba(197, 168, 128, 0.12);
  border-color: var(--accent-gold);
  color: #FFFFFF;
}

/* ── Residential Editorial Section ── */
.res-editorial-section {
  padding: 90px 0;
  background: var(--bg-primary, #080E1E);
}

.res-editorial-header {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}

.res-section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #FFFFFF;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.res-section-title em {
  font-style: italic;
  color: var(--accent-gold, #C5A880);
}

.res-section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary, #A0AABF);
  line-height: 1.6;
}

/* Feature Grid Cards */
.res-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.res-feature-card {
  background: rgba(15, 26, 48, 0.55);
  border: 1px solid rgba(197, 168, 128, 0.18);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.res-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.res-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.res-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.res-feature-card:hover .res-card-img {
  transform: scale(1.05);
}

.res-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  background: rgba(8, 14, 30, 0.85);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--accent-gold, #C5A880);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.res-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.res-card-title {
  font-size: 1.45rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.3;
}

.res-card-desc {
  font-size: 0.92rem;
  color: #A0AABF;
  line-height: 1.6;
  margin-bottom: 20px;
}

.res-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.res-card-bullets li {
  font-size: 0.85rem;
  color: #D1D7E3;
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
}

.res-card-bullets li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold, #C5A880);
  font-size: 0.75rem;
}

/* Pillars Page Ecosystem Partners Grid */
.pillars-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* ==========================================================================
   EXCLUSIVE REDESIGNED INTUARA ENQUIRY FORM STYLES
   ========================================================================== */

.residential-enquiry-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #080E1E 0%, #0B132B 50%, #080E1E 100%);
  position: relative;
}

.res-enquiry-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.res-enquiry-header {
  margin-bottom: 45px;
}

.res-enquiry-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #FFFFFF;
  margin: 10px 0 6px;
}

.res-enquiry-subtitle {
  font-size: 1.25rem;
  color: var(--accent-gold, #C5A880);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.res-enquiry-desc {
  font-size: 0.96rem;
  color: #A0AABF;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Form Glass Card */
.res-form-card {
  background: rgba(15, 24, 44, 0.75);
  border: 1px solid rgba(197, 168, 128, 0.22);
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.form-block {
  margin-bottom: 10px;
}

.form-block-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.block-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid var(--accent-gold, #C5A880);
  color: var(--accent-gold, #C5A880);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
}

.form-divider {
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(197, 168, 128, 0.2) 20%,
      rgba(197, 168, 128, 0.2) 80%,
      transparent 100%);
  margin: 32px 0;
}

/* Grid & Inputs */
.form-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #D1D7E3;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-label .req {
  color: var(--accent-gold, #C5A880);
}

.res-input,
.res-select,
.res-textarea {
  width: 100%;
  background: rgba(8, 14, 30, 0.7);
  border: 1px solid rgba(197, 168, 128, 0.22);
  border-radius: 8px;
  padding: 13px 16px;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.res-input:focus,
.res-select:focus,
.res-textarea:focus {
  border-color: var(--accent-gold, #C5A880);
  box-shadow: 0 0 12px rgba(197, 168, 128, 0.25);
  background: rgba(8, 14, 30, 0.9);
}

.res-select option {
  background: #080E1E;
  color: #FFFFFF;
}

.res-textarea {
  height: 110px;
  resize: vertical;
}

/* Radio Pill Group */
.radio-pill-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-pill input[type="radio"] {
  display: none;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: rgba(8, 14, 30, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.22);
  border-radius: 8px;
  color: #A0AABF;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-pill input[type="radio"]:checked+.pill-btn {
  background: rgba(197, 168, 128, 0.15);
  border-color: var(--accent-gold, #C5A880);
  color: #FFFFFF;
  box-shadow: 0 0 14px rgba(197, 168, 128, 0.22);
}

.pill-btn.highlight-gold {
  position: relative;
}

/* Title row with badge */
.block-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.package-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-gold, #C5A880);
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.package-link-badge:hover {
  background: rgba(197, 168, 128, 0.15);
}

/* Custom Services Panel & Grid */
.custom-services-box {
  background: rgba(8, 14, 30, 0.5);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
}

.services-panel {
  display: none;
}

.services-panel.active {
  display: block;
}

.services-panel-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold, #C5A880);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.checkbox-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}

.check-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(15, 26, 48, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}

.check-option:hover {
  background: rgba(197, 168, 128, 0.08);
  border-color: rgba(197, 168, 128, 0.25);
}

.check-option input[type="checkbox"] {
  display: none;
}

.check-box-custom {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  border: 1.5px solid rgba(197, 168, 128, 0.4);
  background: rgba(8, 14, 30, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.25s ease;
}

.check-option input[type="checkbox"]:checked+.check-box-custom {
  background: var(--accent-gold, #C5A880);
  border-color: var(--accent-gold, #C5A880);
}

.check-option input[type="checkbox"]:checked+.check-box-custom::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #080E1E;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -1px;
}

.check-label {
  font-size: 0.84rem;
  color: #D1D7E3;
  line-height: 1.35;
}

/* File Dropzone */
.file-dropzone {
  border: 2px dashed rgba(197, 168, 128, 0.3);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  background: rgba(8, 14, 30, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-dropzone:hover,
.file-dropzone.highlight {
  border-color: var(--accent-gold, #C5A880);
  background: rgba(197, 168, 128, 0.08);
}

.file-input-hidden {
  display: none;
}

.file-dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #A0AABF;
}

.file-dropzone-content svg {
  stroke: var(--accent-gold, #C5A880);
  margin-bottom: 4px;
}

.file-drop-text {
  font-size: 0.88rem;
  color: #FFFFFF;
  font-weight: 500;
}

.file-drop-sub {
  font-size: 0.76rem;
  color: #7A89A6;
}

.file-list-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.file-item-tag {
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid var(--accent-gold, #C5A880);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  color: #FFFFFF;
}

/* Submit Row & Button */
.form-submit-row {
  margin-top: 36px;
}

.btn-res-enquiry-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #C5A880 0%, #E3C598 100%);
  color: #080E1E;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(197, 168, 128, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-res-enquiry-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(197, 168, 128, 0.45);
  color: #000000;
}

/* Toast Notification */
.res-toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  max-width: 420px;
  background: #0F1A30;
  border: 1px solid var(--accent-gold, #C5A880);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.res-toast-notification.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}

.toast-heading {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.toast-message {
  font-size: 0.85rem;
  color: #A0AABF;
  line-height: 1.4;
}

.toast-close {
  background: transparent;
  border: none;
  color: #A0AABF;
  font-size: 1.4rem;
  cursor: pointer;
  position: absolute;
  top: -4px;
  right: -4px;
}

/* ==========================================================================
   PINTEREST-STYLE SPLIT EDITORIAL SHOWCASE & ENQUIRY SECTION
   ========================================================================== */

.res-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.32fr;
  gap: 45px;
  align-items: start;
  position: relative;
}

.res-split-left {
  position: sticky;
  top: 90px;
  z-index: 10;
}

.res-editorial-sticky-card {
  background: rgba(15, 26, 48, 0.65);
  border: 1px solid rgba(197, 168, 128, 0.22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.res-editorial-sticky-card:hover {
  border-color: rgba(197, 168, 128, 0.45);
}

/* Image Frame & Overlays */
.res-sticky-img-frame {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.res-sticky-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.res-editorial-sticky-card:hover .res-sticky-img {
  transform: scale(1.05);
}

.res-img-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 14, 30, 0.25) 0%,
      rgba(8, 14, 30, 0.6) 60%,
      rgba(8, 14, 30, 0.95) 100%);
}

/* Floating Badges */
.floating-badge-top {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(8, 14, 30, 0.88);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold, #C5A880);
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.pulse-gold-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold, #C5A880);
  box-shadow: 0 0 10px var(--accent-gold, #C5A880);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.7);
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(197, 168, 128, 0);
  }

  100% {
    transform: scale(0.9);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
  }
}

.floating-rating-card {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 12px 18px;
  background: rgba(8, 14, 30, 0.9);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.stars-row {
  color: #FFD700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.rating-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
}

.rating-sub {
  font-size: 0.7rem;
  color: #A0AABF;
}

/* Left Content Body */
.res-left-content {
  padding: 30px 26px;
}

.res-left-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: #FFFFFF;
  line-height: 1.2;
  margin: 10px 0 4px;
}

.res-left-title em {
  font-style: italic;
  color: var(--accent-gold, #C5A880);
}

.res-left-subtitle {
  font-size: 1.1rem;
  color: var(--accent-gold, #C5A880);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.res-left-desc {
  font-size: 0.92rem;
  color: #A0AABF;
  line-height: 1.6;
  margin-bottom: 26px;
}

/* Perks List */
.res-perks-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(8, 14, 30, 0.5);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.perk-item:hover {
  transform: translateX(6px);
  border-color: rgba(197, 168, 128, 0.4);
  background: rgba(197, 168, 128, 0.06);
}

.perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid var(--accent-gold, #C5A880);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold, #C5A880);
  flex-shrink: 0;
}

.perk-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 2px;
}

.perk-info p {
  font-size: 0.78rem;
  color: #A0AABF;
  margin: 0;
  line-height: 1.35;
}

/* Quick Contact Bar */
.res-quick-contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 10px;
  font-size: 0.8rem;
  color: #D1D7E3;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-call-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-gold, #C5A880);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.quick-call-link:hover {
  color: #FFFFFF;
}

/* ── Responsive Breakdown for Split Showcase ── */
@media screen and (max-width: 1100px) {
  .res-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .res-split-left {
    position: static;
  }

  .res-sticky-img-frame {
    height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .res-editorial-sticky-card {
    border-radius: 16px;
  }

  .res-left-content {
    padding: 22px 18px;
  }

  .floating-rating-card {
    display: none;
  }

  .res-form-card {
    padding: 26px 18px;
    border-radius: 16px;
  }

  .form-grid-2col,
  .checkbox-options-grid {
    grid-template-columns: 1fr;
  }

  .residential-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-gold,
  .btn-secondary-glass {
    width: 100%;
  }

  .radio-pill-group {
    flex-direction: column;
  }

  .pill-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   COMPACT INTERACTIVE 3-STEP WIZARD CARD STYLES
   ========================================================================== */

.res-wizard-card {
  background: rgba(15, 26, 48, 0.75);
  border: 1px solid rgba(197, 168, 128, 0.28);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.wizard-header-strip {
  background: rgba(8, 14, 30, 0.88);
  border-bottom: 1px solid rgba(197, 168, 128, 0.18);
  padding: 18px 24px 0;
  position: relative;
}

.wizard-step-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 16px;
}

.wizard-tab {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s ease, background 0.3s ease;
  padding: 6px 12px;
  border-radius: 8px;
}

.wizard-tab:hover {
  opacity: 0.85;
}

.wizard-tab.active {
  opacity: 1;
  background: rgba(197, 168, 128, 0.14);
}

.tab-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold, #C5A880);
  background: rgba(197, 168, 128, 0.2);
  padding: 2px 7px;
  border-radius: 6px;
}

.tab-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFFFF;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
}

.tab-connector {
  flex: 1;
  height: 1px;
  background: rgba(197, 168, 128, 0.2);
  margin: 0 2px;
}

.wizard-progress-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}

.wizard-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #C5A880 0%, #E6C898 100%);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.res-wizard-form {
  padding: 28px 26px;
}

.wizard-panel {
  display: none;
  animation: panelFadeIn 0.35s ease forwards;
}

.wizard-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-head {
  margin-bottom: 20px;
}

.panel-title {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.panel-sub {
  font-size: 0.83rem;
  color: #A0AABF;
}

.form-divider-compact {
  height: 1px;
  background: rgba(197, 168, 128, 0.12);
  margin: 18px 0;
}

.compact-scroll {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 12px;
  padding: 14px;
  background: rgba(8, 14, 30, 0.4);
}

/* Scrollbar styling for compact features */
.compact-scroll::-webkit-scrollbar {
  width: 4px;
}

.compact-scroll::-webkit-scrollbar-track {
  background: rgba(8, 14, 30, 0.5);
}

.compact-scroll::-webkit-scrollbar-thumb {
  background: rgba(197, 168, 128, 0.3);
  border-radius: 4px;
}

.compact-dropzone {
  padding: 16px 14px;
  border-radius: 12px;
}

.compact-textarea {
  min-height: 65px;
}

.panel-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.panel-nav-actions.right-align {
  justify-content: flex-end;
}

.panel-nav-actions.space-between {
  justify-content: space-between;
}

/* ── Spacing Utility Classes ─────────────────────────── */
.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-24 {
  margin-bottom: 24px;
}

.btn-wizard-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, #C5A880 0%, #9A7B4F 100%);
  color: #080E1E;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-wizard-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.35);
}

.btn-wizard-prev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: #D1D7E3;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-wizard-prev:hover {
  background: rgba(197, 168, 128, 0.15);
  color: #FFFFFF;
}

.compact-submit {
  padding: 11px 24px;
}

@media screen and (max-width: 600px) {
  .wizard-tab .tab-label {
    display: none;
  }

  .res-wizard-form {
    padding: 20px 16px;
  }
}

/* ── Compact Standard Environment Tuning Section (Lifestyle Experience) ── */
.lifestyle-compact-section {
  margin-top: 40px;
  background: rgba(12, 20, 36, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  padding: 32px 36px;
  backdrop-filter: blur(16px);
}

.compact-section-header {
  margin-bottom: 28px;
}

.compact-section-title {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin: 6px 0 8px 0;
  font-weight: 400;
}

.compact-section-subtitle {
  color: var(--text-secondary);
  font-size: 0.92rem;
  max-width: 680px;
  line-height: 1.5;
}

.compact-tuning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .compact-tuning-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-compact-section {
    padding: 24px;
  }
}

.compact-tuning-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.compact-tuning-card:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
}

.tuning-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.tuning-icon {
  font-size: 1.4rem;
}

.tuning-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.tuning-card-title {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 8px;
}

.tuning-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.tuning-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tuning-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 8px;
}

.tuning-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 8px;
}