/*=========================
    TOP HEADER
==========================*/

.top-header {
  background: #0f4c81;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}

.top-info {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}

.top-info li {
  display: flex;
  align-items: center;
  color: #fff;
}

.top-info li i {
  color: #ffc107;
  margin-right: 8px;
  font-size: 15px;
}

.top-info li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.top-info li a:hover {
  color: #ffc107;
}

.top-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.top-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.top-social a:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-3px);
}

/*=========================
      Responsive
==========================*/

@media (max-width: 991px) {
  .top-header {
    display: none;
  }
}
/*==========================
        Navbar
===========================*/

.main-navbar {
  transition: 0.4s;
  z-index: 999;
}

.navbar-brand img {
  max-height: 55px;
}

.navbar-nav .nav-item {
  margin: 0 8px;
}

.navbar-nav .nav-link {
  color: #222;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ff9800;
}

.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 10px;
}

.dropdown-item {
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: #ff9800;
  color: #fff;
}

.btn-warning {
  padding: 12px 28px;
  font-weight: 600;
}

/*==========================
      Offcanvas
===========================*/

.offcanvas {
  width: 300px;
}

.offcanvas-body .nav-link {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  color: #222;
  font-weight: 500;
}

.offcanvas-body .nav-link:hover {
  color: #ff9800;
}

/*==========================
      Responsive
===========================*/

@media (max-width: 991px) {
  .navbar-brand img {
    height: 45px;
  }
}
/*=================================
        Hero Slider
==================================*/

.hero-slider {
  position: relative;
}

.heroSwiper {
  height: 90vh;
}

.heroSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 700px;
  color: #fff;
  z-index: 10;
}

.hero-content span {
  display: inline-block;
  background: #ffc107;
  color: #000;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-btn {
  display: flex;
  gap: 15px;
}

.hero-btn .btn {
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ffc107;
}

