@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/brands.min.css');

@font-face {
  font-family: "MontserratCustom";
  src: url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "MontserratCustom";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "MontserratCustom";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "MontserratCustom", sans-serif;
}

/* Top Stripe for Header */
.top-stripe {
  width: 100%;
  height: 15px;
  background-color: #1a6d63;
  /* Red stripe color based on screenshot */
}

/* Remove white space below footer & Setup for Fixed Header */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  padding-top: 40px !important;
  /* Adjusted space for fixed header */
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Background Watermark */
body {
  background-color: #ffffff;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/rmb.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  opacity: 0.025;
  z-index: -1;
  pointer-events: none;
}



.bg-teal {
  background-color: #2a9d8f !important;
}

.bg-info {
  background-color: #00afb9 !important;
}

/* Teal Button Styles */
.btn-teal,
a.btn-teal,
button.btn-teal {
  background-color: #2a9d8f !important;
  border-color: #2a9d8f !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.btn-teal:hover,
a.btn-teal:hover,
button.btn-teal:hover {
  background-color: #21867a !important;
  border-color: #21867a !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(42, 157, 143, 0.3);
}

.btn-teal:active,
.btn-teal:focus,
a.btn-teal:active,
a.btn-teal:focus,
button.btn-teal:active,
button.btn-teal:focus {
  background-color: #1a6d63 !important;
  border-color: #1a6d63 !important;
  color: #ffffff !important;
}

/* Orange Button Styles */
.btn-orange,
a.btn-orange,
button.btn-orange,
a.btn-orange.text-white {
  background-color: #f37021 !important;
  border-color: #f37021 !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.btn-orange:hover,
a.btn-orange:hover,
button.btn-orange:hover,
a.btn-orange.text-white:hover,
a.btn-orange:visited,
a.btn-orange:link {
  background-color: #d45e1a !important;
  border-color: #d45e1a !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(243, 112, 33, 0.3);
}

.btn-orange:active,
.btn-orange:focus,
a.btn-orange:active,
a.btn-orange:focus,
button.btn-orange:active,
button.btn-orange:focus,
a.btn-orange.text-white:active,
a.btn-orange.text-white:focus {
  background-color: #c55518 !important;
  border-color: #c55518 !important;
  color: #ffffff !important;
}

/* Green Button Styles */
.btn-green,
a.btn-green,
button.btn-green,
a.btn-green.text-white {
  background-color: #0b8d4e !important;
  border-color: #0b8d4e !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.btn-green:hover,
a.btn-green:hover,
button.btn-green:hover,
a.btn-green.text-white:hover,
a.btn-green:visited,
a.btn-green:link {
  background-color: #087a43 !important;
  border-color: #087a43 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(11, 141, 78, 0.3);
}

.btn-green:active,
.btn-green:focus,
a.btn-green:active,
a.btn-green:focus,
button.btn-green:active,
button.btn-green:focus,
a.btn-green.text-white:active,
a.btn-green.text-white:focus {
  background-color: #066a3a !important;
  border-color: #066a3a !important;
  color: #ffffff !important;
}

/* Navbar Logo Size */
.navbar-brand.logo img {
  height: 48px !important;
  width: auto;
}

@media (max-width: 768px) {
  .navbar-brand.logo img {
    height: 36px !important;
    width: auto;
  }
}

.navbar-brand span {
  color: #1a6d63;

}

.navbar-nav .nav-link {
  font-size: 13px;
  transition: 0.3s;
}

.navbar-nav .nav-link.active-nav {
  background-color: #00afb9 !important;
  color: #ffffff !important;
  border-radius: 4px;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.bg-teal.active-nav {
  background-color: #1a6d63 !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

.navbar-nav .nav-link.active-nav {
  color: #ffffff !important;
  background-color: #1a6d63 !important;
}

.btn-orange {
  background-color: #f37021;
  font-size: 12px;
  font-weight: bold;
}

.btn-green {
  background-color: #0b8d4e;
  font-size: 12px;
  font-weight: bold;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

/* Hero Swiper Slider Styles */
header,
.sticky-top {
  z-index: 9999 !important;
  position: fixed !important;
  /* Changed from sticky to fixed */
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background-color: #fff !important;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.hero-slider-section {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  will-change: transform;
}

/* Ken Burns zoom — only on active slide */
.swiper-slide-active .hero-bg {
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 1200px;
}

.hero-title {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  opacity: 0;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
  opacity: 0;
}

/* Text entrance — triggered when slide becomes active */
.swiper-slide-active .hero-title {
  animation: heroTitleIn 0.9s ease-out 0.2s forwards;
}

.swiper-slide-active .hero-subtitle {
  animation: heroSubtitleIn 0.9s ease-out 0.55s forwards;
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(35px);
    letter-spacing: 6px;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 2px;
  }
}

@keyframes heroSubtitleIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 0.95;
    transform: translateY(0);
  }
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .hero-slider-section {
    height: 60vh;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }



  .heroSwiper .swiper-pagination {
    bottom: 15px;
  }
}

@media (max-width: 480px) {
  .hero-slider-section {
    height: 50vh;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
}

.custom-tour-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.tour-img-container {
  position: relative;
  overflow: hidden;
}

.tour-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.btn-orange {
  background-color: #f37021;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  border: none;
}

.btn-green {
  background-color: #0b8d4e;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  border: none;
}

.tour-content {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

@media (max-width: 768px) {
  .custom-tour-img {
    height: 300px;
  }

  .tour-img-container {
    border: none !important;
  }
}

.display-4 {
  font-family: inherit;
  font-weight: 300;
  color: #333;
}

.text-muted {
  font-family: inherit;
  letter-spacing: 0.5px;
}

a.text-decoration-none {
  font-weight: 600;
  transition: 0.3s;
}

a.text-decoration-none:hover {
  color: #7a823a !important;
}

@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }
}

.pagination-container {
  gap: 5px;
}

.pagination-btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: none;
  transition: 0.3s;
}

.prev-btn {
  background-color: #f1f1f1;
  color: #ccc;
}

.next-btn {
  background-color: #2a9d8f;
  color: white;
}

.next-btn:hover {
  background-color: #21867a;
  color: white;
}

.arrow-icon {
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .pagination-container {
    margin-top: 30px;
  }
}

.view-all-link {
  color: #98a148;
  font-weight: 500;
}

.experience-item {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
  color: inherit;
}

.experience-item:hover .exp-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.3);
}

