/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
  --ig-yellow: #FFDC80;
  --ig-orange: #F77737;
  --ig-red: #E1306C;
  --ig-pink: #C13584;
  --ig-purple: #833AB4;
  --ig-blue: #405DE6;

  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #1a1a24;
  --bg-card-hover: #22222e;

  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;

  --gradient: linear-gradient(135deg, var(--ig-yellow), var(--ig-orange), var(--ig-red), var(--ig-purple));
  --gradient-subtle: linear-gradient(135deg, rgba(247,119,55,0.15), rgba(131,58,180,0.15));

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-glow: 0 0 60px rgba(225, 48, 108, 0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

/* 3CX Widget - fixed at bottom right */
call-us-selector {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 2147483647 !important;
  pointer-events: auto !important;
}

call-us-selector * {
  pointer-events: auto !important;
}

call-us-selector::part(call-button) {
  pointer-events: auto !important;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 10px 0;
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 20px 24px 24px;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-links a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

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

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
section[id] {
  scroll-margin-top: 80px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Full-screen background slider */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,15,0.6) 0%, rgba(10,10,15,0.3) 40%, rgba(10,10,15,0.5) 70%, rgba(10,10,15,0.85) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,15,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.hero-text {
  text-align: center;
  max-width: 800px;
}

.hero-bottom {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-slider-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: #fff;
  border-color: #fff;
  width: 32px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.hero-dot:hover {
  border-color: #fff;
}

.badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(225, 48, 108, 0.25);
  border: 1px solid rgba(225, 48, 108, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 24px;
  animation: badgePulse 2s ease-in-out infinite;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* Prize Amount */
.prize-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
  position: relative;
  animation: prizeFloat 3s ease-in-out infinite;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ig-yellow);
  pointer-events: none;
  animation: sparkleFloat 2.5s ease-in-out infinite;
}

.sparkle-1 { top: -8px; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 20%; right: 5%; animation-delay: 0.4s; width: 4px; height: 4px; background: var(--ig-orange); }
.sparkle-3 { bottom: 10%; left: 0; animation-delay: 0.8s; width: 5px; height: 5px; background: var(--ig-red); }
.sparkle-4 { top: -12px; right: 20%; animation-delay: 1.2s; width: 3px; height: 3px; background: var(--ig-purple); }
.sparkle-5 { bottom: -6px; left: 30%; animation-delay: 1.6s; width: 4px; height: 4px; background: var(--ig-yellow); }
.sparkle-6 { top: 40%; right: -4px; animation-delay: 2s; width: 5px; height: 5px; background: var(--ig-pink); }

@keyframes sparkleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 1; transform: translateY(-8px) scale(1); }
  50% { opacity: 1; transform: translateY(-16px) scale(1.2); }
  80% { opacity: 0.6; transform: translateY(-24px) scale(0.8); }
}

.prize-dollar {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--ig-yellow), var(--ig-orange), var(--ig-yellow));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: prizeShimmer 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 10px rgba(225, 48, 108, 0.5));
}

.prize-value {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(90deg, var(--ig-yellow), #fff, var(--ig-orange), #fff, var(--ig-yellow));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: prizeShimmer 3s ease-in-out infinite, prizePulseGlow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(225, 48, 108, 0.4));
  position: relative;
}

@keyframes prizeShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

@keyframes prizePulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(225, 48, 108, 0.3)) drop-shadow(0 0 40px rgba(225, 48, 108, 0.15));
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(225, 48, 108, 0.6)) drop-shadow(0 0 70px rgba(255, 200, 50, 0.3));
  }
}

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

.prize-label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 6px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 20px rgba(225, 48, 108, 0.3)); }
  50% { transform: translateY(-6px); filter: drop-shadow(0 0 40px rgba(225, 48, 108, 0.5)); }
}

