/* ======================
   Hero Section
   ====================== */

/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-slideshow .slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Adjust this value to make it darker or lighter */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 15vh;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-down-btn {
  display: inline-block;
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.scroll-down-btn:hover {
  opacity: 1;
  transform: translateY(5px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content .lead {
    font-size: 1.1rem;
  }
  
  .hero-btns .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Base Hero Styles */
.hero {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background: #000;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: -80px; /* Compensate for fixed header */
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Slide Styles */
.hero .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  min-height: 100vh;
}

.hero .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

/* Hero Content */
.hero .container {
  position: relative;
  z-index: 2;
  padding: 120px 15px 60px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
.hero h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.swiper-slide-active h2,
.swiper-slide-active p,
.swiper-slide-active .hero-btns {
  opacity: 1;
  transform: translateY(0);
}

.btn-get-started {
  background: #3498db;
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Navigation Controls */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: -25px;
}

.hero-swiper:hover .swiper-button-next,
.hero-swiper:hover .swiper-button-prev {
  opacity: 1;
  transform: scale(1);
}

.hero-swiper .swiper-button-next {
  right: 30px;
}

.hero-swiper .swiper-button-prev {
  left: 30px;
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
  font-size: 1.5rem;
  font-weight: bold;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

/* Pagination */
.hero-swiper .swiper-pagination {
  bottom: 30px !important;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  opacity: 1;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #3182ce;
}

.hero-swiper .swiper-pagination-bullet .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fff;
  transition: width 0.1s linear;
  border-radius: 2px;
}

/* Scroll Down Button */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.scroll-down:hover {
  opacity: 1;
  transform: translate(-50%, 5px);
}

.scroll-down i {
  display: block;
  font-size: 1.5rem;
  margin-top: 5px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ======================
   Responsive Design
   ====================== */

/* Large desktops */
@media (max-width: 1199.98px) {
  .hero h2 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    max-width: 600px;
  }
  
  .hero .container {
    padding-top: 100px;
  }
}

/* Tablets */
@media (max-width: 991.98px) {
  .hero {
    min-height: 600px;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero .btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
  }
  
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
}

/* Small tablets */
@media (max-width: 767.98px) {
  .hero {
    min-height: 500px;
  }
  
  .hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .hero .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    display: none; /* Hide on mobile */
  }
  
  .hero-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .hero {
    min-height: 450px;
  }
  
  .hero h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 280px;
    margin: 1.5rem auto 0;
  }
  
  .hero .btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .hero-swiper .swiper-pagination {
    bottom: 20px !important;
  }
  
  .hero-swiper .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
  }
  
  .scroll-down {
    font-size: 0.7rem;
    bottom: 30px;
  }
  
  .scroll-down i {
    font-size: 1.25rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  .booking-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .travel-hero {
    height: auto;
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-content {
    padding-top: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    max-width: 100%;
  }
  
  .hero-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin: 0 auto 2rem;
    max-width: 90%;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .booking-form-wrapper {
    margin: 3rem auto 0;
    max-width: 550px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .travel-hero {
    padding: 100px 0 40px;
    min-height: 100vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
    padding: 0 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
  }
  
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    padding: 0.85rem 1.5rem;
  }
  
  .booking-form-wrapper {
    margin: 2rem 1rem 0;
    padding: 1.75rem 1.25rem;
    border-radius: 12px;
  }
  
  .booking-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.25rem;
  }
  
  .form-control,
  .form-select {
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 480px) {
  .travel-hero {
    padding: 80px 0 30px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .swiper-pagination {
    bottom: 15px !important;
  }
  
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
  }
  
  .booking-form-wrapper {
    padding: 1.5rem 1rem;
  }
  
  .booking-form h3 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
  }
  
  .form-group label {
    font-size: 0.85rem;
  }
  
  .form-control,
  .form-select {
    font-size: 0.95rem;
    padding: 0.7rem 0.9rem;
  }
}


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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .booking-form-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .travel-hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .booking-form-wrapper {
    margin: 2rem 0;
  }
}

/* Button Styles */
/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 1.1rem 2.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background-color: #3182ce;
  color: white;
}

.btn-primary:hover {
  background-color: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.swiper-slide-active .hero-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin: 0 auto 2.5rem;
  max-width: 700px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.swiper-slide-active .hero-subtitle {
  opacity: 0.9;
  transform: translateY(0);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
  flex-wrap: wrap;
}

.swiper-slide-active .hero-buttons {
  opacity: 1;
  transform: translateY(0);
}

.hero-buttons .btn {
  padding: 1.1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.3);
  will-change: transform, box-shadow, background;
}

.hero-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  z-index: -1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scaleX(0);
  transform-origin: right;
}

.hero-buttons .btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-buttons .btn-primary {
  background: var(--color-primary);
  border: none;
  color: white;
}

.hero-buttons .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: white;
  backdrop-filter: blur(5px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.3s ease;
}

.hero-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

/* Navigation Arrows */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, background;
}

.hero-swiper:hover .swiper-button-next,
.hero-swiper:hover .swiper-button-prev {
  opacity: 1;
  transform: scale(1);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1) !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.hero-swiper .swiper-button-next:hover::after,
.hero-swiper .swiper-button-prev:hover::after {
  transform: scale(1.2);
}

/* Pagination */
.hero-swiper .swiper-pagination {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
  padding: 0 20px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  opacity: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(5px);
}

.hero-swiper .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.5);
}

.hero-swiper .swiper-pagination-bullet .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
  will-change: transform;
  border-radius: 2px;
}

/* ======================
   Helper Classes
   ====================== */

/* Animation Delays */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }

/* Text Gradients */
.text-gradient {
  background: linear-gradient(90deg, #3182ce, #805ad5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Transitions */
.transition-all {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======================
   Responsive Adjustments
   ====================== */

@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    max-width: 90%;
  }
  
  .hero-buttons .btn {
    padding: 1rem 2.25rem;
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 600px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    gap: 1rem;
  }
  
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
  }
  
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons .btn {
    font-size: 0.9rem;
    padding: 0.9rem 1.5rem;
  }
}

/* ======================
   Print Styles
   ====================== */

@media print {
  .hero {
    min-height: auto !important;
    height: auto !important;
    background: #fff !important;
    color: #000 !important;
    padding: 2rem 0 !important;
  }
  
  .hero .swiper-slide::before {
    display: none;
  }
  
  .hero h2,
  .hero p {
    color: #000 !important;
    text-shadow: none !important;
  }
  
  .hero-buttons,
  .hero-swiper .swiper-pagination,
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none !important;
  }
}