.experience-item:hover .exp-label {
  background-color: #e6e6e6ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.experience-item.slide-up {
  animation: slideUp 0.5s ease-in-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-30px);
    opacity: 0;
  }
}

.left-item {
  justify-content: flex-end;
}

.right-item {
  justify-content: flex-start;
}

.exp-label {
  background-color: #e6e6e6b6;
  padding: 12px 15px;
  border-radius: 5px 50px 50px 5px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
  min-width: 220px;
  text-align: center;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.left-item .exp-label {
  border-radius: 5px 5px 50px 5px;
  margin-left: -25px;
  z-index: 1;
  padding-left: 40px;
}

.right-item .exp-label {
  border-radius: 5px 5px 5px 50px;
  margin-right: -25px;
  z-index: 1;
  padding-right: 40px;
}

.exp-icon-wrapper {
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  border: 2px dotted #d63384;
  padding: 5px;
  border-radius: 50%;
  background-color: white;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

.exp-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.map-container img {
  max-height: 750px;
}

@media (max-width: 991px) {
  .experience-section .row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Hide the map on mobile */
  .experience-section .col-lg-6 {
    display: none;
  }

  /* Each experience column takes half the width */
  .experience-section .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
    gap: 1.5rem !important;
    align-items: center !important;
    padding: 0 8px;
  }

  .experience-item {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }

  .left-item,
  .right-item {
    justify-content: center !important;
  }

  .exp-label {
    min-width: unset;
    width: 100%;
    margin: 8px 0 0 0 !important;
    padding: 10px 8px !important;
    border-radius: 16px !important;
    height: auto;
    min-height: 50px;
    font-size: 0.8rem;
    order: 2;
  }

  .exp-icon-wrapper {
    order: 1;
    width: 90px;
    height: 90px;
    min-width: 90px;
    min-height: 90px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
  }
}

.main-peacock-img {
  height: 500px !important;
  object-fit: cover;


}

.excursion-overlay {
  position: absolute;
  bottom: 40px;
  left: 20px;
  width: 80%;
  z-index: 2;
}

.excursion-overlay h4 {
  font-size: 1.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.btn-teal-excur {
  background-color: #2a9d8f;
}

.thumb-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.8;
}

.thumb-img:hover,
.active-thumb {
  opacity: 1;
  border-bottom: 3px solid #f37021;
}

@media (min-width: 768px) {
  .col-md-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (max-width: 768px) {
  .main-peacock-img {
    height: 300px !important;
  }

  .excursion-overlay h4 {
    font-size: 0.9rem;
  }

  .excursion-overlay .btn {
    font-size: 0.85rem !important;
    padding: 4px 8px !important;
    white-space: nowrap !important;
  }
}

.slider-item {
  outline: none;
  padding: 10px;
}

.slick-dots {
  bottom: -40px;
  list-style: none;
  display: flex !important;
  justify-content: center;
  padding: 0;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #2a9d8f;
}

.tour-slider .slick-track {
  display: flex !important;
}

.tour-slider .slick-slide {
  height: auto !important;
  display: flex !important;
}

.tour-card {
  background: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.custom-tour-img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.tour-content {
  flex-grow: 1;
}

/* blog */
.blog-slider .slider-item {
  padding: 10px;
  outline: none;
}

.blog-card {
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.blog-img {
  height: 220px;
  object-fit: cover;
}

.blog-slider .slick-track {
  display: flex !important;
}

.blog-slider .slick-slide {
  height: auto !important;
}

.form-heading {
  font-family: inherit;
  font-weight: 300;
  letter-spacing: 2px;
  color: #333;
}

.form-label-custom {
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  color: #666;
  margin-bottom: 5px;
  display: block;
}

.pill-input {
  font-family: inherit;
  border-radius: 50px !important;
  padding: 10px 20px;
  border: 1px solid #ced4da;
  font-size: 14px;
}

.message-input {
  font-family: inherit;
  border-radius: 15px !important;
  border: 1px solid #ced4da;
  padding: 15px;
  font-size: 14px;
}

.captcha-box {
  /* max-width: 300px; */
  background-color: #f9f9f9;
  font-family: inherit;
  font-size: 13px;
}

.required-text {
  font-family: inherit;
  font-size: 11px;
  color: #999;
}

.btn-submit {
  font-family: inherit;
  background-color: #00afb9;
  color: white;
  padding: 10px 50px;
  font-weight: 700;
  border: none;
}

.btn-reset {
  font-family: inherit;
  background-color: #444;
  color: white;
  padding: 10px 50px;
  font-weight: 700;
  border: none;
}

.btn-submit:hover {
  background-color: #008f97;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 175, 185, 0.3);
}

.btn-reset:hover {
  background-color: #333;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(68, 68, 68, 0.3);
}

.footer-section {
  background-color: #0c0c0c;
  color: #ffffff;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-desc {
  color: #a0a0a0;
  font-size: 0.85rem;
  line-height: 1.6;
}

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

.footer-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border: 1px solid #f37021;
  background-color: #f37021;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #da661d;
  border-color: #f37021;
}

.newsletter-box input {
  background-color: #ffffff;
  height: 45px;
}

.btn-primary-custom {
  background-color: #f37021;
  color: white;
  padding: 0 20px;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #de651a;
  color: white;

  box-shadow: 0 4px 10px rgba(212, 94, 26, 0.3);
}

.contact-icon {
  width: 20px;
  color: #f37021;
  font-size: 1.1rem;
}

.footer-hr {
  background-color: #333;
  opacity: 0.5;
}

.text-primary-custom {
  color: #007bff;
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    margin-bottom: 30px;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .contact-info .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .footer-section .col-lg-1 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Tours Page Styles - Alternating Layout */
.tours-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

.tours-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.tours-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.tours-hero-content h1 {
  font-size: 4rem;
  letter-spacing: 3px;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
}

/* Alternating Tour Layout */
.tour-row {
  padding: 20px 0;
}

.tour-alt-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tour-alt-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-alt-img-wrapper:hover .tour-alt-img {
  transform: scale(1.05);
}

.tour-alt-content {
  padding: 0 30px;
}

.tour-alt-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.tour-alt-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

.tour-alt-content .btn {
  transition: all 0.3s ease;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.tour-alt-content .btn:hover {
  background-color: #d45e1a;
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .tour-alt-content {
    padding: 30px 0 0 0;
    text-align: center !important;
  }

  .tour-alt-img {
    height: 280px;
  }

  .tour-alt-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .tours-hero {
    height: 250px;
  }

  .tours-hero-content h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .tour-alt-img {
    height: 220px;
  }

  .tour-alt-title {
    font-size: 1.3rem;
  }

  .tour-alt-content {
    padding: 20px 0 0 0;
  }
}

/* Tour Details Page Styles */
.tour-details-hero {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.tour-details-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-details-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.tour-details-hero-content {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 2;
}

/* Breadcrumb Navigation */
.breadcrumb-section {
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
}

.breadcrumb-item {
  font-size: 0.9rem;
}

.breadcrumb-item a {
  color: #666;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #f37021;
}

.breadcrumb-item.active {
  color: #333;
  font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: ":";
  color: #999;
}

.tour-details-section {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 30px;
}

.tour-details-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}

.tour-details-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #f37021;
}

.tour-details-subheading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

.highlight-item {
  padding: 10px 0;
  font-size: 0.95rem;
}


/* Itinerary Accordion Styles */
.itinerary-accordion-btn {
  background-color: #f9f9f9;
  border-left: 4px solid #f37021;
  border-radius: 4px;
  color: #333;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.itinerary-accordion-btn:not(.collapsed) {
  background-color: #f37021;
  color: white;
  box-shadow: none;
}

.itinerary-accordion-btn:hover {
  background-color: #f37021;
  color: white;
}

.itinerary-accordion-btn:focus {
  box-shadow: none;
  border-color: #f37021;
}

.itinerary-accordion-btn::after {
  filter: brightness(0);
}

.itinerary-accordion-btn:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 20px;
  background-color: #fafafa;
  border-left: 4px solid #f37021;
  border-radius: 0 0 4px 4px;
}

.accordion-item {
  background-color: transparent;
}

.inclusion-list,
.exclusion-list {
  list-style: none;
  padding: 0;
}

.inclusion-list li,
.exclusion-list li {
  padding: 8px 0;
  font-size: 0.95rem;
}

/* Tour Sidebar Sticky Wrapper */
.tour-sidebar-sticky {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

/* Booking Card */
.booking-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.booking-card-header {
  background-color: #f37021;
  color: white;
  padding: 20px;
}

.booking-card-body {
  padding: 25px;
}

.price-section {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}

.price-amount {
  color: #f37021;
  font-size: 2.5rem;
  font-weight: 700;
}

.price-per {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

.tour-info-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

/* Contact Card */
.contact-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  bottom: 20px;
}

.contact-card-header {
  background-color: #00afb9;
  color: white;
  padding: 15px 20px;
}

.contact-card-body {
  padding: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

/* Related Tours */
.related-tour-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-tour-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.related-tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
  flex-shrink: 0;
}

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

.related-tour-content {
  background-color: white;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.related-tour-content h5 {
  min-height: 30px;
}

.related-tour-content p {
  flex-grow: 1;
  min-height: 60px;
}

@media (max-width: 991px) {
  .booking-card {
    position: relative;
    top: 0;
  }

  .tour-details-hero {
    height: 300px;
  }

  .tour-details-hero-content {
    bottom: 30px;
  }

  .tour-details-hero-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .tour-details-hero {
    height: 250px;
  }

  .tour-details-heading {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }
}

/* Final Override - Ensure Orange Buttons Always Have White Text */
a.btn-orange,
a.btn-orange:hover,
a.btn-orange:focus,
a.btn-orange:active,
a.btn-orange:visited,
a.btn-orange:link,
.btn-orange,
.btn-orange:hover,
.btn-orange:focus,
.btn-orange:active {
  color: #fff !important;
}

/* Contact Page Styles */
.contact-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.contact-hero-content {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 2;
}

.contact-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}

.contact-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #f37021;
}

/* Contact Form */
.contact-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #f37021;
  box-shadow: 0 0 0 0.2rem rgba(243, 112, 33, 0.25);
}

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

/* Contact Info Cards */
.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #f37021;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: #f37021;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-content h5 {
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-info-content a:hover {
  color: #f37021 !important;
}

/* Social Icons */
.social-icon-link {
  width: 40px;
  height: 40px;
  background-color: #f37021;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-link:hover {
  background-color: #d45e1a;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(243, 112, 33, 0.3);
}

/* Map Section */
.map-wrapper {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-hero {
    height: 250px;
  }

  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-section-title {
    font-size: 1.5rem;
  }

  .contact-info-card {
    padding: 20px;
  }
}

/* About Us Page Styles */
.about-main-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #333;
  position: relative;
  display: inline-block;
}

.about-main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #f37021;
}