@media (max-width: 991px) {
  .heroSwiper,
  .heroSwiper .swiper-slide img {
    height: 75vh;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    flex-wrap: wrap;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-btn .btn {
    width: 100%;
  }
}
/*=================================
        Search Tour
==================================*/

.search-tour {
  margin-top: -70px;
  position: relative;
  z-index: 20;
}

.search-box {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.search-box label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.search-box label i {
  color: #ff9800;
  margin-right: 6px;
}

.search-box .form-control,
.search-box .form-select {
  height: 56px;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: none;
}

.search-box .form-control:focus,
.search-box .form-select:focus {
  border-color: #ff9800;
  box-shadow: none;
}

.search-btn {
  height: 56px;
  background: #ff9800;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  padding: 0 30px;
  transition: 0.3s;
}

.search-btn:hover {
  background: #0f4c81;
  color: #fff;
}

@media (max-width: 991px) {
  .search-tour {
    margin-top: 40px;
  }

  .search-box {
    padding: 20px;
  }

  .search-btn {
    width: 100%;
  }
}
/*==================================
      Why Choose Us
===================================*/

.section-padding {
  padding: 100px 0;
}

.section-subtitle {
  display: inline-block;
  background: #fff4e6;
  color: #ff9800;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.section-desc {
  color: #666;
  line-height: 28px;
}

.why-image img {
  width: 100%;
  transition: 0.5s;
}

.why-image img:hover {
  transform: scale(1.03);
}

.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card .icon {
  width: 70px;
  height: 70px;
  background: #fff4e6;
  color: #ff9800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: 0.4s;
}

.why-card:hover .icon {
  background: #ff9800;
  color: #fff;
}

.why-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-card p {
  color: #666;
  line-height: 27px;
  margin-bottom: 0;
}

/*==============================
        Responsive
==============================*/

@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .why-card {
    padding: 25px;
  }
}
/*=================================
    Popular Packages
==================================*/

.popular-packages {
  background: #f8fafc;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-img {
  position: relative;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

.package-card:hover .package-img img {
  transform: scale(1.08);
}

.package-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff9800;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
}

.package-content {
  padding: 25px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 15px;
  color: #666;
}

.package-meta i {
  color: #ff9800;
  margin-right: 5px;
}

.package-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.package-content p {
  color: #666;
  line-height: 28px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.rating {
  color: #ff9800;
  font-weight: 600;
}

.btn-outline-warning {
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .package-img img {
    height: 220px;
  }

  .package-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .btn-outline-warning {
    width: 100%;
  }
}
/*==================================
      About Company
===================================*/

.about-company {
  background: #fff;
}

.about-images {
  position: relative;
  min-height: 560px;
}

.img-one {
  width: 75%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.img-two {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 55%;
  border-radius: 20px;
  border: 8px solid #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.experience-box {
  position: absolute;
  left: 40px;
  bottom: 0;
  width: 180px;
  background: #ff9800;
  color: #fff;
  text-align: center;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-box h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 5px;
}

.experience-box span {
  font-size: 16px;
  font-weight: 500;
}

.about-company .section-title {
  margin-bottom: 25px;
}

.about-company p {
  color: #666;
  line-height: 30px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.about-list i {
  color: #ff9800;
  margin-right: 10px;
}

.about-company .btn {
  border-radius: 50px;
  font-weight: 600;
}

/*==============================
        Responsive
==============================*/

@media (max-width: 991px) {
  .about-images {
    min-height: auto;
  }

  .img-one,
  .img-two {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }

  .img-two {
    border: 0;
  }

  .experience-box {
    position: static;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .experience-box h2 {
    font-size: 34px;
  }

  .experience-box {
    padding: 20px;
  }
}
/*==================================
      Top Destinations
===================================*/

.top-destinations {
  background: #f8fafc;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 320px;
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  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: 30px;
}

.destination-overlay span {
  display: inline-block;
  width: max-content;
  background: #ff9800;
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 12px;
}

.destination-overlay h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
}

.destination-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.destination-btn:hover {
  color: #ffc107;
}

.destination-btn i {
  transition: 0.3s;
}

.destination-btn:hover i {
  transform: translateX(6px);
}

@media (max-width: 991px) {
  .destination-card {
    height: 280px;
  }

  .destination-overlay h3 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .destination-card {
    height: 250px;
  }

  .destination-overlay {
    padding: 20px;
  }

  .destination-overlay h3 {
    font-size: 24px;
  }
}
/*==================================
      Tour Categories
===================================*/

.tour-categories {
  background: #fff;
}

.category-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.4s;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: #ff9800;
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #fff4e6;
  color: #ff9800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: 0.4s;
}

.category-card:hover .category-icon {
  background: #ff9800;
  color: #fff;
  transform: rotateY(180deg);
}

.category-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.category-card p {
  color: #666;
  line-height: 28px;
  margin-bottom: 20px;
}

.category-card span {
  display: inline-block;
  background: #f8f9fa;
  color: #0f4c81;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.category-card:hover span {
  background: #ff9800;
  color: #fff;
}

@media (max-width: 991px) {
  .category-card {
    padding: 30px 20px;
  }

  .category-card h4 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .category-card {
    padding: 25px 20px;
  }

  .category-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .category-card h4 {
    font-size: 20px;
  }
}
/*==================================
      Special Offers
===================================*/

.special-offers {
  background: #f8fafc;
}

.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 450px;
}

.offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.offer-card:hover img {
  transform: scale(1.08);
}

.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.25));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.discount {
  display: inline-block;
  width: max-content;
  background: #ff3b30;
  color: #fff;
  padding: 8px 18px;
  border-radius: 40px;
  font-weight: 700;
  margin-bottom: 18px;
}

.offer-overlay h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.offer-overlay p {
  color: #f1f1f1;
  margin-bottom: 20px;
  font-size: 16px;
}

.offer-price {
  margin-bottom: 25px;
}

.old-price {
  color: #ddd;
  text-decoration: line-through;
  font-size: 20px;
  margin-right: 15px;
}

.new-price {
  color: #ffc107;
  font-size: 32px;
  font-weight: 700;
}

