:root {
  --primary-color: #7c2a05;
  --secondary-color: #f8f9fa;
  --accent-color: #ff6b6b;
  --text-dark: #333;
  --text-light: #6c757d;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden !important;
}

.container {
  max-width: 1210px !important;
  width: 100% !important;
}

section {
  padding: 15px 0 !important;
}

/* Header & Navigation */

/* .navbar {
  padding: 0px 0;
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  z-index: 100;
  margin: 0;
  padding: 0;
  background-color: var(--primary-color);
  color: #fff;
} */
.text-ads marquee {
  height: 17px;
  font-size: 13px;
}

.navbar {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0 !important;
}

.navbar .collapse.show {
  padding-bottom: 15px;
}

.navbar-brand {
  font-family: "Michroma", sans-serif;
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.8rem;
}

.nav-link {
  font-weight: 600;
  margin: 0 10px;
  color: var(--secondary-color);
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--accent-color);
}

.btn-book {
  background-color: var(--secondary-color);
  color: #000;
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.navbar-toggler {
  color: #daa520;
}

.btn-book:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  text-align: left;
  align-items: left;
  color: #fff;
  justify-content: left;
}

.logo-img {
  max-width: 400px;
  height: 60px;
}

/* Header End */

/* Hero Section */
.hero-slider {
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.social-media {
  position: relative;
  z-index: 1;
  max-width: 800px;
  top: 60%;
  padding: 0 20px;
  font-size: 25px;
  color: #fff !important;
}

/* For tablets (max-width: 992px) */
@media (max-width: 992px) {
  .social-media {
    top: 80%;
  }
}

/* For mobile devices (max-width: 576px) */
@media (max-width: 576px) {
  .social-media {
    top: 68%;
  }
}

.social-media a {
  color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 1px, 0.1);
}

.social-media a:hover {
  color: var(--accent-color) !important;
}