.about-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}

.about-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #f37021;
}

/* Feature Cards */
.feature-card {
  padding: 30px 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: #f37021;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 1.8rem;
}

.feature-card h5 {
  color: #333;
  font-weight: 600;
}

/* Value Cards */
.value-card {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #f37021;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.value-number {
  font-size: 3rem;
  font-weight: 700;
  color: #f37021;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 15px;
}

.value-card h4 {
  color: #333;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f37021 0%, #d45e1a 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
}

.cta-section .btn-outline-light {
  border: 2px solid white;
  color: white;
  transition: all 0.3s ease;
}

.cta-section .btn-outline-light:hover {
  background-color: white;
  color: #f37021;
  border-color: white;
}

@media (max-width: 768px) {
  .about-main-title {
    font-size: 1.8rem;
  }

  .about-section-title {
    font-size: 1.5rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .value-number {
    font-size: 2.5rem;
  }
}

/* Tour Showcase - Large Side-by-Side Images with Hover */
.tour-showcase-card {
  position: relative;
  overflow: hidden;
  height: 470px;
  max-height: 470px;
  cursor: pointer;
}

.tour-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.6s ease;
  opacity: 1;
}

.tour-showcase-img.fade-out {
  opacity: 0;
}

.tour-showcase-card:hover .tour-showcase-img {
  transform: scale(1.05);
}