/* ========================================
   Pop Animations
   ======================================== */
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.6) translateY(30px); }
  60% { transform: scale(1.05) translateY(-4px); }
  80% { transform: scale(0.98) translateY(1px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-60px); }
  60% { transform: translateX(8px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(60px); }
  60% { transform: translateX(-8px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes countUp {
  0% { opacity: 0; transform: scale(0.3); filter: blur(8px); }
  50% { opacity: 1; transform: scale(1.1); filter: blur(0); }
  70% { transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(225, 48, 108, 0.2), 0 0 40px rgba(131, 58, 180, 0.1); }
  50% { box-shadow: 0 0 30px rgba(225, 48, 108, 0.4), 0 0 60px rgba(131, 58, 180, 0.2); }
}

.animate-pop {
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-pop-delay-1 {
  opacity: 0;
  animation: countUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

.animate-pop-delay-2 {
  opacity: 0;
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

.animate-pop-delay-3 {
  opacity: 0;
  animation: slideInLeft 0.8s ease 0.9s forwards;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(225, 48, 108, 0); }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--ig-yellow),
    var(--ig-orange),
    var(--ig-red),
    var(--ig-purple),
    var(--ig-red),
    var(--ig-orange),
    var(--ig-yellow)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-cta .btn {
  padding: 16px 40px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.btn-glow {
  position: relative;
  overflow: visible;
  animation: ctaPulse 2s ease-in-out infinite, ctaEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ig-yellow), var(--ig-red), var(--ig-purple), var(--ig-red), var(--ig-yellow));
  background-size: 300% auto;
  z-index: -1;
  animation: borderShimmer 3s linear infinite;
  opacity: 0.7;
  filter: blur(8px);
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ig-yellow), var(--ig-red), var(--ig-purple), var(--ig-red), var(--ig-yellow));
  background-size: 300% auto;
  z-index: -1;
  animation: borderShimmer 3s linear infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4), 0 0 40px rgba(225, 48, 108, 0.2), 0 0 80px rgba(225, 48, 108, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 30px rgba(225, 48, 108, 0.6), 0 0 60px rgba(255, 200, 50, 0.3), 0 0 100px rgba(225, 48, 108, 0.2);
    transform: scale(1.03);
  }
}

@keyframes ctaEntrance {
  0% { opacity: 0; transform: scale(0.5) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes borderShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.btn-glow:hover {
  transform: scale(1.07) !important;
  box-shadow: 0 8px 40px rgba(225, 48, 108, 0.7), 0 0 80px rgba(255, 200, 50, 0.4), 0 0 120px rgba(225, 48, 108, 0.3);
}

.btn-glow:active {
  transform: scale(0.97) !important;
  transition: transform 0.1s;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(225, 48, 108, 0.35), 0 0 40px rgba(225, 48, 108, 0.15); }
  50% { box-shadow: 0 4px 30px rgba(225, 48, 108, 0.5), 0 0 60px rgba(225, 48, 108, 0.3); }
}

/* Countdown */
.countdown-wrapper {
  text-align: center;
}

.countdown-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.countdown {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  min-width: 52px;
}

.countdown-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.countdown-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.countdown-separator {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* ========================================
   Stats Bar
   ======================================== */
.stats-bar {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.15), rgba(225, 48, 108, 0.15), rgba(247, 119, 55, 0.15));
  border-top: 1px solid rgba(225, 48, 108, 0.2);
  border-bottom: 1px solid rgba(247, 119, 55, 0.2);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(225, 48, 108, 0.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(247, 119, 55, 0.12), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(131, 58, 180, 0.08), transparent 60%);
}

.stats-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(247, 119, 55, 0.1);
  border: none;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ig-orange);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ========================================
   Prizes Section
   ======================================== */
.prizes {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-primary), rgba(131, 58, 180, 0.06), var(--bg-primary));
}

.prizes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ig-purple), var(--ig-red), var(--ig-orange), transparent);
  z-index: 2;
}

.prizes::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ig-orange), var(--ig-red), var(--ig-purple), transparent);
  z-index: 2;
}

.prizes .prizes-bg {
  position: absolute;
  inset: 0;
  background: url('insta.png') center center / cover no-repeat;
  opacity: 0.07;
  z-index: 0;
}

.prizes .container {
  position: relative;
  z-index: 1;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.prize-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 16px;
  text-align: center;
  transition: var(--transition);
}

.prize-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: var(--transition);
}

.prize-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 48, 108, 0.3);
  box-shadow: var(--shadow-glow);
}

.prize-card:hover::before {
  opacity: 1;
}

.prize-grand {
  border-color: rgba(225, 48, 108, 0.2);
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.08), rgba(131, 58, 180, 0.08));
}

.prize-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--gradient);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.prize-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prize-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.prize-card:hover .prize-icon img {
  transform: scale(1.1) translateY(-4px);
}

.prize-icon-cash {
  background: linear-gradient(135deg, var(--ig-yellow), var(--ig-orange));
  border-radius: 50%;
  width: 180px;
  height: 180px;
}

