/* ==========================================================================
   SV BAKERS - ULTRA PROFESSIONAL VFX COMING SOON SITE STYLESHEET
   Brand: SV Bakers (By Heta Desai)
   ========================================================================== */

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

:root {
  --bg-primary: #fffaf5;
  --bg-secondary: #fdf5eb;
  --bg-card: rgba(255, 255, 255, 0.72);
  --bg-dark: #231215;
  --bg-dark-card: rgba(45, 22, 28, 0.75);
  
  --color-gold: #d4af37;
  --color-gold-light: #f4e8c1;
  --color-gold-glow: rgba(212, 175, 55, 0.4);
  
  --color-rose: #e6437d;
  --color-rose-soft: #fde8ee;
  --color-rose-deep: #b51a54;
  
  --color-chocolate: #3d1c16;
  --color-text-main: #2b1814;
  --color-text-muted: #6b554e;
  --color-text-light: #fbf5f1;
  
  --border-glass: rgba(212, 175, 55, 0.22);
  --shadow-soft: 0 12px 35px rgba(61, 28, 22, 0.08);
  --shadow-glow: 0 0 30px rgba(230, 67, 125, 0.25);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.35);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-script: 'Pinyon Script', cursive;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Fullscreen VFX Canvas Background */
#vfx-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* Ambient Radial Background Gradients */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 15% 20%, rgba(253, 232, 238, 0.7) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(244, 232, 193, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 250, 245, 1) 0%, rgba(253, 245, 235, 0.9) 100%);
}

.app-wrapper {
  position: relative;
  z-index: 2;
}

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

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 250, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--color-chocolate);
}

.brand-logo img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(230, 67, 125, 0.25);
  border: 2px solid var(--color-gold);
  transition: var(--transition-smooth);
}

.brand-logo:hover img {
  transform: scale(1.08) rotate(5deg);
  box-shadow: var(--shadow-gold);
}

.brand-info h1 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.1;
  color: var(--color-chocolate);
}

.brand-info span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-rose);
  display: block;
}

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

/* Sound & Control Buttons */
.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-chocolate);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.btn-icon:hover {
  background: var(--color-rose-soft);
  color: var(--color-rose);
  transform: translateY(-2px);
  border-color: var(--color-rose);
}

.btn-icon.active {
  background: var(--color-rose);
  color: #fff;
  border-color: var(--color-rose);
  box-shadow: var(--shadow-glow);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-deep) 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(230, 67, 125, 0.35);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.8s ease;
}

.btn-primary:hover::before {
  transform: rotate(45deg) translateY(100%);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(230, 67, 125, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  color: var(--color-chocolate);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  background: #ffffff;
  transform: translateY(-3px);
  color: var(--color-rose);
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  padding-top: 9rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  position: relative;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  background: rgba(253, 232, 238, 0.8);
  border: 1px solid rgba(230, 67, 125, 0.3);
  color: var(--color-rose-deep);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(230, 67, 125, 0.1);
  animation: pulse-glow 3s infinite alternate;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-rose);
  box-shadow: 0 0 10px var(--color-rose);
  animation: blink 1.5s infinite;
}

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

@keyframes pulse-glow {
  0% { box-shadow: 0 4px 15px rgba(230, 67, 125, 0.1); }
  100% { box-shadow: 0 4px 25px rgba(212, 175, 55, 0.3); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-chocolate);
  margin-bottom: 1.2rem;
}

.hero-title em {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  color: var(--color-rose);
  font-size: 4.8rem;
  display: block;
  margin-top: -0.5rem;
  margin-bottom: 0.2rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

/* COUNTDOWN CLOCK */
.countdown-box {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  max-width: 560px;
  position: relative;
  overflow: hidden;
}

.countdown-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.countdown-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.countdown-label h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--color-chocolate);
}

.countdown-label span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-rose);
}

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

.timer-unit {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 1rem 0.5rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: var(--transition-smooth);
}

