/* ==================== HERO BANNER ==================== */
.hero-banner {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-item.active {
    opacity: 1;
    z-index: 1;
}

/* Overlay */
.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Book Button */
.btn-book {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: var(--site-color);
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.btn-book:hover {
    background: #d78e10;
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 991px) {
    .banner-content h1 {
        font-size: 32px;
    }
    .banner-content p {
        font-size: 16px;
    }
    .btn-book {
        font-size: 16px;
        padding: 10px 20px;
    }
}
@media screen and (max-width: 576px) {
    .hero-banner {
        height: 70vh;
    }
    .banner-content h1 {
        font-size: 24px;
    }
    .banner-content p {
        font-size: 14px;
    }
    .btn-book {
        font-size: 14px;
        padding: 8px 16px;
    }
}


/* ======= why choose us ========= */

/* ==================== WHY CHOOSE US ==================== */
.why-choose-us {
    padding: 90px 20px;
    background: #fafafa;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-heading .subtitle {
    display: inline-block;
    color: var(--site-color);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Box */
.why-box {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border:1px solid #eee;
    cursor: pointer;
}

.why-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: var(--site-color);
    transition: width 0.4s ease;
}

.why-box:hover::before {
    width: 100%;
}

.why-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Icon */
.why-box .icon {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--site-color);
}

/* Text */
.why-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.why-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 60px 15px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* =============================== */

.packages-section {
  padding: 90px 20px;
  background: #f8fafc;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-heading .subtitle {
  color: var(--site-color);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.section-heading h2 {
  font-size: 38px;
  margin: 10px 0;
  color: #111;
}

.section-heading p {
  color: #555;
  font-size: 16px;
}

/* ================= GRID ================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ================= CARD ================= */
.package-card {
  background: #ffffff;
  border-radius: 5px;
  padding: 20px 15px;
  position: relative;
  transition: 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #eef1f4;
  overflow: hidden;
}


.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* IMAGE HEADER */
.pkg-h {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.pkg-h img {
  aspect-ratio: 3/2;
    width: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.package-card:hover img {
  transform: scale(1.06) rotate(5deg);
}

/* IMAGE OVERLAY TITLE */
/* .vahical {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.15)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
} */

.vahical{
  display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    padding: 18px 5px;
    border-bottom: 1px solid #e6e9ed;
}

strong{
  font-weight: bold !important;
}

.vahical h3 {
  font-size: 22px;
  margin: 0;
  color: #252424;
}

.vahical .sub-title {
  font-size: 14px;
  color: #1d1c1c;
}

/* PRICE ROW */
.de {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  /* border-bottom: 1px solid #e6e9ed; */
}

.price {
  font-size: 25px;
  font-weight: 700;
  color: var(--site-color);
}

.price span {
  font-size: 13px;
  font-weight: 500;
}

.duration {
  font-size: 14px;
  color: #666;
  margin-bottom: 0px;
}
.duration span {
  font-weight: 600;
  margin-right: 7px;
  color: var(--site-color);
}
/* FEATURES */
.features {
  list-style: none;
  padding: 20px !important;
  background-color: whitesmoke;
  border-radius: 5px;
}

.features li {
  margin-bottom: 12px;
  padding-left: 26px !important;
  position: relative;
  color: #444;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a !important;
  font-weight: bold;
}

.book-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.btn-detail {
  display: block;
  text-align: center;
  padding: 14px 30px;
  border-radius: 5px;
  font-weight: 600;
  color: #333;
  background: #e2e8f0;
  text-decoration: none;
  transition: 0.3s ease;
}

/* BUTTON */
.btn-book2 {
  display: block;
  text-align: center;
  padding: 14px 30px;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
  background: var(--site-color);
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-book2:hover {
  background: #111;
}

/* ================= POPULAR CARD ================= */
.package-card.popular {
  border: 2px solid var(--site-color);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transform: translateY(-10px);
}

.popular-badge {
      position: absolute;
    top: 15px;
    left: -33px;
    transform: rotate(318deg);
    background: var(--site-color);
    color: #d2d2d2;
    padding: 6px 30px;
    font-size: 11px;
    z-index: 9;
    font-weight: 700;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 400px) {
  .section-heading h2 {
    font-size: 24px !important;
  }
}






/* ============================ */


.testimonial-section {
  padding: 90px 20px;
  background: #fff;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  animation: scrollTestimonials 35s linear infinite;
  padding:40px 0px;
}

/* CARD */
.testimonial-card {
  min-width: calc(25% - 18px);
  background: #f9fafb;
  border-radius: 5px;
  padding: 35px 28px 28px;
  border: 1px solid #e2e8f0;
  position: relative;
  /* box-shadow: 0 12px 35px rgba(0,0,0,0.08); */
}

/* QUOTE ICON */
.quote-icon {
  position: absolute;
  top: -18px;
  left: 25px;
  width: 36px;
  height: 36px;
  background: var(--site-color);
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(5deg);
  z-index: 1;
}

/* TEXT */
.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
  font-style: italic;
}

/* CLIENT */
.client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.client h4 {
  font-size: 15px;
  margin: 0;
}

.client span {
  font-size: 13px;
  color: #777;
}

/* INFINITE ANIMATION */
@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .testimonial-card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    min-width: 100%;
  }
}











.gallery-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.gallery-section .section-heading {
  max-width: 650px;
  margin: 0 auto 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #eee;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.1)
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* Play Icon for Video */
.gallery-item.video .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.9);
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}











.cta-section {
  position: relative;
  padding: 100px 20px;
  background-image: url("../images/ba1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.cta-content {
  position: relative;
  max-width: 700px;
  margin: auto;
  text-align: center;
  color: #fff;
}

.cta-subtitle {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f9c74f;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 17px;
  color: #e5e7eb;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  background: var(--site-color);
  color: #000;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .cta-section {
    background-attachment: scroll; /* better performance */
  }

  .cta-content h2 {
    font-size: 32px;
  }
}





.faq-section {
  padding: 90px 20px;
  background: #f9fafb;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.faq-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.section-heading .subtitle {
  color: var(--site-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.section-heading h2 {
  font-size: 36px;
  margin: 10px 0;
}

.section-heading p {
  color: #6b7280;
  margin-bottom: 30px;
}

/* Accordion */
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 14px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item.active {
  border-color: var(--site-color);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  font-size: 24px;
  color: var(--site-color);
  transition: 0.3s;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 22px 20px;
}

.faq-answer p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}