.prize-cash-amount {
  font-size: 1.6rem;
  font-weight: 900;
  color: #000;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.prize-card:hover .prize-icon-cash {
  transform: scale(1.05) translateY(-4px);
  transition: transform 0.4s ease;
}

.prize-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.prize-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.prize-quantity {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ========================================
   How to Enter
   ======================================== */
.how-to-enter {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary), rgba(225, 48, 108, 0.08), rgba(247, 119, 55, 0.06), var(--bg-primary));
  position: relative;
  overflow: hidden;
}

.how-to-enter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('happy girl.png') center center / cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.how-to-enter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ig-red), var(--ig-orange), transparent);
}

.how-to-enter .container {
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin: 0 auto 20px;
  color: #fff;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: var(--text-muted);
}

.connector-arrow {
  width: 60px;
  height: 20px;
}

/* ========================================
   Winner Video Section
   ======================================== */
.video-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary), rgba(131, 58, 180, 0.06), var(--bg-primary));
}

.video-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.video-card {
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: none;
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 48, 108, 0.3);
  box-shadow: 0 20px 60px rgba(225, 48, 108, 0.15);
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-info {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.video-card-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--ig-red), var(--ig-purple));
  color: #fff;
  white-space: nowrap;
}

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

/* ========================================
   Entry Form Section
   ======================================== */
.entry-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary), rgba(131, 58, 180, 0.06), var(--bg-primary));
}

.entry-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ig-purple), var(--ig-red), transparent);
}

.entry-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.entry-content {
  padding: 48px;
}

.entry-content .section-header {
  text-align: left;
  margin-bottom: 32px;
}

.form-logo {
  width: 120px;
  height: auto;
  margin-bottom: 12px;
  object-fit: contain;
}

.entry-content .section-desc {
  margin: 0;
}

/* Form */
.giveaway-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group input {
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input:focus {
  border-color: var(--ig-red);
  box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.15);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--ig-red);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--ig-red);
  text-decoration: underline;
}

/* Form Validation Errors */
.form-group.has-error input,
.form-group.has-error select,
.form-checkbox.has-error input[type="checkbox"] {
  border-color: var(--ig-red);
  box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.2);
}

#cityContainer.has-error input,
#cityContainer.has-error select {
  border-color: var(--ig-red);
  box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.2);
}

.form-error-msg {
  display: block;
  font-size: 0.75rem;
  color: var(--ig-red);
  margin-top: 4px;
  font-weight: 500;
  animation: fadeSlide 0.3s ease;
}

/* Entry Visual */
.entry-visual {
  background: linear-gradient(135deg, var(--ig-purple), var(--ig-red), var(--ig-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.visual-pattern {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    rgba(255,255,255,0.05) 0% 25%,
    transparent 0% 50%
  ) 50% / 40px 40px;
}

.visual-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.visual-big {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.visual-sub {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 24px;
  display: block;
}

.visual-logo {
  width: 140px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.visual-avatars {
  display: flex;
  justify-content: center;
  gap: 0;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ig-red);
  margin-left: -8px;
  background: var(--bg-card);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-more {
  background: rgba(0,0,0,0.5) !important;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   Form Rows & Select
   ======================================== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-group select {
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b7b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group select:focus {
  border-color: var(--ig-red);
  box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.15);
}

#cityContainer select {
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b7b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  width: 100%;
}

#cityContainer select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

#cityContainer select:focus {
  border-color: var(--ig-red);
  box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.15);
}

#cityContainer input {
  width: 100%;
}

/* ========================================
   Winning List
   ======================================== */
.winning-list {
  padding: 100px 0;
}

.winners-search {
  max-width: 500px;
  margin: 0 auto 40px;
}

.winner-search-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}

.winner-search-input::placeholder {
  color: var(--text-muted);
}

.winner-search-input:focus {
  border-color: var(--ig-red);
  box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.15);
}

.winners-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.winners-table thead {
  background: rgba(225, 48, 108, 0.1);
}

.winners-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.winners-table td {
  padding: 14px 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.winners-table tbody tr {
  transition: var(--transition);
}

.winners-table tbody tr:hover {
  background: rgba(225, 48, 108, 0.05);
}

.winners-table tbody tr:hover td {
  color: var(--text-primary);
}

.winners-table .ig-sn {
  font-weight: 600;
  color: var(--ig-orange);
}

.winners-count {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================
   Customer Care
   ======================================== */
.customer-care {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary), rgba(64, 93, 230, 0.08), rgba(131, 58, 180, 0.06), var(--bg-primary));
}

