/* ============================================
   HERO CAROUSEL - CLEAN & SIMPLE
   ============================================ */

/* Hero Container */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
}

/* Slides */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform-origin: left center;
  transition: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  animation: pageFlip 1s ease-in-out;
}

@keyframes pageFlip {
  0% {
    transform: perspective(1200px) rotateY(-90deg);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: perspective(1200px) rotateY(0deg);
    opacity: 1;
  }
}

/* Background Image - Clean, No Effects */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content .container {
  max-width: 900px;
}

/* Tag */
.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  color: #0052a3;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out 0.1s both;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Title */
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #33ccff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7),
               0 0 20px rgba(0, 0, 0, 0.5),
               0 0 30px rgba(0, 0, 0, 0.3);
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.5);
  paint-order: stroke fill;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #33ccff;
  width: 0;
  animation: typing 2s steps(30) forwards, blink 0.75s step-end infinite;
}

.hero-slide.active .hero-title {
  animation: typing 2s steps(30) forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes blink {
  0%, 50% {
    border-color: #33ccff;
  }
  51%, 100% {
    border-color: transparent;
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7),
               0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke: 0.7px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-hero {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero.btn-primary {
  background: #0099ff;
  color: #fff;
  border: 2px solid #0099ff;
}

.btn-hero.btn-primary:hover {
  background: #0077cc;
  border-color: #0077cc;
  transform: translateY(-2px);
}

.btn-hero.btn-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-hero.btn-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

/* Navigation Dots */
.hero-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #fff;
  width: 40px;
  border-radius: 10px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-carousel {
    min-height: 550px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    min-height: 500px;
  }
  
  .hero-tag {
    font-size: 0.8125rem;
    padding: 0.4rem 1rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
    border-right-width: 2px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .btn-hero {
    width: 100%;
    max-width: 240px;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .hero-nav {
    bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    min-height: 450px;
  }
  
  .hero-title {
    font-size: 1.875rem;
    border-right-width: 2px;
  }
  
  .hero-subtitle {
    font-size: 0.9375rem;
  }
  
  .btn-hero {
    max-width: 200px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .dot.active {
    width: 30px;
  }
}


/* Hero Subtitle Bullet Points Responsive */
@media (max-width: 768px) {
  .hero-subtitle {
    gap: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
  }
  
  .hero-subtitle span {
    gap: 0.3rem !important;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    gap: 0.4rem 0.8rem !important;
    font-size: 0.85rem !important;
    margin: 0.75rem auto !important;
  }
  
  .hero-subtitle span {
    gap: 0.25rem !important;
  }
  
  .hero-subtitle i {
    font-size: 0.35rem !important;
  }
}
