/* ==========================================================================
   CSS variables and Base Styles
   ========================================================================== */
:root {
  --primary: #FF334B;
  --secondary: #9E0000;
  --accent: #FF8A80;
  --bg-color: #0A090A;
  
  --text-main: #F4F3F5;
  --text-muted: #9C8E9E;
  
  --glass-bg: rgba(20, 16, 17, 0.65);
  --glass-border: rgba(255, 51, 75, 0.16);
  --glass-shadow: 0 16px 40px 0 rgba(255, 51, 75, 0.08);
  
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}

/* ==========================================================================
   Background & Particles
   ========================================================================== */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.5;
  animation: floatBlob 25s infinite alternate ease-in-out;
}

/* Background blob gradients */
.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 51, 75, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  animation-duration: 20s;
}

.blob-2 {
  bottom: -10%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(154, 0, 7, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  animation-duration: 28s;
  animation-delay: -5s;
}

.blob-3 {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(255, 138, 128, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  animation-duration: 24s;
  animation-delay: -8s;
}

.blob-4 {
  bottom: 20%;
  left: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(183, 28, 28, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  animation-duration: 32s;
  animation-delay: -12s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(5vw, -5vh) scale(1.1) rotate(120deg);
  }
  66% {
    transform: translate(-3vw, 8vh) scale(0.9) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
  }
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.app-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Glassmorphism utility card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.4s ease;
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.main-header {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 4px 6px rgba(255, 77, 141, 0.2));
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.main-header .tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 4rem 1rem 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero-title .heart-pulse {
  display: inline-block;
  animation: pulseHeart 1.5s infinite;
}

@keyframes pulseHeart {
  0% { transform: scale(1); }
  14% { transform: scale(1.15); }
  28% { transform: scale(1); }
  42% { transform: scale(1.15); }
  70% { transform: scale(1); }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 800px;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(255, 77, 141, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 77, 141, 0.5);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 15px rgba(124, 77, 255, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(124, 77, 255, 0.15);
  border-color: rgba(124, 77, 255, 0.3);
}

.btn:active {
  transform: translateY(-1px);
}

/* ==========================================================================
   Coming Soon Countdown
   ========================================================================== */
.countdown-section {
  margin: 2rem auto 6rem auto;
  max-width: 700px;
  padding: 0 1rem;
}

.countdown-card {
  padding: 2rem 3rem;
  text-align: center;
}

.countdown-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.countdown-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  font-variant-numeric: tabular-nums;
}

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

.countdown-divider {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: rgba(124, 77, 255, 0.2);
  font-weight: 300;
  padding: 0 0.5rem;
  user-select: none;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-main);
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.section-subtitle-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}

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

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
  padding: 4rem 0;
  margin-bottom: 4rem;
}

.features-section .section-title {
  margin-bottom: 3.5rem;
}

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

.feature-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(124, 77, 255, 0.15);
  border-color: rgba(255, 77, 141, 0.3);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

/* Colored themes for icons */
.bg-pink { background: rgba(255, 51, 75, 0.15); color: #FF334B; }
.bg-purple { background: rgba(183, 28, 28, 0.15); color: #FF5252; }
.bg-orange { background: rgba(255, 138, 128, 0.15); color: #FF8A80; }
.bg-blue { background: rgba(255, 23, 68, 0.15); color: #FF1744; }
.bg-green { background: rgba(211, 47, 47, 0.15); color: #FF334B; }
.bg-yellow { background: rgba(255, 82, 82, 0.15); color: #FF5252; }

.feature-card h3 {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

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

/* ==========================================================================
   Why WishToAnyone Section
   ========================================================================== */
.why-section {
  padding: 5rem 0;
  margin-bottom: 6rem;
}

.why-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.why-content .section-desc {
  margin-bottom: 2.5rem;
}

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

.why-item {
  display: flex;
  gap: 1rem;
}

.why-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.12);
  color: #4CAF50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item h4 {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Why Visual Illustration */
.why-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  width: 100%;
  max-width: 380px;
  border-radius: 30px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(255, 51, 75, 0.12);
  border: 1px solid var(--glass-border);
}

.card-glow-bg {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 51, 75, 0.15) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}

.card-header-mock {
  display: flex;
  gap: 6px;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.card-header-mock .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.card-header-mock .red { background: #FF5F56; }
.card-header-mock .yellow { background: #FFBD2E; }
.card-header-mock .green { background: #27C93F; }

.mock-content {
  position: relative;
  z-index: 1;
}

.mock-avatar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.mock-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.animate-bounce-slow {
  animation: bounceSlow 3s infinite ease-in-out;
}

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

.gradient-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mock-photo-container {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}

.mock-photo {
  height: 160px;
  background: linear-gradient(135deg, #FF334B 0%, #1A0D0E 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.05);
  position: relative;
}

.mock-photo::after {
  content: '🎉';
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mock-audio-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.play-icon {
  color: var(--primary);
  font-size: 0.9rem;
  cursor: pointer;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 16px;
  flex: 1;
}

.waveform span {
  display: block;
  width: 3px;
  background: var(--secondary);
  border-radius: 2px;
  animation: audioPulse 1.2s infinite ease-in-out;
}

/* Simple animation for audio player bars */
.waveform span:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.waveform span:nth-child(2) { height: 14px; animation-delay: 0.3s; }
.waveform span:nth-child(3) { height: 8px; animation-delay: 0.5s; }
.waveform span:nth-child(4) { height: 16px; animation-delay: 0.2s; }
.waveform span:nth-child(5) { height: 10px; animation-delay: 0.4s; }
.waveform span:nth-child(6) { height: 14px; animation-delay: 0.1s; }
.waveform span:nth-child(7) { height: 8px; animation-delay: 0.3s; }

@keyframes audioPulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* ==========================================================================
   Launch Categories Preview Section
   ========================================================================== */
.categories-section {
  padding: 4rem 0;
  margin-bottom: 5rem;
}

.categories-container {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0.5rem;
}

.categories-scroll-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  max-width: 950px;
  margin: 0 auto;
}

.category-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(255, 51, 75, 0.04);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  user-select: none;
}

.category-badge:hover {
  transform: translateY(-5px) scale(1.04);
  border-color: rgba(255, 51, 75, 0.4);
  box-shadow: 0 10px 25px rgba(255, 51, 75, 0.15);
  background: rgba(255, 255, 255, 0.12);
}

.category-icon {
  font-size: 1.3rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.category-badge:hover .category-icon {
  transform: scale(1.2) rotate(8deg);
}

/* Custom Floating Animations for Badges */
.animate-float {
  animation: floatBadge var(--float-duration, 4s) infinite ease-in-out alternate;
  animation-delay: var(--float-delay, 0s);
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* ==========================================================================
   Email Collection Section (Newsletter)
   ========================================================================== */
.notify-section {
  padding: 4rem 1.5rem;
  margin-bottom: 7rem;
}

.form-card {
  max-width: 750px;
  margin: 0 auto;
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.form-card-glow {
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 51, 75, 0.18) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.form-card h2 {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.form-card p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.subscribe-form {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--glass-border);
  padding: 6px;
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group:focus-within {
  border-color: rgba(255, 51, 75, 0.4);
  box-shadow: 0 10px 30px rgba(255, 51, 75, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.input-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-main);
  outline: none;
  width: 100%;
}

.input-group input::placeholder {
  color: #A090A4;
}

.btn-submit {
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.btn-submit:hover .arrow-icon {
  transform: translateX(4px);
}

.form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
  min-height: 20px;
}

.form-message.success {
  color: #2e7d32;
}

.form-message.error {
  color: #d32f2f;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  margin-bottom: 6rem;
  padding: 0 1.5rem;
}

.contact-container {
  max-width: 650px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  box-shadow: var(--glass-shadow);
}

.contact-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-email {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
  margin-left: 0.25rem;
}

.contact-email::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.contact-email:hover {
  color: var(--secondary);
}

.contact-email:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
  background-color: var(--secondary);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.main-footer {
  padding: 5rem 0 3rem 0;
  border-top: 1px solid rgba(124, 77, 255, 0.08);
}

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

.footer-brand .logo-text {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

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

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
  width: fit-content;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: flex-start;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Brand styles on hover */
.social-icon.facebook:hover { background: #1877F2; color: white; border-color: #1877F2; transform: translateY(-4px); }
.social-icon.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); color: white; border-color: transparent; transform: translateY(-4px); }
.social-icon.whatsapp:hover { background: #25D366; color: white; border-color: #25D366; transform: translateY(-4px); }
.social-icon.youtube:hover { background: #FF0000; color: white; border-color: #FF0000; transform: translateY(-4px); }

.footer-bottom {
  border-top: 1px solid rgba(124, 77, 255, 0.05);
  padding-top: 2rem;
  color: #A090A4;
  font-size: 0.85rem;
}

/* ==========================================================================
   Framer Motion-like Animations (Intersection Observer linked)
   ========================================================================== */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-up-delay-1 {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: 0.2s;
}

.animate-slide-up-delay-2 {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: 0.4s;
}

/* Scroll Trigger elements */
.animate-fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-visual {
    order: -1; /* visual on top for tablet/mobile */
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-socials {
    grid-column: span 2;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .countdown-card {
    padding: 1.5rem;
  }
  
  .countdown-divider {
    padding: 0 0.25rem;
  }
  
  .form-card {
    padding: 3rem 1.5rem;
  }
  
  .input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 0.75rem;
  }
  
  .input-group input {
    background: rgba(255, 255, 255, 0.6);
    border: 1.5px solid var(--glass-border);
    border-radius: 100px;
    padding: 1rem 1.5rem;
  }
  
  .input-group input:focus {
    background: white;
    border-color: rgba(124, 77, 255, 0.4);
  }
  
  .btn-submit {
    border-radius: 100px;
    width: 100%;
    padding: 1rem;
  }
  
  .contact-container {
    border-radius: 24px;
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 2rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  
  .btn {
    width: 100%;
  }
  
  .countdown-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .countdown-item {
    flex: none;
    width: 40%;
  }
  
  .countdown-divider {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-socials {
    grid-column: span 1;
  }
}
