/* ==========================================================================
   HERO SECTION STYLES - SPLIT-SCREEN RESPONSIVE HERO
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 90vh;
  width: 100%;
  background-color: var(--bg-emerald-deep);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px; /* Offset for fixed header */
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  min-height: calc(90vh - 80px);
  position: relative;
  z-index: 2;
}

/* Left Half - Content & Typography */
.hero-content {
  padding: 4rem 3rem 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards 200ms;
}

.hero-eyebrow .sparkle-icon {
  color: var(--gold-primary);
  width: 16px;
  height: 16px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  color: var(--text-primary-light);
  line-height: 1.12;
  margin: 1rem 0;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards 400ms;
}

.hero-headline .highlight {
  color: var(--gold-primary);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero-subtext {
  font-size: 1.125rem;
  color: var(--text-secondary-light);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards 600ms;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards 800ms;
}

/* Right Half - Hero Image Visual Frame */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  opacity: 0;
  transform: scale(0.96);
  animation: heroScaleIn 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards 300ms;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 12s ease-out;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.06);
}

/* Soft gradient overlay on image */
.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 31, 26, 0.2) 0%, rgba(6, 31, 26, 0.6) 100%);
  z-index: 2;
}

/* Floating Award/Trust Pill on Hero Image */
.hero-badge-floating {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  background: rgba(6, 31, 26, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-primary);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  color: var(--text-primary-light);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-md);
}

.hero-badge-floating .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-emerald-deep);
  font-weight: 800;
}

.hero-badge-floating .badge-text p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-light);
}

.hero-badge-floating .badge-text span {
  font-size: 0.75rem;
  color: var(--text-secondary-light);
}

/* Scroll Down Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s infinite;
}

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

@keyframes heroScaleIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

/* Mobile & Tablet Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    align-items: center;
  }

  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-visual {
    padding: 1rem 1.5rem 4rem;
  }

  .hero-image-wrapper {
    min-height: 360px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}