.tour-showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 50px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tour-showcase-card:hover .tour-showcase-overlay {
  opacity: 1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.8) 100%);
}

.tour-showcase-content {
  color: #ffffff;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.tour-showcase-card:hover .tour-showcase-content {
  transform: translateY(-5px);
}

.tour-showcase-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  transition: opacity 0.6s ease;
  opacity: 1;
}

.tour-showcase-title.fade-out {
  opacity: 0;
}

.tour-showcase-desc {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  transition: opacity 0.6s ease;
  opacity: 1;
}

.tour-showcase-desc.fade-out {
  opacity: 0;
}

/* Orange Button Styles */
.btn-orange {
  background-color: #e87722;
  border: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(232, 119, 34, 0.3);
}

.btn-orange:hover {
  background-color: #d66a1f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 119, 34, 0.5);
}

.btn-orange:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(232, 119, 34, 0.4);
}

/* Ripple effect on click */
.btn-orange::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-orange:active::before {
  width: 300px;
  height: 300px;
}

.tour-nav-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #2a9d8f;
  background-color: transparent;
  color: #2a9d8f;
  transition: all 0.3s ease;
  font-size: 18px;
}

.tour-nav-btn:hover {
  background-color: #2a9d8f;
  color: white;
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .tour-showcase-card {
    height: 400px;
  }

  .tour-showcase-title {
    font-size: 1.8rem;
  }

  .tour-showcase-desc {
    font-size: 0.95rem;
  }

  .tour-showcase-overlay {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .tour-showcase-card {
    height: 350px;
  }

  .tour-showcase-overlay {
    opacity: 1;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.8) 100%);
  }

  .tour-showcase-content {
    transform: translateY(0);
  }

  .tour-showcase-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .tour-showcase-desc {
    font-size: 0.85rem;
  }
}

