/* Premium Hero Section Styling */

/* Hero Area */
.hero_area {
  min-height: 85vh !important;
  height: 85vh;
}

/* Swiper Container */
.heroSwiper {
  height: 85vh !important;
}

.heroSwiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 85vh !important;
  min-height: 85vh !important;
  padding: 100px 0 60px;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  z-index: 0;
  transition: all 0.8s ease;
}

.heroSwiper .swiper-slide-active .slide-bg {
  filter: brightness(0.4);
  transform: scale(1.05);
}

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

/* Hero Content - Centered Premium Design */
.hero-content {
  padding: 20px 20px;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title span:first-child {
  display: block;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 5px;
  letter-spacing: 1.5px;
  opacity: 0.95;
  color: #f5f5f5;
}

.hero-title .highlight {
  color: #ffffff;
  display: inline-block;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 2.5px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero-description {
  font-size: 19px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-description em {
  font-style: italic;
  font-weight: 600;
  color: #f5f5f5;
  letter-spacing: 0.3px;
}

.hero-text {
  font-size: 15px;
  color: #d8d8d8;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Premium Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero-btn-primary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}

.hero-btn-primary:hover {
  background: #000000;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.hero-btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid #ffffff;
  backdrop-filter: blur(10px);
}

.hero-btn-outline:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Swiper Navigation */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
  font-size: 22px;
  font-weight: bold;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

/* Swiper Pagination */
.heroSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 6px;
  background: #ffffff;
}

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

.swiper-slide-active .hero-title {
  animation: fadeInUp 0.8s ease forwards;
}

.swiper-slide-active .hero-description {
  animation: fadeInUp 1s ease 0.2s forwards;
}

.swiper-slide-active .hero-text {
  animation: fadeInUp 1.2s ease 0.4s forwards;
}

.swiper-slide-active .hero-buttons {
  animation: fadeInUp 1.4s ease 0.6s forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero_area,
  .heroSwiper,
  .heroSwiper .swiper-slide {
    height: 75vh !important;
    min-height: 75vh !important;
  }
  
  .hero-title {
    font-size: 36px;
    letter-spacing: 1.5px;
  }
  
  .hero-title span:first-child {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 17px;
  }
  
  .hero-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hero_area,
  .heroSwiper,
  .heroSwiper .swiper-slide {
    height: 70vh !important;
    min-height: 70vh !important;
  }
  
  .heroSwiper .swiper-slide {
    padding: 85px 0 50px !important;
  }
  
  .hero-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-align: center;
  }
  
  .hero-title span:first-child {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .hero-description {
    font-size: 16px;
    margin-bottom: 14px;
    text-align: center;
  }
  
  .hero-text {
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.7;
    text-align: center;
    max-width: 90%;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 22px;
  }
  
  .hero-btn {
    padding: 13px 32px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero_area,
  .heroSwiper,
  .heroSwiper .swiper-slide {
    height: 70vh !important;
    min-height: 70vh !important;
  }
  
  .heroSwiper .swiper-slide {
    padding: 80px 0 50px !important;
  }
  
  .hero-content {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .hero-title span:first-child {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .hero-description {
    font-size: 15px;
    margin-bottom: 12px;
    text-align: center;
  }
  
  .hero-text {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
  }
  
  .hero-btn {
    width: 90%;
    max-width: 300px;
    padding: 14px 30px;
    text-align: center;
  }
  
  /* Better spacing for mobile navigation arrows */
  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
  
  .heroSwiper .swiper-button-next:after,
  .heroSwiper .swiper-button-prev:after {
    font-size: 18px;
  }
  
  .heroSwiper .swiper-button-next {
    right: 10px;
  }
  
  .heroSwiper .swiper-button-prev {
    left: 10px;
  }
  
  /* Hide or adjust pagination on mobile */
  .heroSwiper .swiper-pagination {
    bottom: 15px;
  }
}
