/* 
  Hero Premium Styles & Animations
  10/10 Million-Dollar Hero Blueprint
*/

/* ============================================
   GLOBAL BUTTON VARIABLES & STYLES
   ============================================ */

:root {
  --btn-premium-padding-vertical: 20px;
  --btn-premium-padding-horizontal: 42px;
  --btn-premium-font-size: 19px;
  --btn-premium-border-radius: 12px;
  --btn-premium-font-weight: 600;
}

/* Premium Primary Button (Teal Gradient) */
.btn-premium-primary {
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%) !important;
  border: none !important;
  padding: var(--btn-premium-padding-vertical) var(--btn-premium-padding-horizontal) !important;
  font-size: var(--btn-premium-font-size) !important;
  font-weight: var(--btn-premium-font-weight) !important;
  border-radius: var(--btn-premium-border-radius) !important;
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-premium-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(20, 184, 166, 0.35) !important;
}

.btn-premium-primary:active {
  transform: translateY(0) !important;
}

/* Premium Secondary Button (Navy Outline) */
.btn-premium-secondary {
  background: transparent !important;
  border: 2px solid #1e40af !important;
  color: #1e40af !important;
  padding: var(--btn-premium-padding-vertical) var(--btn-premium-padding-horizontal) !important;
  font-size: var(--btn-premium-font-size) !important;
  font-weight: var(--btn-premium-font-weight) !important;
  border-radius: var(--btn-premium-border-radius) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-premium-secondary:hover {
  background: #1e40af !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25) !important;
}

.btn-premium-secondary:active {
  transform: translateY(0) !important;
}

/* Mobile Responsive Button Sizing */
@media (max-width: 767px) {
  :root {
    --btn-premium-padding-vertical: 18px;
    --btn-premium-padding-horizontal: 32px;
    --btn-premium-font-size: 17px;
  }
}

@media (max-width: 480px) {
  :root {
    --btn-premium-padding-vertical: 16px;
    --btn-premium-padding-horizontal: 28px;
    --btn-premium-font-size: 16px;
  }
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */

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

.hero-animate-1 {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.hero-animate-2 {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-animate-3 {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.hero-animate-4 {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* ============================================
   PREMIUM BUTTON HOVER EFFECTS
   ============================================ */

.hero-cta-premium:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(20, 184, 166, 0.35) !important;
}

.hero-cta-premium:active {
  transform: translateY(0) !important;
}

/* ============================================
   GEOMETRIC PATTERN BACKGROUND (OPTIONAL)
   ============================================ */

.hero-premium {
  position: relative;
}

.hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (max-width: 991px) {
  .hero-premium {
    min-height: auto !important;
    padding: 40px 0 !important;
  }
  
  .hero-main-title {
    font-size: 56px !important;
    margin-bottom: 30px !important;
  }
  
  .hero-description {
    font-size: 20px !important;
    margin-bottom: 40px !important;
  }

  .hero-cta-premium {
    padding: 18px 36px !important;
    font-size: 18px !important;
  }

  .hero-premium .inner {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 767px) {
  .hero-premium {
    padding: 30px 0 !important;
  }

  .hero-main-title {
    font-size: 42px !important;
    margin-bottom: 24px !important;
    letter-spacing: -0.01em !important;
  }
  
  .hero-description {
    font-size: 18px !important;
    margin-bottom: 32px !important;
    max-width: 100% !important;
  }
  
  .hero-cta-premium {
    width: 100%;
    justify-content: center !important;
    padding: 18px 32px !important;
    font-size: 17px !important;
  }

  .hero-premium .inner {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

/* ============================================
   MOBILE - EXTRA SMALL
   ============================================ */

@media (max-width: 480px) {
  .hero-main-title {
    font-size: 36px !important;
  }
  
  .hero-description {
    font-size: 16px !important;
  }

  .hero-cta-premium {
    font-size: 16px !important;
    padding: 16px 28px !important;
  }
}

/* ============================================
   TRUST BAR DIVIDERS
   ============================================ */

/* Hide dividers on mobile for cleaner stacking */
@media (max-width: 991px) {
  .trust-divider {
    display: none !important;
  }
}