/* ========== EXCURSIONS SECTION ========== */

/* Remove all side padding - ultra specific */
section.container-fluid.px-0,
section.container-fluid.px-0>*,
section.container-fluid.px-0 .excursion-main,
section.container-fluid.px-0 .row {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Force full width */
section.container-fluid.px-0 {
  max-width: 100vw !important;
  width: 100vw !important;
  overflow-x: hidden !important;
}

/* Section content padding */
.excursion-section-content {
  padding: 0 15px;
}

/* Custom grid for 10 columns (10% width each) */
.col-lg-1-2 {
  flex: 0 0 auto;
  width: 10%;
  padding: 0;
}

/* Remove row padding for full-width thumbnails */
.excursion-main+.row {
  margin: 0;
  padding: 0;
}

/* Main excursion image container */
.excursion-main {
  position: relative;
  overflow: hidden;
  height: 390px;
  max-height: 400px;
  margin-bottom: 4px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.main-peacock-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.excursion-main:hover .main-peacock-img {
  transform: scale(1.05);
}

/* Excursion overlay */
.excursion-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  padding: 40px !important;
  transition: background 0.4s ease;
}




/* Thumbnail images */
.thumb-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.4s ease;
  filter: brightness(0.8) grayscale(0.3);
  border: 2px solid transparent;
  display: block;
  margin: 0;
}

