/* ==========================================================================
   FLASH1: APPLE CUPERTINO WHITE & PRO LUXURY - VAIL CARAVAN
   Apple Inspired Minimalist Light Aesthetic, SF Pro Typography, Frosted Glass
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --apple-bg: #fbfbfd;
  --apple-bg-alt: #f5f5f7;
  --apple-bg-card: #ffffff;
  --apple-bg-card-hover: #fafafc;
  
  /* Brand Luxury Warm Gold & Slate Palette (from logo.png) */
  --brand-gold: #b89053;
  --brand-gold-dark: #987236;
  --brand-gold-light: #d8b174;
  --brand-gold-subtle: rgba(184, 144, 83, 0.10);
  --brand-gold-glow: rgba(184, 144, 83, 0.28);
  --brand-gradient: linear-gradient(135deg, #c59f5f 0%, #a07e44 100%);
  --brand-gradient-hover: linear-gradient(135deg, #b89053 0%, #8e6d35 100%);

  --apple-blue: #b89053;
  --apple-blue-hover: #a07e44;
  --apple-blue-subtle: rgba(184, 144, 83, 0.10);
  
  --apple-text-main: #18202a;
  --apple-text-muted: #5d6778;
  --apple-text-dim: #8b98a9;
  --apple-text-light: #cbd5e1;

  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-border-hover: rgba(184, 144, 83, 0.45);

  --font-apple: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Plus Jakarta Sans", "Inter", sans-serif;
  --font-main: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Plus Jakarta Sans", "Inter", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 25px 60px -10px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--apple-bg);
}

body {
  background-color: var(--apple-bg);
  color: var(--apple-text-main);
  font-family: var(--font-apple);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--apple-blue);
  color: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--apple-bg); }
::-webkit-scrollbar-thumb { background: #d2d2d7; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #86868b; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-apple);
  font-weight: 700;
  color: var(--apple-text-main);
  line-height: 1.15;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; position: relative; }
.section-light { background-color: var(--apple-bg); }
.section-alt { background-color: var(--apple-bg-alt); }
.section-white { background-color: #ffffff; }

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--brand-gold-subtle);
  color: var(--brand-gold-dark);
  border: 1px solid rgba(184, 144, 83, 0.22);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: var(--apple-text-main);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--apple-text-muted);
  line-height: 1.55;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(184, 144, 83, 0.32);
}
.btn-primary:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 144, 83, 0.42);
}

.btn-secondary {
  background: #ffffff;
  color: var(--apple-text-main);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--apple-bg-alt);
  border-color: rgba(184, 144, 83, 0.35);
  color: var(--brand-gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.04);
  color: var(--apple-text-main);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.btn-outline:hover {
  background: var(--brand-gold-subtle);
  border-color: rgba(184, 144, 83, 0.25);
  color: var(--brand-gold-dark);
  transform: translateY(-1px);
}

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; border-radius: var(--radius-full); }

/* Apple Style Clean White Card */
.apple-card {
  background: var(--apple-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.apple-card:hover {
  box-shadow: var(--shadow-float);
  border-color: var(--glass-border-hover);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  transition: all 0.3s ease;
  background: rgba(251, 251, 253, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header.scrolled {
  padding: 0.65rem 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.brand-logo-img:hover {
  transform: scale(1.02);
}

.footer-logo-img {
  height: 46px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.5rem;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--brand-gold);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.logo-text-top {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--apple-text-main);
  line-height: 1.1;
}

.logo-text-top span { color: var(--brand-gold); }

.logo-text-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-gold-dark);
  font-weight: 700;
}

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

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--apple-text-muted);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--apple-text-main);
  background: rgba(0, 0, 0, 0.05);
}

.nav-link.highlight {
  color: var(--apple-blue);
  background: var(--apple-blue-subtle);
  font-weight: 600;
}

.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-btn-factory { display: inline-flex; }

