/* ============================================
   HOME PAGE SPECIFIC STYLES
   Extends brand-guide.css
   Override with !important to prevent cascading
   ============================================ */

/* === HERO SECTION WITH VIDEO === */
.hero-video-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(243, 178, 52, 0.9);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-video-section h1 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 3.5rem !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.4s both;
  color: white !important;
  letter-spacing: normal !important;
}

.hero-video-section p {
  font-size: 1.3rem !important;
  margin-bottom: 2.5rem !important;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.6s both;
  color: white !important;
}

.hero-video-section .hero-buttons {
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* === TRUST INDICATORS === */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease 1s both;
}

.trust-item {
  text-align: center;
  color: white;
}

.trust-item .number {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 2rem !important;
  color: #F3B234 !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.trust-item .label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* === VALUE PROPS === */
.value-props {
  background: #F8F9FA;
}

.section-badge {
  display: inline-block;
  background: #F3B234;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 2.5rem !important;
  color: #4A4A4A !important;
  margin-bottom: 1rem !important;
  letter-spacing: normal !important;
}

.section-subtitle {
  font-size: 1.2rem !important;
  color: #4A4A4A !important;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

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

.prop-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.prop-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #F3B234 0%, #F4A000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.prop-card h3 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.3rem !important;
  color: #4A4A4A !important;
  margin-bottom: 1rem !important;
  letter-spacing: normal !important;
}

.prop-card p {
  color: #4A4A4A;
  opacity: 0.8;
  line-height: 1.6;
}

/* === HOW IT WORKS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F3B234 0%, #F4A000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  color: white !important;
}

.step-card h4 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  color: #4A4A4A !important;
  margin-bottom: 1rem !important;
  font-size: inherit !important;
  letter-spacing: normal !important;
}

.step-card p {
  color: #4A4A4A;
  opacity: 0.8;
  font-size: 0.95rem;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #F8F9FA;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #F3B234;
  font-family: serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #4A4A4A;
  line-height: 1.6;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: #F3B234;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.author-info h5 {
  font-weight: 600 !important;
  color: #4A4A4A !important;
  margin-bottom: 0.25rem !important;
  font-size: inherit !important;
  letter-spacing: normal !important;
}

.author-info .role {
  font-size: 0.9rem;
  color: #4A4A4A;
  opacity: 0.7;
}

.stars {
  color: #F4A000;
  margin-bottom: 1rem;
}

/* === FINAL CTA SECTION === */
.final-cta {
  background: #4A4A4A;
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 2.5rem !important;
  margin-bottom: 1rem !important;
  color: white !important;
  letter-spacing: normal !important;
}

.final-cta p {
  font-size: 1.2rem !important;
  margin-bottom: 2.5rem !important;
  opacity: 0.9;
  color: white !important;
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-video-section h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-video-section p {
    font-size: 1.1rem !important;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem !important;
  }
  
  .props-grid,
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .final-cta h2 {
    font-size: 1.75rem !important;
  }
}

@media (max-width: 480px) {
  .hero-video-section h1 {
    font-size: 2rem !important;
  }
  
  .section-title {
    font-size: 1.8rem !important;
  }
  
  .prop-card {
    padding: 1.5rem;
  }
}