.thumb-img:hover {
  filter: brightness(1) grayscale(0);
  transform: scale(1.05);
  border-color: #e87722;
  box-shadow: 0 5px 20px rgba(232, 119, 34, 0.4);
}

.thumb-img.active-thumb {
  filter: brightness(1) grayscale(0);
  border-color: #2a9d8f;
  box-shadow: 0 5px 20px rgba(42, 157, 143, 0.5);
}

/* Excursion navigation buttons */
.btn-teal-excur {
  background-color: #2a9d8f;
  border: none;
  transition: all 0.3s ease;
}

.btn-teal-excur:hover {
  background-color: #238276;
  transform: scale(1.1);
}

.excursion-arrows button {
  min-width: 50px;
  font-size: 18px;
}

/* Outline button styles */
.btn-outline-light {
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .col-md-2-4 {
    width: 50%;
  }

  .excursion-main {
    min-height: 350px;
    aspect-ratio: 4/3;
  }

  .thumb-img {
    aspect-ratio: 1/1;
  }

  .excursion-overlay {
    padding: 20px !important;
  }

  .excursion-overlay h4 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .col-md-2-4 {
    width: 100%;
  }

  .thumb-img {
    height: auto;
  }
}

/* ========== BLOG SLIDER ========== */

.blog-slider {
  position: relative;
}

.blog-slider .slick-slide {
  padding: 0 5px;
}

.blog-slider .slick-list {
  margin: 0 -5px;
}

.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.blog-img {
  height: auto;
  max-height: 350px;
  /* Limit height on large screens */
  aspect-ratio: 21/9;
  object-fit: cover;
}

/* Slick dots styling */
.blog-slider .slick-dots {
  bottom: -15px;
  text-align: center;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  display: flex !important;
  justify-content: center;
  align-items: center;
  list-style: none;
  left: 0;
  right: 0;
}

.blog-slider .slick-dots li {
  margin: 0 5px;
  display: inline-block;
}

.blog-slider .slick-dots li button:before {
  font-size: 38px;
  color: #2a9d8f;
}

.blog-slider .slick-dots li.slick-active button:before {
  color: #e87722;
}

/* Slick dots styling for Related Experiences Slider */
.related-excursions-slider .slick-dots {
  bottom: -15px;
  text-align: center;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  display: flex !important;
  justify-content: center;
  align-items: center;
  list-style: none;
  left: 0;
  right: 0;
}