.hero-content h1 {
  font-family: "Averia Serif Libre", cursive;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-explore {
  background-color: var(--primary-color);
  color: white;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.btn-explore:hover {
  background-color: #ff5252;
  transform: translateY(-2px);
  color: white;
}

.hero-form .form-control {
  min-width: 200px;
  padding: 12px;
  font-size: 16px;
}

.hero-form {
  position: relative;
  top: -100px;
  margin-bottom: -100px;
}

/* Responsive: stack top to bottom on mobile */
@media (max-width: 768px) {
  .amenity-icons > div {
    min-width: 52px !important;
    flex: 0;
  }
  .hero-form {
    flex-direction: column;
    align-items: stretch;
    top: -100px;
    margin-bottom: -100px;
  }

  .hero-form .form-group {
    width: 100%;
  }
}

/* Hero End */

/* Features Section */
.features-section {
  padding: 0px 0;
  background-color: var(--secondary-color);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: "Averia Serif Libre", cursive;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-why {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* End Features */

/* Popular Destinations */
.destinations-section {
  padding: 80px 0;
}

.destination-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.destination-img {
  height: 250px;
  overflow: hidden;
}

.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.destination-card:hover .destination-img img {
  transform: scale(1.1);
}

.destination-info {
  padding: 20px;
}

.destination-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.destination-info p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Testimonials Slider Start */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.testimonial-slider-wrapper {
  position: relative;
  padding: 20px 0;
}

.testimonial-slider {
  overflow: hidden;
  border-radius: 20px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 20px 10px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 1.2rem;
  margin: 0 2px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.1rem;
  position: relative;
  flex-grow: 1;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-text::after {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  bottom: -40px;
  right: -10px;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.author-img:hover {
  transform: scale(1.1);
  border-color: #daa520;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
}

.author-info p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

/* Swiper Navigation */
.testimonial-next,
.testimonial-prev {
  color: var(--primary-color) !important;
  background: white !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
}

.testimonial-next {
  right: 20px !important;
}

.testimonial-prev {
  left: 20px !important;
}

.testimonial-next:hover,
.testimonial-prev:hover {
  background: var(--primary-color) !important;
  color: white !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.testimonial-next::after,
.testimonial-prev::after {
  font-size: 18px !important;
  font-weight: 900 !important;
}

/* Swiper Pagination */
.testimonial-pagination {
  position: relative !important;
  margin-top: 30px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
  background: var(--primary-color) !important;
  opacity: 0.3 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--primary-color) !important;
  transform: scale(1.2) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
    margin: 10px 5px;
    height: 400px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-text::before,
  .testimonial-text::after {
    font-size: 3rem;
  }

  .author-img {
    width: 60px;
    height: 60px;
  }

  .testimonial-next,
  .testimonial-prev {
    width: 40px !important;
    height: 40px !important;
  }

  .testimonial-next::after,
  .testimonial-prev::after {
    font-size: 14px !important;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 25px 15px;
    height: 380px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .author-img {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* Testimonials Slider End */

/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

.footer-logo {
  font-family: "Michroma", sans-serif;
  font-weight: 700;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about p {
  color: #aaa;
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #333;
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #333;
  color: #aaa;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .newsletter-form .form-control {
    border-radius: 30px;
    margin-bottom: 10px;
  }

  .newsletter-form .btn-subscribe {
    border-radius: 30px;
    width: 100%;
  }

  /* Tablet form adjustments */
  .about-hero-section .col-md-6 {
    margin-bottom: 30px;
  }

  .about-hero-section .card {
    margin-top: 20px;
  }

  .about-hero-section .d-flex {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
  }

  .about-hero-section .d-flex .text-center {
    flex: 1;
    min-width: 100px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .btn-explore {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .feature-card {
    margin-bottom: 20px;
  }

  /* Mobile form adjustments */
  .about-hero-section .container {
    padding: 0 15px;
  }

  .about-hero-section .row {
    margin: 0;
  }

  .about-hero-section .col-12 {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .about-hero-section .card {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .about-hero-section .hero-content {
    margin-bottom: 30px;
  }

  .about-hero-section .d-flex {
    flex-direction: row;
    gap: 15px !important;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .about-hero-section .d-flex .text-center {
    flex: 1;
    min-width: 80px;
    margin-bottom: 0;
  }

  .about-hero-section .d-flex .text-center h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  .about-hero-section .d-flex .text-center p {
    font-size: 0.9rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  /* Mobile stats container adjustments */
  .stats-container {
    padding: 1rem;
    gap: 0.5rem;
  }

  .stat-item {
    flex: 1;
    min-width: 80px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* Test Section */
.custom-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.image-container-first {
  flex: 1;
}

.image-container-first img {
  width: 100%;
  object-fit: cover;
}

.content-container {
  flex: 1;
  padding: 20px;
}

.feature-point p {
  color: #000 !important;
}

.discover-btn {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
}

/* Mobile layout */
@media (max-width: 767px) {
  .custom-container {
    flex-direction: column;
    /* stack vertically */
  }

  .content-container {
    padding: 15px 0;
    /* optional padding for mobile */
  }
}

/* Joueny Fram css */
/* Jouney Frame Section Start */
.journey-card {
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.journey-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journey-card-content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
}

/* Journey Frame */
.image-grid-wrapper {
  position: relative;
  overflow-y: hidden;
  --x-offset: -50px;
  --y-offset: -50px;
  overflow-x: hidden;
}

/* The magic for the top and bottom curve */
.image-grid-wrapper::before,
.image-grid-wrapper::after {
  content: "";
  background-color: #fff;
  height: 100px;
  position: absolute;
  border-radius: 50%;
  z-index: 10;
}

.image-grid-wrapper::before {
  inset: var(--y-offset) var(--x-offset) 0;
}

.image-grid-wrapper::after {
  inset: 0 var(--x-offset) var(--y-offset);
  top: unset;
}

.journey-frame-container {
  width: 100%;
  height: 100%;
}

.journey-frame-card {
  height: 600px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.journey-frame-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.journey-frame-card img:hover {
  transform: scale(1.05);
}

.location-overlay {
  position: absolute;
  bottom: 60px;
  left: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.location-overlay i {
  font-size: 1.2rem;
}

.location-overlay span {
  font-size: 1rem;
  font-weight: 500;
}

/* Jouney Frame Section End */

/* Services Secation */
.services-section {
  background: linear-gradient(135deg, #fdf6e3 0%, #f3ece0 100%);
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.service-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-img:before {
  opacity: 1;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.15);
}

.service-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.6);

  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.service-card:hover .service-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.service-card:hover .service-icon i {
  color: white;
}

.service-content {
  padding: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 10px;
}

.service-content h3:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.service-card:hover .service-content h3:after {
  width: 70px;
}

.service-content p {
  color: #666;
  margin-bottom: 0px;
  flex-grow: 0.5;
}

.services-button {
  display: flex;
  gap: 10px;
  padding: 5px;
  margin-bottom: 0rem;
  width: 100%;
  box-sizing: border-box;
}

.services-button .btn {
  flex: 1;
  padding: 5px;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.services-button .btn.whatsapp {
  background-color: #28a745;
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 2px 5px;
  border-radius: 30px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .service-img {
    height: 200px;
  }
}

/* Service Card Amenity Icons */
.amenity-icons {
  display: flex;
  justify-content: space-between;
  margin: 0px 0;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 5px;
}

.amenity-item i {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 42, 5, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.amenity-item:hover i {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.amenity-item span {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

/* Service Information Section */
.service-information {
  margin: 10px 0;
  padding: 0px 0;
}

.info-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary-color);
}

.info-header i {
  margin-right: 8px;
  font-size: 1rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.info-list li i {
  color: #007bff;
  margin-right: 8px;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Updated Service Buttons */
.service-buttons {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.service-buttons .btn {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
}

.btn-call-now {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.btn-call-now:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  color: white;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  color: white;
}

.btn-enquiry {
  background: linear-gradient(135deg, #7c2a05, #e55a2b);
  color: white;
}

.btn-enquiry:hover {
  background: linear-gradient(135deg, #7c2a06, #d44a1a);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  color: white;
}

.service-buttons .btn i {
  font-size: 0.9rem;
}

/* Responsive adjustments for service cards */
@media (max-width: 768px) {
  .amenity-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .amenity-item {
    flex: 0 0 calc(50% - 5px);
    min-width: 80px;
  }

  .service-buttons {
    flex-direction: column;
  }

  .service-buttons .btn {
    width: 100%;
    margin-bottom: 5px;
  }
}

@media (max-width: 576px) {
  .amenity-item span {
    font-size: 0.65rem;
  }

  .info-list li {
    font-size: 0.8rem;
  }

  .service-buttons .btn {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

/* Services Secation End */

/* Amazing Desigen Section Started */

.desert-section {
  /* background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #4a2c17 100%); */
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding: 0px 0;
}

.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.content-left {
  position: relative;
}

.camp-name {
  background: linear-gradient(45deg, #daa520, #ffd700, #daa520);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.description-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.description-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(218, 165, 32, 0.1),
    transparent
  );
  animation: slide 3s infinite;
}

@keyframes slide {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

.description-text {
  color: #000;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-icons {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #daa520;
  font-size: 0.9rem;
  font-weight: 500;
}

.content-right {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s ease;
}

.image-container:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.desert-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-container:hover .desert-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(218, 165, 32, 0.2),
    rgba(0, 0, 0, 0.3)
  );
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 0.4;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(218, 165, 32, 0.9);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.play-button:hover {
  background: rgba(218, 165, 32, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
}

.decorative-elements {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(218, 165, 32, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.decorative-elements::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(218, 165, 32, 0.5);
  border-radius: 50%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.stats-container {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3rem;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #daa520;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-right {
    order: -1;
  }

  .stats-container {
    position: relative;
    bottom: 0;
    margin-top: 2rem;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(218, 165, 32, 0.7);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Quote Form Styles */
.quote-form-box {
  background: rgba(60, 60, 60, 0.95);
  border-radius: 15px;
  padding: 30px 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-form-title {
  color: #ffffff;
  font-family: "Averia Serif Libre", cursive;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.quote-form-subtitle {
  color: #e0e0e0;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 25px;
  opacity: 0.9;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form .form-group {
  margin-bottom: 0;
}

.quote-form input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  background-color: #f5f5f5;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-form input:focus {
  outline: none;
  background-color: #ffffff;
  box-shadow:
    0 0 0 2px #8b3d00,
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.quote-form input::placeholder {
  color: #666;
  font-style: italic;
}

.quote-submit-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  margin-top: 10px;
}

.quote-submit-btn:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.quote-submit-btn:active {
  transform: translateY(0);
}

/* Mobile responsive for quote form */
@media (max-width: 768px) {
  .quote-form-box {
    padding: 25px 20px;
    margin: 20px 0;
  }

  .quote-form-title {
    font-size: 1.2rem;
  }

  .quote-form input {
    padding: 10px 12px;
    font-size: 13px;
  }

  .quote-submit-btn {
    padding: 12px 15px;
    font-size: 14px;
  }
}

/* Quote Contact Buttons */
.quote-contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.quote-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.quote-call-btn {
  background: linear-gradient(135deg, #8b3d00, #a0522d);
  color: white;
  border: 2px solid #8b3d00;
}

.quote-call-btn:hover {
  background: linear-gradient(135deg, #a0522d, #8b3d00);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 61, 0, 0.3);
  color: white;
}

.quote-whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: 2px solid #25d366;
}

.quote-whatsapp-btn:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  color: white;
}

.quote-btn i {
  font-size: 16px;
}

.quote-btn span {
  font-size: 13px;
  font-weight: 600;
}

/* Mobile responsive for quote contact buttons */
@media (max-width: 768px) {
  .quote-contact-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .quote-btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  .quote-btn i {
    font-size: 14px;
  }

  .quote-btn span {
    font-size: 12px;
  }
}

/* Contact Us */
/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-details p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.contact-details a {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 42, 5, 0.25);
  background-color: white;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background: #5a1f04;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124, 42, 5, 0.3);
  color: white;
}

.btn-submit:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .contact-form .row .col-md-6 {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .contact-info,
  .contact-form-wrapper {
    padding: 25px 15px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon i {
    font-size: 1.2rem;
  }

  .btn-submit {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Mission Vision Section */
.mission-vision-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-vision-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #daa520);
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #daa520);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.card-icon i {
  font-size: 2rem;
  color: white;
}

.mission-vision-card:hover .card-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(124, 42, 5, 0.3);
}

.card-content h3 {
  font-family: "Averia Serif Libre", cursive;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.card-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 0;
}

.values-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e9ecef;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #daa520);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.value-icon i {
  font-size: 1.8rem;
  color: white;
}

.value-item:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(124, 42, 5, 0.3);
}

.value-item h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.value-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Mission Vision Responsive Design */
@media (max-width: 768px) {
  .mission-vision-section {
    padding: 60px 0;
  }

  .mission-vision-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .card-icon i {
    font-size: 1.5rem;
  }

  .card-content h3 {
    font-size: 1.5rem;
  }

  .card-content p {
    font-size: 1rem;
  }

  .value-item {
    padding: 25px 15px;
    margin-bottom: 20px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .value-icon i {
    font-size: 1.5rem;
  }

  .value-item h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .mission-vision-card {
    padding: 25px 15px;
  }

  .card-content h3 {
    font-size: 1.3rem;
  }

  .value-item {
    padding: 20px 10px;
  }

  .value-item h4 {
    font-size: 1.1rem;
  }
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: #efe6dd;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #2c1810;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8f4e6;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
}

.faq-question i {
  color: #c17d11;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s;
}

.faq-answer p {
  padding-bottom: 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

a {
  text-decoration: none;
}

/* Mega Slider Start */

.megaSellSwiper {
  max-width: 100%;
  border-radius: 20px;
}

.megaSellSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Next/Prev Button Styling */
.megaSellSwiper .swiper-button-prev,
.megaSellSwiper .swiper-button-next {
  color: #fff;
  font-size: 20px;
  height: 40px;
  width: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Hover Effect */
.megaSellSwiper .swiper-button-prev:hover,
.megaSellSwiper .swiper-button-next:hover {
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* Adjust Icon Size */
.megaSellSwiper .swiper-button-prev::after,
.megaSellSwiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

/* Pagination Dots */
.megaSellSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #f5f5f5;
  /* smoke white */
  opacity: 0.7;
  border-radius: 2px;
  /* slight rounding (optional) */
  margin: 0 4px;
  /* spacing */
}

.megaSellSwiper .swiper-pagination-bullet-active {
  background-color: #ffffff;
  /* pure white for active */
  opacity: 1;
  transform: scale(1.2);
  /* make active one slightly bigger */
}

.megaSellSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Mega Slider End */

/* Reference-style package cards */
.pkgSwiperRef {
  overflow: hidden;
}

.pkg-card-ref {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.pkg-thumb-ref {
  width: 180px;
  height: 130px;
  border-radius: 14px;
  object-fit: cover;
}

.pkg-body-ref {
  flex: 1;
  min-width: 0;
}

.pkg-title-ref {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: #1f2328;
}

.pkg-meta-ref {
  margin: 0 0 6px;
  color: #6b7280;
  font-size: 0.95rem;
}

.pkg-price-ref {
  font-weight: 900;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.pkg-price-ref span {
  color: #6b7280;
  font-weight: 600;
  font-size: 0.9rem;
}

.pkg-actions-ref {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pkg-actions-ref .btn {
  border-radius: 10px;
  padding: 8px 14px;
  font-weight: 700;
}

/* Floating edge arrows like reference */
.pkgPrevRef,
.pkgNextRef {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1f2328;
  border: 2px solid #1f2328;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.pkgNextRef {
  right: -8px;
  background: #1f2328;
  color: #fff;
}

.pkgPrevRef {
  left: -8px;
}

.pkgPrevRef i,
.pkgNextRef i {
  font-size: 16px;
}

.pkgPrevRef:hover {
  background: #f5f6f7;
}

.pkgNextRef:hover {
  background: #000;
  border-color: #000;
}

@media (max-width: 991.98px) {
  .pkg-thumb-ref {
    width: 150px;
    height: 110px;
  }
}

@media (max-width: 767.98px) {
  .pkg-card-ref {
    padding: 12px;
    gap: 12px;
  }

  .pkg-thumb-ref {
    width: 120px;
    height: 90px;
  }

  .pkgPrevRef,
  .pkgNextRef {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 575.98px) {
  .pkg-thumb-ref {
    width: 110px;
    height: 80px;
  }
}

/* card Slider */
/* Card styling */
.tour-card {
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(219, 218, 218);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
}



.card-left {
  flex: 0 0 130px;
  min-height: 120px;
}

.card-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-right {
  padding: 10px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tour-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px;
  white-space: normal;
  overflow: hidden;
  color: #7c2a05;
}

.tour-title span {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #0a0a0a;
  margin-top: 6px;
  display: table;
}

.meta-row {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
}

.new-card-btn {
  color: #fff;
  background: #7c2a05;
  padding: 1px 10px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
}

/* Swiper Nav */
.swiper-button-next {
  background: white;
  border: 1px solid #7c2a05;
  color: #7c2a05;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  box-shadow: 0 0 11px 0 #999;
  position: absolute;
  right: 11px;
  top: 53%;
}

.swiper-button-prev {
  background: white;
  border: 1px solid #7c2a05;
  color: #7c2a05;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  box-shadow: 0 0 11px 0 #999;
  position: absolute;
  left: 11px;
  top: 53%;
}

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

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #7c2a05;
  color: #fff;
}

/* Galleary Section */
/* Gallery Redesign - Bento Box Layout */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item.gallery-modal-only {
  display: none;
}

/* Bento Grid Spans */
.gallery-item[data-index="0"] {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item[data-index="1"] {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item[data-index="2"] {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item[data-index="3"] {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item[data-index="4"] {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item[data-index="5"] {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: grayscale(20%);
}

.gallery-item:hover img {
  transform: scale(1.15);
  filter: grayscale(0%);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(10, 22, 18, 0.9) 0%,
    rgba(10, 22, 18, 0.4) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(20px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 3rem;
  color: var(--secondary-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0.8;
}

.gallery-item:hover .gallery-overlay i {
  transform: translate(-50%, -50%) scale(1);
}

.gallery-info h4 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.3rem;
  font-weight: 700;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.gallery-info p {
  font-size: 0.95rem;
  color: var(--secondary-color);
  margin: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-info h4,
.gallery-item:hover .gallery-info p {
  transform: translateY(0);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--secondary-color);
  border-radius: 20px;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  transform: scale(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item[data-index="0"] {
    grid-column: span 2;
  }

  .gallery-item[data-index="3"] {
    grid-column: span 1;
  }

  .gallery-item[data-index="4"] {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .gallery-grid .gallery-item:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-image-container {
  position: relative;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-image-container img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-info {
  text-align: center;
  margin-top: 1.5rem;
  color: white;
}

.modal-info h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.modal-info p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin: 0;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.modal-close:hover {
  background: var(--accent-color);
  transform: rotate(90deg);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(primary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-nav:hover {
  background: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 0px;
}

.modal-next {
  right: 0px;
}

.modal-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-gray);
  font-size: 1rem;
  background: rgb(245 249 247 / 79%);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--secondary-color);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}
