/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg,
    var(--primary-light) 0%,
    var(--accent-light) 40%,
    var(--secondary-light) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224, 82, 82, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--primary-light);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-tag i {
  color: var(--primary);
  animation: beat 1.2s infinite;
}

@keyframes beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--dark-gray);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero Highlights */
.hero-highlights {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--dark-gray);
  font-weight: 500;
}

.hero-highlight-item i {
  color: var(--secondary);
  font-size: 1rem;
}

/* Hero Image */
.hero-img-wrapper {
  position: relative;
  z-index: 2;
}

.hero-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.hero-main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

/* Hero Floating Info Cards */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card:nth-child(2) { animation-delay: 0.5s; }
.hero-float-card:nth-child(3) { animation-delay: 1s; }

.hero-float-1 { top: -20px; left: -20px; }
.hero-float-2 { bottom: 30px; right: -20px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-float-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-float-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 60px 0; }
  .hero-img-wrapper { margin-top: 40px; }
  .hero-main-img { height: 300px; }
  .hero-float-card { display: none; }
}

@media (max-width: 576px) {
  .hero-buttons { flex-direction: column; }
  .hero-highlights { flex-direction: column; gap: 10px; }
}