.timer-unit:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.timer-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-rose-deep);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.timer-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--color-text-muted);
}

/* HERO VISUAL STAGE & 3D EMBLEM */
.hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-frame {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(253,232,238,0.7) 100%);
  padding: 1rem;
  box-shadow: 
    0 20px 60px rgba(61, 28, 22, 0.15),
    0 0 50px rgba(212, 175, 55, 0.3),
    inset 0 0 25px rgba(255, 255, 255, 0.8);
  border: 3px solid var(--color-gold-light);
  transform-style: preserve-3d;
  transition: transform 0.5s ease-out;
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 10px 20px rgba(61, 28, 22, 0.15));
}

.hero-logo-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.5);
  animation: rotate-slow 35s linear infinite;
  pointer-events: none;
}

.hero-logo-ring-2 {
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  border-radius: 50%;
  border: 1px solid rgba(230, 67, 125, 0.2);
  animation: rotate-slow 50s linear infinite reverse;
  pointer-events: none;
}

@keyframes rotate-slow {
  100% { transform: rotate(360deg); }
}

/* FLOATING VFX CARDS OVER HERO STAGE */
.vfx-badge-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-chocolate);
  z-index: 10;
  animation: float-gentle 4s ease-in-out infinite alternate;
}

.vfx-badge-card.card-1 {
  top: 10%;
  left: -15px;
  animation-delay: 0s;
}

.vfx-badge-card.card-2 {
  bottom: 15%;
  right: -15px;
  animation-delay: 1.5s;
}

.vfx-badge-card.card-3 {
  bottom: -10px;
  left: 20%;
  animation-delay: 2.5s;
}

.vfx-icon {
  font-size: 1.3rem;
}

@keyframes float-gentle {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(2deg); }
}

/* SECTION STYLING */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--color-text-light);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-rose);
  margin-bottom: 0.6rem;
  display: block;
}

.section-dark .section-eyebrow {
  color: var(--color-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-chocolate);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-dark .section-title {
  color: var(--color-text-light);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* FEATURE / TRUST CARDS */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.trust-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.trust-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-rose-soft);
  color: var(--color-rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem auto;
  transition: var(--transition-smooth);
}

.trust-card:hover .trust-card-icon {
  background: var(--color-rose);
  color: #ffffff;
  transform: scale(1.1) rotate(8deg);
}

.trust-card h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

/* SNEAK PEEK MENU SHOWCASE */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-glass);
  color: var(--color-chocolate);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--color-rose);
  color: #ffffff;
  border-color: var(--color-rose);
  box-shadow: var(--shadow-glow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(61, 28, 22, 0.12);
  border-color: var(--color-gold);
}

.menu-card-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.menu-card-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.menu-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-rose-deep);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.menu-card-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 0.5rem;
}

.menu-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px dashed rgba(61, 28, 22, 0.1);
}

.menu-price-tag {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-rose-deep);
}

/* ABOUT BAKER STORY SECTION */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.story-visual-wrap {
  position: relative;
}

.story-main-frame {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 4px solid #ffffff;
  position: relative;
}

.story-main-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.story-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-gold) 0%, #b89228 100%);
  color: #ffffff;
  padding: 1.25rem;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
  text-align: center;
  max-width: 160px;
}

.story-experience-badge b {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  display: block;
  line-height: 1;
}

.story-experience-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-content h3 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.story-content p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.story-list {
  list-style: none;
  margin-bottom: 2rem;
}

.story-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--color-chocolate);
  margin-bottom: 0.8rem;
  font-size: 0.98rem;
}

.story-list li span {
  color: var(--color-rose);
  font-size: 1.2rem;
}

/* 4-STEP ORDER PROCESS (DARK SECTION) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-card {
  background: var(--bg-dark-card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  padding: 2.25rem 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.process-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.process-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* VIP PRE-LAUNCH SUBSCRIBE BOX */