.hamburger-btn {
  display: none;
  font-size: 1.25rem;
  color: var(--apple-text-main);
  padding: 0.45rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.04);
}

.mobile-menu {
  display: none;
  padding: 1.5rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-md);
}

.mobile-menu.active { display: block; }

/* ==========================================================================
   Apple Pro Keynote Hero Section with Video Background
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  background-color: #fbfbfd;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.65;
  filter: saturate(1.1) contrast(1.05);
  transition: opacity 0.6s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 251, 253, 0.35) 0%, rgba(251, 251, 253, 0.78) 55%, #fbfbfd 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  max-width: 960px;
  margin: 0 auto 2.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(184, 144, 83, 0.28);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold-dark);
  box-shadow: 0 4px 16px rgba(184, 144, 83, 0.12);
  margin-bottom: 1.25rem;
}

.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 10px var(--brand-gold);
}

.hero-title {
  font-size: clamp(3.2rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  color: var(--apple-text-main);
}

.hero-title span {
  background: linear-gradient(135deg, #18202a 0%, #b89053 55%, #8e6d35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--apple-text-muted);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Hero Apple Keynote Stage */
.hero-stage-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.hero-model-pill-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.75rem;
  padding: 0.25rem;
}
.hero-model-pill-wrapper::-webkit-scrollbar { display: none; }

.hero-model-pill-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  padding: 0.35rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

.hero-model-pill {
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--apple-text-muted);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-model-pill span {
  font-size: 0.72rem;
  opacity: 0.75;
}

.hero-model-pill.active {
  background: var(--brand-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(24, 32, 42, 0.25);
}

.hero-model-pill:not(.active):hover {
  background: var(--brand-gold-subtle);
  color: var(--brand-gold-dark);
}

.hero-stage-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem 3rem;
  box-shadow: var(--shadow-float);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.hero-ambient-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 144, 83, 0.22) 0%, rgba(99, 102, 241, 0.06) 45%, transparent 70%);
  filter: blur(55px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 0.5s ease;
}

.hero-vehicle-img {
  position: relative;
  z-index: 2;
  max-height: 340px;
  width: auto;
  max-width: 85%;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.18));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  margin: 1rem 0;
}

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

/* Floating Glass Spec Badges (Desktop Absolute, Mobile Responsive Grid) */
.hero-badges-container {
  width: 100%;
}

.hero-float-badge {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 0.8rem 1.15rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-float-badge:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--apple-blue);
}

.badge-top-left { top: 2rem; left: 2rem; }
.badge-top-right { top: 2rem; right: 2rem; }
.badge-bottom-left { bottom: 2rem; left: 2rem; }
.badge-bottom-right { bottom: 2rem; right: 2rem; }

.float-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--apple-blue-subtle);
  color: var(--apple-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.hero-float-badge strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--apple-text-main);
  line-height: 1.2;
}

.hero-float-badge span {
  display: block;
  font-size: 0.74rem;
  color: var(--apple-text-muted);
  line-height: 1.2;
}

@media (max-width: 992px) {
  .hero-float-badge { position: static; }
  .hero-stage-card { padding: 1.75rem 1rem; }
  .badge-grid-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    width: 100%;
    margin-top: 1.5rem;
  }
}