.customer-care::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ig-blue), var(--ig-purple), transparent);
}

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

.care-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.care-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 48, 108, 0.3);
  box-shadow: var(--shadow-glow);
}

.care-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(225, 48, 108, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--ig-red);
  transition: var(--transition);
}

.care-card:hover .care-icon {
  background: var(--gradient);
  color: #fff;
}

.care-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.care-info {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 4px;
}

.care-hours {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================
   Testimonial Section
   ======================================== */
.testimonial {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff6b35, #f72585, #7209b7, #3a0ca3, #4361ee, #4cc9f0);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, rgba(255,255,255,0.5), #fff, transparent);
}

.testimonial::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, rgba(255,255,255,0.5), #fff, transparent);
}

.testimonial-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
  pointer-events: none;
}

/* Carousel */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: transparent;
}

.testimonial-track {
  position: relative;
}

.testimonial-track .testimonial-card {
  display: none;
}

.testimonial-track .testimonial-card.active {
  display: grid;
  animation: fadeSlide 0.5s ease;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testimonial-arrow:hover {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
}

.testimonial-prev { left: 16px; }
.testimonial-next { right: 16px; }

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 0;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dot.active {
  background: #fff;
  border-radius: 0;
  width: 32px;
  box-shadow: 0 0 12px rgba(255,255,255,0.4);
}

.testimonial-dot:hover {
  border-color: #fff;
}

/* Card */
.testimonial-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.testimonial-image {
  position: relative;
  min-height: 650px;
  background: transparent;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  filter: brightness(1.15) contrast(1.2) saturate(1.3);
}

.testimonial-card:hover .testimonial-image img {
  transform: scale(1.08);
}

.testimonial-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.testimonial-video-card .testimonial-image {
  min-height: 560px;
  background: transparent;
}

.testimonial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.testimonial-video-card .testimonial-image::after {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.testimonial-video {
  position: relative;
  z-index: 0;
}

.testimonial-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  padding: 14px 24px;
  border-radius: 0;
  text-align: center;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
  border: none;
}

.badge-amount {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.badge-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-content {
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 0;
}

.testimonial-quote-icon {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.testimonial-header {
  margin-bottom: 20px;
}

.testimonial-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.testimonial-location {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.testimonial-date {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.testimonial-text {
  flex: 1;
}

.testimonial-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 12px;
}

.testimonial-highlight {
  font-size: 1.1rem !important;
  font-weight: 700;
  font-style: italic;
  color: #fff !important;
  border-left: none;
  padding-left: 16px;
  margin-bottom: 16px !important;
}

.testimonial-expand {
  display: none;
}

.testimonial-expand.active {
  display: block;
}

.testimonial-more {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 12px;
}

.testimonial-quote-final {
  font-weight: 600;
  color: #fff !important;
  font-style: italic;
}

.testimonial-read-more {
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
  transition: var(--transition);
  align-self: flex-start;
  text-decoration: underline;
}

.testimonial-read-more:hover {
  color: #FFDC80;
}

.testimonial-tags {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial .section-tag {
  background: rgba(255, 255, 255, 0.15);
  border-color: transparent;
  color: #fff;
}

.testimonial .section-title {
  color: #fff;
}

.testimonial .section-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary), rgba(64, 93, 230, 0.06), var(--bg-primary));
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ig-blue), var(--ig-purple), transparent);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(225, 48, 108, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-chevron {
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--ig-red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient);
  color: #fff;
}

/* ========================================
   Modal
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
}

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

.modal-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.modal h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   Responsive
   ======================================== */

/* Large screens / wide desktop */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
    padding: 0 60px;
  }

  .nav-container {
    max-width: 1400px;
    padding: 0 60px;
  }

  .hero-title {
    font-size: 6rem;
  }

  .prize-value {
    font-size: 5rem;
  }

  .prize-dollar {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .prizes-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
  }

  .steps-grid {
    gap: 0;
  }

  .step-card {
    max-width: 300px;
  }

  .connector-arrow {
    width: 80px;
  }

  .testimonial-card {
    gap: 0;
  }

  .testimonial-image {
    min-height: 700px;
  }

  .testimonial-content {
    padding: 48px 48px 40px;
  }

  .entry-card {
    grid-template-columns: 1.4fr 0.6fr;
  }

  .care-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .footer-content {
    gap: 64px;
  }

  .faq-list {
    max-width: 800px;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .container {
    max-width: 1320px;
    padding: 0 48px;
  }

  .nav-container {
    max-width: 1320px;
    padding: 0 48px;
  }

  .prizes-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .care-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .nav-container {
    padding: 0 32px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .prizes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    min-width: 200px;
    flex: 0 0 calc(50% - 12px);
  }

  .entry-card {
    grid-template-columns: 1fr 0.7fr;
  }

  .testimonial-card {
    grid-template-columns: 1.4fr 1fr;
  }

  .testimonial-image {
    min-height: 500px;
  }

  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  call-us-selector {
    right: 12px !important;
    bottom: 12px !important;
    overflow: visible !important;
  }

  .hero-content {
    padding-bottom: 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .prize-value {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .prize-dollar {
    font-size: 1.8rem;
  }

  .prize-label {
    font-size: 0.85rem;
  }

  .hero-cta {
    gap: 12px;
  }

  .hero-cta .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .countdown-item {
    min-width: 44px;
    padding: 6px 8px;
  }

  .countdown-number {
    font-size: 1.1rem;
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .entry-card {
    grid-template-columns: 1fr;
  }

  .entry-visual {
    min-height: 250px;
    order: -1;
  }

  .entry-content {
    padding: 32px 24px;
  }

  .entry-content .section-header {
    text-align: center;
  }

  .form-logo {
    display: block;
    margin: 0 auto 12px;
  }

  .entry-content .section-desc {
    margin: 0 auto;
  }

  .care-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .testimonial-image {
    min-height: 380px;
  }

  .testimonial-content {
    padding: 28px 24px;
    border-radius: 0;
  }

  .testimonial-arrow {
    width: 38px;
    height: 38px;
  }

  .testimonial-prev { left: 8px; }
  .testimonial-next { right: 8px; }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
  }

  .stats-container {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .prizes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  call-us-selector {
    right: 8px !important;
    bottom: 8px !important;
    max-width: calc(100vw - 16px) !important;
    overflow: visible !important;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
    letter-spacing: -1px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
    padding: 0 8px;
  }

  .prize-value {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .prize-dollar {
    font-size: 1.4rem;
  }

  .prize-label {
    font-size: 0.78rem;
  }

  .badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .hero-cta .btn {
    padding: 13px 24px;
    font-size: 0.9rem;
  }

  .hero-content {
    padding-top: 100px;
  }

  .prizes-grid {
    grid-template-columns: 1fr;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .countdown {
    gap: 4px;
  }

  .countdown-item {
    min-width: 42px;
    padding: 5px 6px;
  }

  .countdown-number {
    font-size: 1rem;
  }

  .countdown-separator {
    font-size: 1.3rem;
  }
}

/* ========================================
   Language Switcher
   ======================================== */
.lang-switcher {
  position: relative;
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-switcher-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-name {
  font-size: 0.78rem;
}

.lang-chevron {
  transition: transform 0.3s ease;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  max-height: 320px;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 200;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown::-webkit-scrollbar {
  width: 4px;
}

.lang-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.lang-option:hover {
  background: rgba(225, 48, 108, 0.1);
  color: var(--text-primary);
}

.lang-option.active {
  background: rgba(225, 48, 108, 0.15);
  color: var(--ig-red);
  font-weight: 600;
}

.lang-option-flag {
  font-size: 1.2rem;
  line-height: 1;
}

.mobile-lang-switcher {
  padding: 8px 0;
}

.mobile-lang-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b7b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.mobile-lang-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

#langSwitcherContainer {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* RTL Support */
.rtl-mode {
  direction: rtl;
  text-align: right;
}

.rtl-mode .nav-links {
  direction: rtl;
}

.rtl-mode .footer-content {
  direction: rtl;
}

.rtl-mode .testimonial-prev {
  left: auto;
  right: 16px;
}

.rtl-mode .testimonial-next {
  right: auto;
  left: 16px;
}

.rtl-mode .testimonial-highlight {
  border-left: none;
  border-right: 3px solid var(--ig-orange);
  padding-left: 0;
  padding-right: 16px;
}

.rtl-mode .form-checkbox {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  #langSwitcherContainer {
    display: none;
  }
}

@media (max-width: 768px) {
  .lang-dropdown {
    right: auto;
    left: 0;
  }
}
