/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
  background: url('../assets/image/mimsan.png') center center / cover no-repeat;
  /* padding: 140px 0 120px; */
  position: relative;
  overflow: hidden;
  height: 100vh;
  margin-top: 20px;
}

.container {
  height: 100%;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(46, 92, 154, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 123, 184, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* min-height: 400px; */
  height: 100%;
}

.hero-text {
  color: var(--white);
  text-align: left;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-text h1 .highlight {
  color: var(--white);
}

.hero-text h2 {
  color: var(--white);
  opacity: 0.95;
}

.hero-text p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 16px;
}

/* Hero section buttons - keep original white background */
.hero-section .btn-primary,
.hero-buttons .btn-primary {
  background: var(--white);
  color: var(--primary-navy);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-section .btn-primary::before,
.hero-buttons .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
  z-index: -1;
}

.hero-section .btn-primary:hover::before,
.hero-buttons .btn-primary:hover::before {
  left: 100%;
}

.hero-section .btn-primary:hover,
.hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  position: relative;
  overflow: hidden;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
  z-index: -1;
}

.btn-secondary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-secondary:hover {
  color: var(--primary-navy);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 140px 0 60px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text h2 {
    font-size: 24px !important;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text h2 {
    font-size: 20px !important;
  }
}