/* Model Showcase Tabs */
.model-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.model-tab-btn {
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  background: #ffffff;
  color: var(--apple-text-muted);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.model-tab-btn:hover { color: var(--apple-text-main); border-color: rgba(0, 0, 0, 0.2); }

.model-tab-btn.active {
  background: #1d1d1f;
  color: #ffffff;
  border-color: #1d1d1f;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Showcase Card */
.showcase-card { padding: 2.5rem; }

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

.showcase-visual {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
}

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

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.thumb-btn {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.65;
  transition: all 0.2s ease;
  cursor: pointer;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.thumb-btn.active, .thumb-btn:hover { border-color: var(--apple-blue); opacity: 1; transform: scale(1.04); }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }

.spec-pills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.spec-pill {
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  background: var(--apple-bg-alt);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.spec-pill-label {
  font-size: 0.72rem;
  color: var(--apple-text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.spec-pill-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--apple-text-main);
  margin-top: 0.2rem;
}

/* Configurator (3D Studio) */
.configurator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.studio-canvas {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-lg);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.studio-caravan-preview {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  max-width: 100%;
  overflow: hidden;
}

.studio-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.25;
  transition: background-color 0.4s ease;
}

.studio-caravan-img {
  position: relative;
  z-index: 2;
  max-height: 220px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

/* Category Slider Controls */
.config-cat-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 1.75rem;
  background: var(--apple-bg-alt);
  padding: 0.35rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.cat-slider-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  color: var(--apple-text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.cat-slider-arrow:hover {
  background: var(--apple-blue);
  color: #ffffff;
  border-color: var(--apple-blue);
  transform: scale(1.08);
}

.config-cat-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0.15rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.config-cat-nav::-webkit-scrollbar {
  display: none;
}

.config-cat-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  background: transparent;
  color: var(--apple-text-muted);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.config-cat-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--apple-text-main);
}

.config-cat-btn.active {
  background: #ffffff;
  color: var(--apple-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

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

.color-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.color-card.active {
  background: #ffffff;
  border-color: var(--apple-blue);
  box-shadow: 0 0 0 2px var(--apple-blue);
}

.color-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.option-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.option-card {
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.2s ease;
}

.option-card.selected {
  background: #ffffff;
  border-color: var(--apple-blue);
  box-shadow: 0 0 0 2px var(--apple-blue);
}

.option-card-left { display: flex; gap: 0.85rem; }

.option-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--apple-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--apple-blue);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.option-card.selected .option-icon {
  background: var(--apple-blue);
  color: #ffffff;
}

/* Compare Table (Apple White Aesthetic) */
.compare-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.compare-table th, .compare-table td {
  padding: 1.15rem 1.4rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  color: var(--apple-text-main);
}

.compare-table th:first-child, .compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--apple-text-muted);
}

.compare-table tr:hover { background: rgba(0, 0, 0, 0.015); }

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-float);
  position: relative;
  transform: translateY(15px) scale(0.98);
  transition: all 0.25s ease;
}

.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }

.modal-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-body { padding: 1.75rem; }

.modal-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--apple-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.modal-close-btn:hover { background: #1d1d1f; color: #ffffff; }

/* Forms */
.form-group { margin-bottom: 1.15rem; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--apple-text-muted);
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--apple-bg-alt);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--apple-text-main);
  font-family: inherit;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--apple-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
}