.related-excursions-slider .slick-dots li {
  margin: 0 5px;
  display: inline-block;
}

.related-excursions-slider .slick-dots li button:before {
  font-size: 38px;
  color: #2a9d8f;
}

.related-excursions-slider .slick-dots li.slick-active button:before {
  color: #e87722;
}

/* Fix white space below footer */
#blog {
  margin-bottom: 60px;
}

footer {
  margin-bottom: 0 !important;
  padding-bottom: 1rem !important;
}

/* Custom Card Buttons */
.btn-card-explore {
  background-color: #f37021;
  color: white !important;
  font-weight: 600;
  border: none;
  padding: 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-card-explore:hover {
  background-color: #d65a12;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(243, 112, 33, 0.3);
  color: white !important;
}

.btn-card-inquire {
  background-color: #2a9d8f;
  color: white !important;
  font-weight: 600;
  border: none;
  padding: 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-card-inquire:hover {
  background-color: #1f7a6f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(42, 157, 143, 0.3);
  color: white !important;
}

/* =========================================
   BOOKING MODAL STYLES
   ========================================= */

/* Modal styling */
#bookingModal .modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: none;
}

#bookingModal .modal-header {
  padding: 1.5rem 2rem;
  border-bottom: none;
}

#bookingModal .modal-body {
  max-height: 70vh;
  overflow-y: auto;
  padding: 0 2rem 2rem 2rem;
}

#bookingModal .modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #f0f0f0;
}

/* Modal footer buttons */
#bookingModal .modal-footer .btn {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border-width: 2px;
}

#bookingModal .modal-footer .btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

#bookingModal .modal-footer .btn-outline-secondary:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

#bookingModal .modal-footer .btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 112, 33, 0.4) !important;
}

/* Custom form controls for booking modal */
.form-label-booking {
  font-size: 0.75rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
}

.form-control-booking,
.form-control-booking:focus {
  padding: 0.875rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: #fcfcfc;
  width: 100%;
  font-family: inherit;
  min-height: 48px;
  line-height: 1.5;
}

.form-control-booking:focus {
  border-color: #2a9d8f;
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.1);
  outline: none;
  background-color: #fff;
}

.form-control-booking[readonly] {
  background-color: #f8f9fa;
  cursor: not-allowed;
  border-color: #dee2e6;
  color: #6c757d;
}

/* Tour name field specific styling */
#tourName {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  font-size: 0.9rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Input group styling */
.input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.input-group-text {
  font-weight: 600;
  color: #495057;
  background-color: #fcfcfc;
  border: 1px solid #e0e0e0;
  border-right: none;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
}

.input-group .form-control-booking {
  border-left: none !important;
  border-radius: 0 10px 10px 0 !important;
  flex: 1;
}

.input-group .form-control-booking:focus {
  border-left: none !important;
}

/* Tour summary section */
.tour-summary-section {
  position: relative;
  overflow: visible;
  margin-bottom: 2rem !important;
  border-left-width: 4px !important;
}

.tour-summary-section h6 {
  margin-bottom: 1rem;
}

/* Personal details section */
.personal-details-section,
.travel-details-section,
.traveler-details-section {
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  margin-bottom: 1.5rem;
}

.personal-details-section h6,
.travel-details-section h6,
.traveler-details-section h6 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #f0f0f0;
  position: relative;
}

.personal-details-section h6::before,
.travel-details-section h6::before,
.traveler-details-section h6::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f37021 0%, transparent 100%);
}

/* Info message section */
.info-message-section {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* Total price section */
.total-price-section {
  margin-bottom: 1.5rem;
}

/* Custom checkbox */
.form-check {
  padding-left: 1.8rem;
}

.form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  cursor: pointer;
  border: 2px solid #dee2e6;
}

.form-check-input:checked {
  background-color: #2a9d8f;
  border-color: #2a9d8f;
}

.form-check-input:focus {
  border-color: #2a9d8f;
  box-shadow: 0 0 0 0.2rem rgba(42, 157, 143, 0.25);
}

