/* High-Converting Hero Section CSS */

/* Hero Section */
.hero-section-high-converting {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), 
              url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-content-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Badge */
.hero-badge-top {
  display: inline-block;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 25px;
  border: 2px solid gold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

.hero-badge-top i {
  margin-right: 8px;
  color: gold;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Main Headline */
.hero-title-main {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

/* Eye-catching $1,000+/Month text */
.hero-title-main .income-highlight {
  color: #FFD700; /* Solid gold color for the income text */
  font-weight: 800;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  animation: incomePulse 2s infinite;
}

@keyframes incomePulse {
  0% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
  }
  100% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
}

/* Sub-Headline */
.hero-subtitle-main {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Key Features Row */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-item-hero {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.5);
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
  color: gold;
  font-size: 1.2rem;
}

/* CTA Buttons */
.hero-cta-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-button {
  min-width: 220px;
  padding: 20px 40px;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 2px solid;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-button.primary {
  background: #FF4C29; /* Orange-Red */
  color: white;
  border-color: #FF4C29;
}

.hero-button.primary:hover {
  background: #e04424;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 76, 41, 0.6);
}

.hero-button.secondary {
  background: transparent;
  border-color: #00BFFF; /* Sky Blue */
  color: #00BFFF;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hero-button.secondary:hover {
  background: #00BFFF;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
}

/* Earnings Visualization */
.earnings-visualization {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s both;
}

.earning-item {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.earning-amount-large {
  font-size: 2rem;
  font-weight: 800;
  color: gold;
  margin-bottom: 5px;
}

.earning-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Social Proof Badge */
.hero-social-proof {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.trust-badge-hero {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge-hero i {
  color: gold;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}



@keyframes floatPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title-main {
    font-size: 2.8rem;
  }
  
  .hero-subtitle-main {
    font-size: 1.3rem;
  }
  
  .hero-features {
    gap: 20px;
  }
  
  .feature-item-hero {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .hero-button {
    min-width: 180px;
    padding: 16px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-section-high-converting {
    min-height: 80vh;
    padding: 60px 15px;
  }
  
  .hero-title-main {
    font-size: 2.2rem;
  }
  
  .hero-subtitle-main {
    font-size: 1.1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-cta-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-button {
    min-width: 100%;
    padding: 16px 25px;
    font-size: 1rem;
  }
  
  .earnings-visualization {
    flex-direction: column;
    gap: 15px;
  }
  
  .earning-item {
    min-width: 100%;
  }
  
  .hero-social-proof {
    flex-direction: column;
    gap: 15px;
  }
  
  .trust-badge-hero {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-section-high-converting {
    min-height: 70vh;
    padding: 50px 10px;
  }
  
  .hero-title-main {
    font-size: 1.8rem;
  }
  
  .hero-subtitle-main {
    font-size: 1rem;
  }
  
  .hero-badge-top {
    font-size: 1rem;
    padding: 10px 20px;
  }
  
  .hero-button {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}