.offer-overlay .btn {
  width: max-content;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .offer-card {
    height: 380px;
  }

  .offer-overlay {
    padding: 30px;
  }

  .offer-overlay h3 {
    font-size: 28px;
  }

  .new-price {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .offer-card {
    height: 320px;
  }

  .offer-overlay {
    padding: 20px;
  }

  .offer-overlay h3 {
    font-size: 22px;
  }

  .offer-overlay .btn {
    width: 100%;
  }

  .old-price {
    display: block;
    margin-bottom: 5px;
  }

  .new-price {
    font-size: 24px;
  }
}
/*=========================
    How It Works
==========================*/

.how-work-section {
  background: #f8fbff;
}

.section-title .sub-title {
  color: #0d6efd;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.section-title p {
  max-width: 700px;
  margin: auto;
  color: #666;
}

.work-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  position: relative;
  transition: 0.4s;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.work-icon {
  width: 90px;
  height: 90px;
  background: #0d6efd;
  border-radius: 50%;
  color: #fff;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  position: relative;
  margin-bottom: 30px;
}

.work-icon span {
  position: absolute;
  right: -5px;
  top: -5px;
  width: 30px;
  height: 30px;
  background: #ff9800;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.work-card p {
  color: #666;
  line-height: 28px;
}

/* Connecting Line */

@media (min-width: 992px) {
  .work-card::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #0d6efd;
    top: 80px;
    right: -40px;
  }

  .col-lg-3:last-child .work-card::after {
    display: none;
  }
}
/*==================================
      Travel Gallery
===================================*/

.travel-gallery {
  background: #fff;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 76, 129, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  color: #ff9800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.gallery-overlay i:hover {
  transform: rotate(90deg);
}

.gallery-overlay h5 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.gallery-item a {
  text-decoration: none;
}

@media (max-width: 991px) {
  .gallery-item img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .gallery-item img {
    height: 220px;
  }

  .gallery-overlay h5 {
    font-size: 20px;
  }

  .gallery-overlay i {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}
/*==================================
      Testimonials
===================================*/

.testimonials {
  background: #f8fafc;
}

.testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.quote-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff4e6;
  color: #ff9800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.rating {
  color: #ffc107;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #666;
  line-height: 30px;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 18px;
  border: 4px solid #ff9800;
}

.client-info h5 {
  margin-bottom: 4px;
  font-weight: 600;
}

.client-info span {
  color: #777;
}

.testimonials .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #bbb;
  opacity: 1;
}

.testimonials .swiper-pagination-bullet-active {
  background: #ff9800;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 25px;
  }

  .client-info img {
    width: 60px;
    height: 60px;
  }

  .quote-icon {
    width: 50px;
    height: 50px;
  }
}
/*==================================
            FAQ Section
===================================*/

.faq-section {
  background: #f8fafc;
}

.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.custom-accordion .accordion-button {
  background: #fff;
  color: #222;
  font-size: 18px;
  font-weight: 600;
  padding: 22px 25px;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #0f4c81;
  color: #fff;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-button::after {
  filter: brightness(0);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}

.custom-accordion .accordion-body {
  background: #fff;
  color: #666;
  line-height: 30px;
  padding: 22px 25px;
}

@media (max-width: 768px) {
  .custom-accordion .accordion-button {
    font-size: 16px;
    padding: 18px;
  }

  .custom-accordion .accordion-body {
    padding: 18px;
  }
}
/*==================================
        CTA Section
===================================*/