.form-check-label {
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
  user-select: none;
}

.form-check-label a {
  font-weight: 600;
}

.form-check-label a:hover {
  text-decoration: underline !important;
}

/* Text danger for required fields */
.text-danger {
  color: #dc3545 !important;
  font-weight: bold;
}

/* Button styling */
.btn-outline-secondary {
  transition: all 0.3s ease;
  font-weight: 600;
  border-width: 2px;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Modal fade animation enhancement */
.modal.fade .modal-dialog {
  transition: transform 0.4s ease-out;
}

/* Scrollbar styling for modal body */
#bookingModal .modal-body::-webkit-scrollbar {
  width: 6px;
}

#bookingModal .modal-body::-webkit-scrollbar-track {
  background: transparent;
}

#bookingModal .modal-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

#bookingModal .modal-body::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Select dropdown styling */
select.form-control-booking {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Date input styling */
input[type="date"].form-control-booking {
  cursor: pointer;
}

/* Textarea styling */
textarea.form-control-booking {
  resize: vertical;
  min-height: 100px;
}

/* Row spacing */
.row.g-3 {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.row.g-3>* {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #bookingModal .modal-dialog {
    margin: 0.5rem;
  }

  #bookingModal .modal-body {
    padding: 0 1.25rem 1.25rem 1.25rem !important;
    max-height: 65vh;
  }

  #bookingModal .modal-header,
  #bookingModal .modal-footer {
    padding: 1.25rem;
  }

  .tour-summary-section,
  .total-price-section {
    padding: 1rem !important;
  }

  .form-label-booking {
    font-size: 0.7rem;
  }

  .form-control-booking {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }

  .total-price-section h5 {
    font-size: 1rem;
  }

  .total-price-section h3 {
    font-size: 1.5rem;
  }











}


/* ═══════════════════════════════════════════
   Custom Hamburger Menu Button & Dropdown
   ═══════════════════════════════════════════ */

.custom-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 35px;
  height: 35px;
  background: transparent;
  border: 2px solid #1a6d63;
  border-radius: 6px;
  cursor: pointer;
  padding: 6px 8px;
  margin-left: 40px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.custom-menu-btn:hover,
.custom-menu-btn.active {
  background-color: #1a6d63;
}

.custom-menu-bar {
  display: block;
  width: 15px;
  height: 2.2px;
  background-color: #1a6d63;
  border-radius: 2px;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.custom-menu-btn:hover .custom-menu-bar,
.custom-menu-btn.active .custom-menu-bar {
  background-color: #ffffff;
}

/* Animated bars when active */
.custom-menu-btn.active .custom-menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.custom-menu-btn.active .custom-menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.custom-menu-btn.active .custom-menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Dropdown Panel ── */
.custom-menu-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background-color: #ffffff;
  border-top: 3px solid #1a6d63;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 8px 8px;
  z-index: 99999;
  animation: dropdownFadeIn 0.25s ease forwards;
  overflow: hidden;
}

.custom-menu-dropdown.open {
  display: block;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

.custom-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.custom-menu-item:last-child {
  border-bottom: none;
}

.custom-menu-item:hover {
  background-color: #f0f8f7;
  color: #1a6d63;
  padding-left: 26px;
}

.custom-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #1a6d63;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.custom-menu-item:hover .custom-menu-icon {
  background-color: #f37021;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  #customMenuWrapper {
    margin-left: auto;
  }

  .custom-menu-btn {
    margin-left: 0 !important;
  }

  .custom-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    border-top: 3px solid #1a6d63;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
    border-radius: 0 0 8px 8px;
    z-index: 99999;
    animation: dropdownFadeIn 0.25s ease forwards;
  }
}

/* Desktop: push custom button to far right of navbar */
@media (min-width: 992px) {
  .navbar>.container {
    flex-wrap: nowrap;
  }

  #customMenuWrapper {
    order: 3;
    margin-left: 12px;
  }

  .navbar-collapse {
    order: 2;
  }

  .navbar-brand {
    order: 1;
  }
}