.vip-card {
  background: linear-gradient(135deg, rgba(255,250,245,0.95) 0%, rgba(253,232,238,0.85) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid var(--color-gold-light);
  border-radius: 32px;
  padding: 4rem 2.5rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(61, 28, 22, 0.12);
  position: relative;
  overflow: hidden;
}

.vip-form {
  display: flex;
  max-width: 520px;
  margin: 2rem auto 1rem auto;
  gap: 0.75rem;
}

.vip-input {
  flex-grow: 1;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--border-glass);
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.vip-input:focus {
  border-color: var(--color-rose);
  box-shadow: var(--shadow-glow);
}

/* FAQ ACCORDION */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item summary {
  padding: 1.35rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-chocolate);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--color-rose);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.75rem 1.5rem 1.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* FOOTER */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-rose);
}

.copyright {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* FLOATING WHATSAPP CTA */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background: #25D366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--transition-smooth);
  animation: pulse-wa 2.5s infinite;
}

.float-wa:hover {
  transform: scale(1.1) rotate(10deg);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* DESKTOP NAVIGATION */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.desktop-nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-chocolate);
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
  transition: var(--transition-smooth);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-rose);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.desktop-nav a:hover {
  color: var(--color-rose);
}

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

/* MOBILE HAMBURGER BUTTON & DRAWER */
.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  width: 44px;
  height: 44px;
}

.hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: var(--color-chocolate);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle-btn.open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--color-rose);
}

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

.mobile-toggle-btn.open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--color-rose);
}

.mobile-nav-drawer {
  position: fixed;
  top: 75px;
  left: 0;
  width: 100%;
  height: calc(100vh - 75px);
  background: rgba(255, 250, 245, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-chocolate);
  text-decoration: none;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(61, 28, 22, 0.15);
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  color: var(--color-rose);
  padding-left: 0.5rem;
}

.mobile-drawer-footer {
  margin-top: 1.5rem;
}

/* RESPONSIVE MEDIA QUERIES & MOBILE OPTIMIZATIONS */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-toggle-btn {
    display: flex;
  }

  .header-wa-btn .btn-text {
    display: none;
  }

  .header-wa-btn {
    padding: 0.7rem;
    border-radius: 50%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas, .countdown-box {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 1rem auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .hero-section {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 7.5vw, 3.5rem);
  }

  .hero-title em {
    font-size: clamp(3rem, 11vw, 4.5rem);
  }

  .section-title {
    font-size: clamp(2rem, 6.5vw, 2.8rem);
  }

  /* Scrollable Filter Tabs on Mobile */
  .menu-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Floating VFX Badges Mobile Positioning */
  .vfx-badge-card {
    padding: 0.6rem 0.9rem;
    font-size: 0.75rem;
  }

  .vfx-badge-card.card-1 {
    top: -10px;
    left: 0;
  }

  .vfx-badge-card.card-2 {
    bottom: 0px;
    right: 0;
  }

  .vfx-badge-card.card-3 {
    display: none; /* Hide 3rd floating badge on small mobile to prevent overlap */
  }

  .story-experience-badge {
    bottom: -15px;
    right: 15px;
    padding: 0.9rem 1.1rem;
  }

  .float-wa {
    width: 52px;
    height: 52px;
    bottom: 1.5rem;
    right: 1.25rem;
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .shell {
    padding: 0 1.1rem;
  }

  .hero-logo-frame {
    width: clamp(230px, 72vw, 320px);
    height: clamp(230px, 72vw, 320px);
  }

  .countdown-box {
    padding: 1.25rem 1rem;
    border-radius: 20px;
  }

  .timer-grid {
    gap: 0.4rem;
  }

  .timer-unit {
    padding: 0.75rem 0.2rem;
    border-radius: 12px;
  }

  .timer-num {
    font-size: 1.5rem;
  }

  .timer-tag {
    font-size: 0.65rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .vip-card {
    padding: 2.5rem 1.25rem;
    border-radius: 24px;
  }

  .vip-form {
    flex-direction: column;
  }

  .vip-input {
    width: 100%;
  }
}