.form-select option { background: #ffffff; color: var(--apple-text-main); }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 90; }

.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

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

/* Footer */
.footer {
  background: var(--apple-bg-alt);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 4.5rem 0 2.5rem;
  font-size: 0.85rem;
  color: var(--apple-text-muted);
}

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

.footer-col h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  color: var(--apple-text-main);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a:hover { color: var(--apple-blue); }

.social-row { display: flex; gap: 0.5rem; margin-top: 1.25rem; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--apple-text-main);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.social-btn:hover { background: var(--apple-blue); color: #ffffff; transform: translateY(-2px); }

/* Responsive Grid Utilities */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
  width: 100%;
}

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

.showcase-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.factory-banner-box {
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.75rem;
  background: #ffffff;
}

/* Responsive Media Queries */
@media (max-width: 1180px) {
  .nav-menu { display: none; }
  .hamburger-btn { display: block; }
  .nav-btn-factory { display: none; }
}

@media (max-width: 992px) {
  .hero-content, .showcase-grid, .configurator-layout { grid-template-columns: 1fr; }
  .contact-layout-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  .hero-stage-card {
    padding: 2rem 1.25rem;
  }
  .hero-badges-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.75rem;
    width: 100%;
    position: relative;
    z-index: 5;
  }
  .hero-float-badge {
    position: static !important;
    width: 100%;
    padding: 0.75rem 0.85rem;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 7rem 0 3.5rem;
  }
  .hero-title {
    font-size: clamp(2.1rem, 7.5vw, 2.8rem);
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-badges-container {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .showcase-highlights-grid {
    grid-template-columns: 1fr;
  }
  .factory-banner-box {
    padding: 1.75rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .factory-banner-box > div:last-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .factory-banner-box .btn {
    width: 100%;
    justify-content: center;
  }
  .color-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .showcase-card { padding: 1.25rem; }
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-title { font-size: 1.75rem; }
}

/* ==========================================================================
   Apple Pro Cinema Theater & Showcase Video Player
   ========================================================================== */
.showcase-media-toggle {
  display: inline-flex;
  background: var(--apple-bg-alt);
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  gap: 4px;
}

.media-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--apple-text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.media-toggle-btn.active {
  background: #ffffff;
  color: var(--apple-text-main);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.media-toggle-btn:hover:not(.active) {
  color: var(--apple-text-main);
}

.showcase-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000000;
  box-shadow: var(--shadow-md);
  display: none;
}

.showcase-video-wrapper.active {
  display: block;
}

.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cinema Theater Section */
.cinema-tab-nav-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.25rem;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: none;
}

.cinema-tab-nav-wrapper::-webkit-scrollbar {
  display: none;
}

.cinema-tab-nav {
  display: inline-flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  flex-shrink: 0;
}

.cinema-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-lg);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--apple-text-muted);
  min-width: 120px;
}

.cinema-tab-btn i {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  transition: transform 0.2s ease;
}

.cinema-tab-btn span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--apple-text-main);
}

.cinema-tab-btn small {
  font-size: 0.72rem;
  color: var(--apple-text-dim);
  font-weight: 500;
}

.cinema-tab-btn.active {
  background: #ffffff;
  color: var(--apple-blue);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.cinema-tab-btn.active span {
  color: var(--apple-blue);
}

.cinema-tab-btn.active i {
  transform: scale(1.12);
}

.cinema-stage-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  padding: 1.5rem;
}

.cinema-ambient-backlight {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.22) 0%, rgba(99, 102, 241, 0.12) 45%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
  transition: all 0.6s ease;
}

.cinema-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000000;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.25);
}

.cinema-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
  display: block;
}

.cinema-details-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 1.5rem;
}

.cinema-info {
  max-width: 650px;
}

.cinema-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--apple-blue-subtle);
  color: var(--apple-blue);
  margin-bottom: 0.5rem;
}

.cinema-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--apple-text-main);
}

.cinema-desc {
  font-size: 0.92rem;
  color: var(--apple-text-muted);
  line-height: 1.55;
  margin: 0;
}

.cinema-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .cinema-stage-card {
    padding: 1.15rem;
  }
  .cinema-details-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .cinema-actions {
    width: 100%;
  }
  .cinema-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* ==========================================================================
   Modals & Form Inputs (Apple Pro Frosted Glass)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
}

.modal-backdrop.active {
  display: flex !important;
}

.modal-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.28);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem 2rem;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--apple-text-main);
  line-height: 1.2;
}

.modal-close-btn {
  background: rgba(0, 0, 0, 0.04);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--apple-text-muted);
  transition: all 0.2s ease;
  line-height: 1;
  flex-shrink: 0;
}

.modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.09);
  color: var(--apple-text-main);
  transform: rotate(90deg);
}

.modal-body {
  margin-bottom: 1rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.15rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--apple-text-muted);
  margin-bottom: 0.45rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--apple-text-main);
  background: var(--apple-bg-alt);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.2s ease;
  display: block;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: #ffffff;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(184, 144, 83, 0.18);
}

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

@media (max-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .modal-card {
    padding: 1.5rem 1.15rem;
  }
}

