/* 
   Eternalus - Style Sheet
   Premium, Emotional, Mobile-First, and Glassmorphic
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Great+Vibes&display=swap');

:root {
  /* Color Palette */
  --color-primary-soft-pink: #FADADD;
  --color-rose-gold: #B76E79;
  --color-rose-gold-dark: #8E4C56;
  --color-cream-white: #FFF9F5;
  --color-lavender: #E6D7FF;
  --color-lavender-dark: #9A77E2;
  --color-warm-gold: #D4AF37;
  --color-warm-gold-light: #F3E5AB;
  --color-text-dark: #2C2321;
  --color-text-muted: #655956;
  --color-white: #FFFFFF;
  --color-glass-bg: rgba(255, 255, 255, 0.7);
  --color-glass-border: rgba(255, 255, 255, 0.5);
  --color-glass-shadow: rgba(183, 110, 121, 0.1);

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Inter', sans-serif;
  --font-accent: 'Great Vibes', cursive;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-cream-white);
  color: var(--color-text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Magical Orbs */
.bg-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--color-primary-soft-pink) 0%, rgba(255,255,255,0) 70%);
}

.orb-2 {
  bottom: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--color-lavender) 0%, rgba(255,255,255,0) 70%);
  animation-duration: 35s;
  animation-delay: -5s;
}

.orb-3 {
  top: 40%;
  left: 20%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, #FCE4EC 0%, rgba(255,255,255,0) 70%);
  animation-duration: 30s;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 10%) scale(1.1); }
  100% { transform: translate(-5%, -5%) scale(0.95); }
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-cream-white);
}
::-webkit-scrollbar-thumb {
  background: var(--color-rose-gold);
  border-radius: 10px;
  border: 3px solid var(--color-cream-white);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-rose-gold-dark);
}

/* Utility Layouts */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  .glass-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
}

.text-center { text-align: center; }

/* Section Header Typography */
.section-tagline {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  color: var(--color-rose-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

@media (max-width: 768px) {
  .section-subtitle {
    margin: 0 auto 1.5rem auto;
  }
}

/* Premium Buttons & Links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition-bounce);
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-rose-gold) 0%, #D88E9B 100%);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.3);
  background: linear-gradient(135deg, var(--color-rose-gold-dark) 0%, var(--color-rose-gold) 100%);
}

.btn-secondary {
  background: var(--color-glass-bg);
  color: var(--color-rose-gold);
  border: 1px solid var(--color-rose-gold);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  background: var(--color-rose-gold);
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.15);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-warm-gold) 0%, #E6C655 100%);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, #B89324 0%, var(--color-warm-gold) 100%);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 var(--color-glass-shadow);
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px 0 rgba(183, 110, 121, 0.18);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(255, 249, 245, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(255, 249, 245, 0.9);
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.05);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--color-rose-gold);
}

.logo-icon {
  font-size: 1.5rem;
  animation: pulseLogo 3s infinite ease-in-out;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

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

.nav-links a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-rose-gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--color-text-dark);
}

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

.nav-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-text-dark);
  margin-bottom: 5px;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle span:last-child {
  margin-bottom: 0;
}

/* Mobile Nav Active */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-cream-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -5px 0 25px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    z-index: 1050;
  }

  .nav-links.active {
    right: 0;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 2.5rem;
  }
}

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

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image-container {
    order: -1;
  }
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--color-rose-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: var(--color-text-dark);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

@media (max-width: 992px) {
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-buttons {
    justify-content: center;
  }
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(183, 110, 121, 0.12);
  animation: floatImage 6s infinite ease-in-out;
  border: 4px solid var(--color-white);
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.hero-glow-back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(250, 218, 221, 0.6) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Section: Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-illustration-container {
  text-align: center;
  position: relative;
}

.why-illustration-container img {
  width: 100%;
  max-width: 420px;
  border-radius: 30px;
  border: 4px solid var(--color-white);
  box-shadow: 0 15px 40px rgba(183, 110, 121, 0.1);
  animation: floatImage 7s infinite ease-in-out;
  animation-delay: 1s;
}

.why-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem;
}

.why-card-icon {
  background: linear-gradient(135deg, var(--color-primary-soft-pink) 0%, var(--color-lavender) 100%);
  color: var(--color-rose-gold-dark);
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(183, 110, 121, 0.1);
}

.why-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.why-card-content p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

/* Section: How It Works */
.how-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .how-timeline {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step-num {
  font-family: var(--font-accent);
  font-size: 3rem;
  color: var(--color-rose-gold);
  line-height: 1;
  margin-bottom: 0.8rem;
  opacity: 0.7;
}

.how-step-badge {
  background: var(--color-rose-gold);
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 12px rgba(183, 110, 121, 0.25);
  position: relative;
  z-index: 2;
}

.how-step h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-dark);
}