.cta-section {
  position: relative;
  background: url("../images/cta-bg.jpg") center center/cover no-repeat;
  padding: 120px 0;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 55, 0.72);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.cta-title {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-title span {
  color: #ffc107;
}

.cta-text {
  color: #e9e9e9;
  font-size: 18px;
  line-height: 32px;
  max-width: 760px;
  margin: 0 auto 40px;
}

.cta-btn {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn .btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.4s;
}

.cta-btn .btn-warning {
  color: #000;
}

.cta-btn .btn-warning:hover {
  transform: translateY(-4px);
}

.cta-btn .btn-outline-light:hover {
  background: #fff;
  color: #0f4c81;
  transform: translateY(-4px);
}

/*=========================
      Responsive
=========================*/

@media (max-width: 991px) {
  .cta-section {
    padding: 90px 0;
  }

  .cta-title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .cta-title {
    font-size: 30px;
  }

  .cta-text {
    font-size: 16px;
    line-height: 28px;
  }

  .cta-btn .btn {
    width: 100%;
  }
}
/*==================================
        Newsletter
===================================*/

.newsletter-section {
  padding: 100px 0;
  background: #f8fafc;
}

.newsletter-wrapper {
  background: linear-gradient(135deg, #0f4c81, #1f7ac8);
  border-radius: 25px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.newsletter-wrapper::before {
  content: "✈";
  position: absolute;
  right: 40px;
  top: 20px;
  font-size: 180px;
  color: rgba(255, 255, 255, 0.06);
  transform: rotate(-20deg);
}

.newsletter-content {
  position: relative;
  z-index: 2;
}

.newsletter-subtitle {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.newsletter-content h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.newsletter-content p {
  color: #f1f1f1;
  line-height: 30px;
  margin: 0;
}

.newsletter-form {
  position: relative;
  z-index: 2;
}

.newsletter-form .input-group {
  background: #fff;
  border-radius: 60px;
  overflow: hidden;
  padding: 8px;
}

.newsletter-form .input-group-text {
  background: #fff;
  border: none;
  padding-left: 20px;
  color: #ff9800;
  font-size: 18px;
}

.newsletter-form .form-control {
  border: none;
  box-shadow: none;
  font-size: 16px;
  padding: 15px;
}

.newsletter-form .btn {
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
}

.newsletter-form .btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 991px) {
  .newsletter-wrapper {
    padding: 40px 30px;
  }

  .newsletter-content {
    text-align: center;
    margin-bottom: 30px;
  }

  .newsletter-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .newsletter-wrapper {
    padding: 30px 20px;
  }

  .newsletter-content h2 {
    font-size: 28px;
  }

  .newsletter-form .input-group {
    display: block;
    border-radius: 20px;
  }

  .newsletter-form .input-group-text {
    display: none;
  }

  .newsletter-form .form-control {
    width: 100%;
    margin-bottom: 12px;
  }

  .newsletter-form .btn {
    width: 100%;
    border-radius: 12px;
  }
}
/*==================================
            Footer
===================================*/

.footer {
  background: #0b1f35;
  color: #d7d7d7;
  padding: 90px 0 0;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 25px;
}

.footer-about {
  line-height: 30px;
  margin-bottom: 30px;
  color: #cfcfcf;
}

.footer h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 25px;
  position: relative;
}

.footer h4::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #ffc107;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 15px;
}

.footer ul li a {
  color: #d7d7d7;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #ffc107;
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  line-height: 28px;
}

.footer-contact i {
  color: #ffc107;
  margin-top: 5px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 70px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #bbb;
}

.footer-bottom a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #ffc107;
}

.footer-bottom span {
  margin: 0 10px;
  color: #666;
}

/*=========================
      Responsive
=========================*/

@media (max-width: 991px) {
  .footer {
    padding-top: 70px;
  }

  .footer h4 {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .text-md-end {
    text-align: center !important;
    margin-top: 10px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-about {
    text-align: center;
  }
}
.gallery-section {
  background: #f8f9fb;
}

.gallery-btn {
  padding: 8px 25px;
  margin: 6px;
  border-radius: 50px;
  border: 2px solid #ff0d00;
  background: white;
  color: #ff0d00;
  font-weight: 600;
  transition: 0.3s;
}

.gallery-btn.active,
.gallery-btn:hover {
  background: #ff0d00;
  color: #fff;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transition: 0.4s;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 35px;
  color: #fff;
}
.contact-card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.contact-card i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #ffcc00;
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
  height: 55px;
  border-radius: 10px;
}

.contact-form textarea {
  height: auto;
}
/* package page */
.hero-tour {
  position: relative;
  min-height: 420px;
  background: url("assets/images/tours/adi-kailash-banner.jpg") center/cover;
  display: flex;
  align-items: end;
}
.hero-tour::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25));
}
.hero-tour .content {
  position: relative;
  z-index: 2;
}
.badge-soft {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}
.booking-card {
  position: sticky;
  top: 100px;
  border-radius: 18px;
}
.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
}
.info-card {
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  transition: 0.3s;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.timeline-day {
  border-left: 3px solid #0d6efd;
  padding-left: 18px;
}
.gallery-grid img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
  width: 100%;
}
.related-card img {
  height: 190px;
  object-fit: cover;
}
.price-box {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 14px;
}
