/* ================================
   HOMEPAGE SPECIFIC STYLES
   ================================ */

/* ================================
   HERO SECTION
   ================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-3xl) var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s linear infinite;
  opacity: 0.3;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl) var(--spacing-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ffc220 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.hero-cta {
  margin-top: var(--spacing-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(255, 194, 32, 0.2);
  border: 1px solid rgba(255, 194, 32, 0.4);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  color: #ffc220;
  font-weight: 600;
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-md);
  animation: glow-pulse 2s ease-in-out infinite;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
}

.hero-feature svg,
.hero-feature .icon {
  color: #00d632;
  font-size: 1.2rem;
}

/* ================================
   OFFERS GRID SECTION
   ================================ */
.offers-section {
  position: relative;
  padding: var(--spacing-3xl) 0;
}

.offers-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.offers-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.offers-title .fire {
  animation: float 2s ease-in-out infinite;
  display: inline-block;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.offer-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.offer-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.offer-badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: linear-gradient(135deg, #e50914, #b20710);
  color: white;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(229, 9, 20, 0.4);
  animation: glow-pulse 2s ease-in-out infinite;
}

.offer-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: var(--spacing-md);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-image {
  transform: scale(1.1);
  animation: float 3s ease-in-out infinite;
}

.offer-brand {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.offer-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.offer-value {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  background: linear-gradient(135deg, #ffc220, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
}

.offer-description {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.offer-cta {
  width: 100%;
  margin-top: auto;
}

/* ================================
   HOW IT WORKS SECTION
   ================================ */
.how-it-works {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.step-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: white;
  margin: 0 auto var(--spacing-md);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.3));
}

.step-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

.step-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.star-rating {
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
  justify-content: center;
}

.star {
  color: #ffc220;
  font-size: var(--font-size-xl);
  filter: drop-shadow(0 2px 4px rgba(255, 194, 32, 0.5));
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-base);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: var(--font-size-lg);
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2px;
}

.author-location {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 214, 50, 0.2);
  border: 1px solid rgba(0, 214, 50, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  color: #00d632;
  font-weight: 600;
}

/* ================================
   TRUST & SECURITY SECTION
   ================================ */
.trust-section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.trust-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  text-align: center;
}

.trust-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
  margin: var(--spacing-2xl) 0;
  flex-wrap: wrap;
}

.trust-icon {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.3));
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.trust-icon:hover {
  transform: scale(1.2);
  color: #00d632;
  filter: drop-shadow(0 8px 20px rgba(0, 214, 50, 0.5));
}

.trust-icon:nth-child(2) {
  animation-delay: 0.5s;
}

.trust-icon:nth-child(3) {
  animation-delay: 1s;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin-top: var(--spacing-xl);
}

.trust-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.trust-badge .icon {
  color: #00d632;
  font-size: 1.5rem;
}

.trust-text {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.8;
}

/* ================================
   STATS SECTION
   ================================ */
.stats-section {
  padding: var(--spacing-2xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-xl);
}

.stat-number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  background: linear-gradient(135deg, #ffc220, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-base);
  font-weight: 500;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
  padding: var(--spacing-3xl) 0;
}

.cta-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl) var(--spacing-xl);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.cta-text {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-base);
  }
  
  .hero-glass {
    padding: var(--spacing-xl) var(--spacing-md);
  }
  
  .hero-features {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-icons {
    gap: var(--spacing-md);
  }
  
  .trust-icon {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-title {
    font-size: var(--font-size-2xl);
  }
  
  .cta-text {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .offers-title {
    font-size: var(--font-size-2xl);
  }
  
  .offer-image {
    height: 150px;
  }
}