.how-step p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* Timeline connecting dots */
.how-timeline::after {
  content: '';
  position: absolute;
  top: 72px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-rose-gold) 50%, transparent 100%);
  z-index: 1;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .how-timeline::after {
    display: none;
  }
}

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

.occasion-card {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.occasion-icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: floatIcon 4s infinite ease-in-out;
}

.occasion-card:nth-child(even) .occasion-icon {
  animation-delay: 1.5s;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.occasion-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.occasion-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.occasion-link {
  color: var(--color-rose-gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-smooth);
}

.occasion-link:hover {
  color: var(--color-rose-gold-dark);
  gap: 0.7rem;
}

/* Section: Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 1.8rem;
  text-align: center;
  border-radius: 20px;
}

.feature-icon-wrapper {
  background: var(--color-white);
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  color: var(--color-rose-gold);
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.06);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Section: Demo Showcase */
.demos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .demos-grid {
    grid-template-columns: 1fr;
  }
}

.demo-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.demo-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

.demo-card:hover .demo-image img {
  transform: scale(1.05);
}

.demo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(44, 35, 33, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.demo-badge {
  background: var(--color-warm-gold);
  color: var(--color-white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.demo-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.demo-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.demo-info p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.demo-actions {
  display: flex;
  gap: 1rem;
}

.demo-actions .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

/* Section: Testimonials */
.testimonials-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonials-track {
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  pointer-events: none;
  text-align: center;
  padding: 0.5rem 1rem;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--color-text-dark);
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-rose-gold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(183, 110, 121, 0.15);
}

.testimonial-meta h4 {
  font-weight: 600;
  font-size: 1.05rem;
}

.testimonial-meta span {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-btn {
  background: var(--color-white);
  border: 1px solid var(--color-glass-border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(183, 110, 121, 0.05);
  transition: var(--transition-smooth);
  color: var(--color-rose-gold);
  font-size: 1.2rem;
}

.slider-btn:hover {
  background: var(--color-rose-gold);
  color: var(--color-white);
  transform: scale(1.05);
}

/* Section: FAQ Accordion */
.faq-container {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  color: var(--color-rose-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.8rem;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ Active state */
.faq-item.active {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(183, 110, 121, 0.06);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Section: Call To Action (CTA) */
.cta-section {
  padding: 6rem 0;
}

.cta-card {
  padding: 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(250, 218, 221, 0.7) 0%, rgba(230, 215, 255, 0.6) 100%);
  border: 1px solid rgba(255,255,255,0.6);
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.cta-card p {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto 2.5rem auto;
}

.cta-illustration {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 160px;
  opacity: 0.8;
  pointer-events: none;
  animation: floatImage 8s infinite ease-in-out;
}

@media (max-width: 768px) {
  .cta-card {
    padding: 3rem 1.5rem;
  }
  .cta-illustration {
    display: none;
  }
}

/* Footer Section */
.footer {
  background-color: #241A18;
  color: #ECE0DD;
  padding: 5rem 0 2rem 0;
  font-size: 0.95rem;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-brand h2 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.footer-brand h2 span {
  color: var(--color-primary-soft-pink);
}

.footer-brand p {
  color: #BAABAA;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-brand-tagline {
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.footer-links h3, .footer-contact h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--color-primary-soft-pink);
}

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

.footer-links a {
  color: #BAABAA;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-primary-soft-pink);
  padding-left: 5px;
}

.footer-contact p {
  color: #BAABAA;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contact p i {
  color: var(--color-primary-soft-pink);
}

.footer-bottom {
  border-top: 1px solid #3E2F2D;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #BAABAA;
  font-size: 0.88rem;
}

/* Animations Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Demo / Gifting Template Subpages Styling */
.demo-body {
  background: radial-gradient(circle at 10% 20%, rgba(254, 235, 237, 1) 0%, rgba(248, 222, 250, 1) 40%, rgba(229, 240, 253, 1) 90%);
}

.demo-header {
  padding: 2rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.demo-back-btn {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: var(--color-white);
  color: var(--color-text-dark);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.demo-back-btn:hover {
  background: var(--color-text-dark);
  color: var(--color-white);
  transform: translateX(-4px);
}

.audio-control-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-rose-gold);
  border: 1px solid var(--color-glass-border);
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition-bounce);
}

.audio-control-btn:hover {
  transform: scale(1.1);
}

.demo-gift-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

/* Countdown element for Birthday */
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 450px;
  margin: 2rem auto;
  text-align: center;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(8px);
  padding: 1.2rem 0.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.05);
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-rose-gold);
  display: block;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

/* Love Letter style */
.love-letter {
  background: #FFFDFC;
  border: 1px solid #F5EAE6;
  box-shadow: 0 10px 30px rgba(183, 110, 121, 0.05), inset 0 0 40px rgba(183, 110, 121, 0.02);
  padding: 3rem;
  border-radius: 4px;
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4A3E3B;
  transform: rotate(-0.5deg);
}

.love-letter::before {
  content: '♥';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--color-rose-gold);
  font-size: 2rem;
  opacity: 0.3;
}

.love-letter-signature {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  text-align: right;
  margin-top: 2rem;
  color: var(--color-rose-gold);
}

@media (max-width: 576px) {
  .love-letter {
    padding: 1.8rem;
  }
}

/* Virtual Gift box */
.giftbox-wrapper {
  perspective: 1000px;
  width: 180px;
  height: 180px;
  margin: 3rem auto;
  cursor: pointer;
}

.giftbox {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s ease;
}

.giftbox.opened {
  animation: none;
  transform: rotateY(45deg) scale(0.9);
}

.giftbox:hover {
  animation: wobble 0.5s ease infinite alternate;
}

@keyframes wobble {
  0% { transform: rotate(-5deg); }
  100% { transform: rotate(5deg); }
}

.giftbox-lid {
  position: absolute;
  top: 0;
  left: -5px;
  width: 190px;
  height: 40px;
  background: #D88E9B;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 10;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transform-origin: bottom right;
}

.giftbox.opened .giftbox-lid {
  transform: translateY(-80px) rotate(45deg);
  opacity: 0;
}

.giftbox-body {
  position: absolute;
  top: 35px;
  left: 0;
  width: 180px;
  height: 145px;
  background: var(--color-rose-gold);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.giftbox-ribbon-v {
  position: absolute;
  top: 0;
  left: 80px;
  width: 20px;
  height: 100%;
  background: var(--color-warm-gold);
}

.giftbox-ribbon-h {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--color-warm-gold);
}

.giftbox-bow {
  position: absolute;
  top: -25px;
  left: 65px;
  width: 50px;
  height: 30px;
  z-index: 11;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.giftbox.opened .giftbox-bow {
  transform: translateY(-80px);
  opacity: 0;
}

.giftbox-bow::before, .giftbox-bow::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  border: 4px solid var(--color-warm-gold);
  border-radius: 50% 50% 0 50%;
  transform: rotate(-45deg);
}

.giftbox-bow::after {
  left: 20px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
}

/* Surprise overlay when gift is opened */
.surprise-content {
  display: none;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.surprise-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Image grid in demos */
.demo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.demo-gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}

.demo-gallery-img:hover {
  transform: scale(1.03) rotate(1deg);
}

/* Audio Player styling */
.music-toggle {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-rose-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.music-toggle:hover {
  background: var(--color-rose-gold);
  color: var(--color-white);
}

.music-toggle.playing {
  animation: pulseMusicBtn 1.5s infinite alternate ease-in-out;
}

@keyframes pulseMusicBtn {
  0% { box-shadow: 0 0 0 rgba(183, 110, 121, 0.2); }
  100% { box-shadow: 0 0 12px rgba(183, 110, 121, 0.5); }
}

/* Interactive Proposal Game */
.proposal-box {
  position: relative;
  text-align: center;
  padding: 3rem;
  margin-top: 3rem;
}

.proposal-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  min-height: 80px; /* Prevent page jumping when NO moves */
  position: relative;
}

#btn-yes {
  z-index: 10;
}

#btn-no {
  position: relative;
  transition: all 0.2s ease-out;
  z-index: 9;
}

/* Success Proposal State */
.proposal-success-card {
  display: none;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.proposal-success-card.show {
  display: block;
  opacity: 1;
  transform: scale(1);
}

/* Heart Shower Overlay */
.heart-shower {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.heart-shower-emoji {
  position: absolute;
  font-size: 2rem;
  user-select: none;
  animation: fallHeart 3s linear forwards;
}

@keyframes fallHeart {
  0% {
    transform: translateY(-50px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(105vh) rotate(360deg);
    opacity: 0;
  }
}

/* Audio Equalizer animation */
.equalizer-bar {
  display: inline-block;
  width: 3px;
  height: 12px;
  background-color: var(--color-rose-gold);
  margin-left: 2px;
  animation: equalize 1s ease-in-out infinite alternate;
}

.equalizer-bar:nth-child(2) { animation-delay: 0.2s; }
.equalizer-bar:nth-child(3) { animation-delay: 0.4s; }
.equalizer-bar:nth-child(4) { animation-delay: 0.1s; }

@keyframes equalize {
  0% { height: 4px; }
  100% { height: 18px; }
}

.music-toggle.playing .equalizer-bar {
  background-color: var(--color-white);
}

/* Counting Up Anniversary Timer styling */
.anniversary-countup-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 650px;
}

.countup-box {
  background: var(--color-white);
  border: 1px solid var(--color-glass-border);
  box-shadow: 0 4px 15px var(--color-glass-shadow);
  padding: 1.5rem 1rem;
  border-radius: 16px;
  min-width: 100px;
  text-align: center;
  flex: 1;
}

.countup-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-rose-gold);
  display: block;
}

.countup-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  font-weight: 600;
}
