

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #5d52ba;
  --secondary-color:              #0dcaf0;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #00509e;
  --social-icon-link-bg-color:    #7f73eb;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;

  --body-font-family:             'League Spartan', sans-serif;

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         30px;
  --border-radius-small:          10px;

  --font-weight-thin:             100;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.5px;
}

h1,
h2 {
  letter-spacing: -1.5px;
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--custom-btn-bg-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
/* Navbar Styling */
.navbar {
  background: linear-gradient(45deg, #87CEEB, #87CEEB);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Highlight Active Link */
.nav-link.active {
  color: #ffe082;
  font-weight: bold;
  text-shadow: 0 3px 8px rgba(255, 224, 130, 0.8);
}

.nav-link {
  transition: color 0.3s, transform 0.3s;
}

.nav-link:hover {
  transform: scale(1.1);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}


.navbar-brand {
  display: flex;
  align-items: center;
  flex-direction: column; /* Center slogan under the logo */
}

.logo-image {
  width: 150px; /* Larger logo size */
  border-radius: 10px; /* Optional: Slightly rounded edges */
  margin-bottom: 5px; /* Space between logo and slogan */
}

.logo-slogan {
  font-size: 14px;
  color: #fff;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-toggler {
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #eee;
  margin: 0 15px;
  transition: all 0.3s ease-in-out;
}

.nav-link:hover {
  color: #ffe082;
  text-shadow: 0px 2px 8px rgba(255, 224, 130, 0.8);
  transform: scale(1.1);
}

.custom-btn {
  background: linear-gradient(90deg, #0077b6, #0096c7);
  padding: 8px 20px;
  border: none;
  color: white;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.4s ease;
  text-transform: uppercase;
}

.custom-btn:hover {
  background: #ffe082;
  color: #000428;
  box-shadow: 0px 5px 20px rgba(255, 224, 130, 0.8);
  transform: scale(1.2);
}

/* Mobile Menu Animations */
.collapse {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

/* Responsiveness */
@media (max-width: 768px) {
  .navbar-nav {
    text-align: center;
    margin-top: 10px;
  }

  .nav-item {
    margin-bottom: 10px;
  }
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
/* Site Header Styling */
.site-header {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/tours/about.png'); /* Replace with a relevant background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Overlay for Dim Effect */
.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(185, 182, 182, 0.5);
  z-index: 1;
}

/* Content Inside the Header */
.site-header .container {
  position: relative;
  z-index: 2;
}

/* Title and Subtitle */
.header-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.header-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 400;
  color: #d1d1d1;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumb .breadcrumb-item a {
  color: #f0db4f;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumb .breadcrumb-item a:hover {
  color: #ffdd57;
}

.breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .header-title {
      font-size: 2.5rem;
  }

  .header-subtitle {
      font-size: 1rem;
  }
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
#hero-section.hero-section-modern {
  display: flex;
  flex-direction: column;
  background-color: #eef8fc;
  padding: 40px 20px;
  position: relative;
}

#hero-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

#hero-section .hero-text {
  max-width: 45%;
}

#hero-section .hero-tagline {
  font-size: 1.2rem;
  color: #0077b6;
  font-weight: 600;
  margin-bottom: 10px;
}

#hero-section .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #023e8a;
  margin-bottom: 15px;
  line-height: 1.2;
}

#hero-section .hero-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 25px;
}

#hero-section .btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #0077b6, #0096c7);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

#hero-section .btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #023e8a, #0077b6);
}

#hero-section .hero-image {
  max-width: 50%;
}

#hero-section .hero-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Scoped Search Bar */
#hero-section .search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 30px auto 0;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

#hero-section .search-item {
  display: flex;
  align-items: center;
  flex: 1;
  margin-right: 10px;
}

#hero-section .search-item:last-child {
  margin-right: 0;
}

#hero-section .search-item i {
  font-size: 1.2rem;
  color: #0077b6;
  margin-right: 10px;
}

#hero-section .search-item input {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 5px 10px;
  width: 100%;
  font-size: 1rem;
  outline: none;
}

#hero-section .search-item input:focus {
  border-bottom: 2px solid #0077b6;
}

#hero-section .btn-search {
  background: linear-gradient(90deg, #0077b6, #0096c7);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

#hero-section .btn-search:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #023e8a, #0077b6);
}

/* Scoped Responsive Design */
@media (max-width: 768px) {
  #hero-section .container {
    flex-direction: column;
    text-align: center;
  }

  #hero-section .hero-text {
    max-width: 100%;
  }

  #hero-section .hero-image {
    max-width: 100%;
    margin-top: 20px;
  }

  #hero-section .search-bar {
    flex-wrap: wrap;
  }

  #hero-section .search-item {
    flex: 100%;
    margin: 5px 0;
  }

  #hero-section .btn-search {
    margin-top: 10px;
    width: 100%;
  }
}

/* Keyframe Animation */
@keyframes bounceIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Hero Tagline Style */
.hero-tagline {
  animation: bounceIn 1.5s ease-out;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.hero-tagline .badge {
  display: inline-block;
  border-radius: 12px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Add hover effect for more interactivity */
.hero-tagline .badge:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}



/*---------------------------------------
  ABOUT              
-----------------------------------------*/

.section-bg {
  background: linear-gradient(120deg, #f8f9fa, #f8f9fa);
}

.section-title {
  color: #00509e;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.section-title:hover {
  color: #003f7e;
}

.about-intro {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-intro:hover {
  transform: scale(1.02);
}

.about-intro p {
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}

.btn-primary {
  background: linear-gradient(90deg, #0077b6, #0096c7);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #0077b6, #0096c7);
  color: #f1f1f1;
  transform: scale(1.05);
}

/* Owners Section */
.owner-profile {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Adjust the styles for the owner's info without images */
.owner-name {
  font-size: 22px;
  font-weight: bold;
  color: #00509e;
  margin: 15px 0 8px;
}

.owner-role {
  font-size: 16px;
  font-weight: normal;
  color: #505050;
  margin-bottom: 15px;
}

.owner-bio {
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
  padding: 0 20px;
}

.owner-name, .owner-role, .owner-bio {
  margin-left: auto;
  margin-right: auto;
}

.owner-profile .row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
}

@media (max-width: 768px) {
  .owner-profile .row {
    flex-direction: column;
  }
}


/* Testimonials Section */
.testimonial-box {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 15px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}

.testimonial-author {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  color: #00509e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-intro, .owner-profile, .testimonial-box {
    margin-top: 30px;
  }

}
/*---------------------------------------
  ABOUT - TWO            
-----------------------------------------*/
/* Section Padding */
.section-padding {
  padding: 60px 20px;
}

/* Section Header */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e90ff;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
}

/* Highlight Titles */
.highlight-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}

/* About Content */
.text-muted {
  font-size: 1.1rem;
  color: #6c757d;
}

.text-highlight {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}

/* Boxes */
.languages-box, .features-box, .mission-section {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.languages-box:hover, .features-box:hover, .mission-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* List Styling */
.features-list li, .language-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.features-list li i, .language-item i {
  color: #1e90ff;
  margin-right: 10px;
}

/* Call-to-Action Button */
.btn-primary {
  background-color: #1e90ff;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0px 5px 15px rgba(30, 144, 255, 0.3);
  transition: all 0.3s ease;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0077cc;
  transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }
  .highlight-title {
      font-size: 1.4rem;
  }
  .text-highlight {
      font-size: 1rem;
  }
}




/*---------------------------------------
  SERVICES              
-----------------------------------------*/
/* General Section Styles */
#tours-section {
  background: #ecf1f7;
}

.section-title {
  color: #00509e;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #333333;
  margin-bottom: 40px;
}


/* Tour Card Styles */
.tour-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.tour-image-container {
  position: relative;
}

.tour-price {
  position: absolute;
  top: 10px;
  left: 15px;
  background: rgba(0, 80, 158, 0.7);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;
  z-index: 2;
}

.tour-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.tour-content {
  padding: 20px;
}

.tour-title {
  font-size: 20px;
  font-weight: bold;
  color: #00509e;
  margin-bottom: 10px;
}

.tour-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.tour-highlights li {
  font-size: 16px;
  color: #555555;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.tour-highlights li:before {
  content: '✔';
  color: #00509e;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
}

.tour-buttons {
  display: flex;
  justify-content: space-between;
}

.btn-outline-primary {
  color: #00509e;
  border: 2px solid #00509e;
  border-radius: 30px;
  padding: 8px 15px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #00509e;
  color: #ffffff;
}

.btn-primary {
  background: #00509e;
  color: #ffffff;
  border-radius: 30px;
  padding: 8px 15px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #003f7e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tour-card {
    margin-bottom: 20px;
  }
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.custom-footer {
  background-color: #f9fcff;
  color: #2ca8c2;
  font-family: 'Arial', sans-serif;
  padding: 40px 20px;
}

.custom-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.custom-footer-section {
  text-align: left;
}

.custom-footer-logo {
  width: 80px;
  margin-bottom: 20px;
}

.custom-footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #217e96;
  margin-bottom: 10px;
}

.custom-footer-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #58b7ce;
}

/* Section Titles */
.custom-section-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2ca8c2;
  margin-bottom: 15px;
  border-left: 4px solid #217e96;
  padding-left: 10px;
}

/* Footer Links */
.custom-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-footer-links li {
  margin-bottom: 10px;
}

.custom-footer-links a {
  color: #05cdff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.custom-footer-links a:hover {
  color: #58b7ce;
}

/* Social Links */
.custom-social-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 20px 0 0;
  padding: 0;
}

.custom-social-links a {
  color: #217e96;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.custom-social-links a:hover {
  color: #58b7ce;
}

/* Footer Bottom */
.custom-footer-bottom {
  text-align: center;
  border-top: 1px solid #d1eff5;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #58b7ce;
}

.custom-footer-bottom a {
  color: #2ca8c2;
  font-weight: bold;
  text-decoration: none;
}

.custom-footer-bottom a:hover {
  color: #217e96;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .custom-footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
  }
}



/*---------------------------------------
  WHY CHOOSE US           
-----------------------------------------*/
/* General Section Styling */
.section-padding {
  padding: 80px 0;
}

#why-choose-us {
  background: #f9f9f9;
}

/* Left Content Styling */
.content-area {
  padding: 20px;
}

.section-subtitle {
  color: #00509e;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-title {
  color: #333;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-description {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.activities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
}

.activity-item i {
  font-size: 20px;
  color: #00509e;
}

.custom-video {
  width: 100%; /* Set video width as 100% of its parent container */
  height: 300px; /* Use a fixed height or whatever value you prefer */
  object-fit: cover; /* Ensures the video covers the area without distorting */
}

.play-button {
  z-index: 10; /* Make sure play button is on top of the video */
}

.btn-primary {
  background-color: #ff7b54;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #e5673e;
  color: #fff;
}

/* Right Content Styling */
.image-area {
  position: relative;
  text-align: center;
}

.image-area img {
  border-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.play-button i {
  color: #fff;
  font-size: 32px;
}

.play-button:hover {
  transform: scale(1.1);
}


/*---------------------------------------
  FAQ'S         
-----------------------------------------*/
.faq-section {
  padding: 60px 20px;
  background-color: #f9fcff;
}

.faq-title {
  font-size: 28px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  background-color: #f0fcff;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  text-align: left;
  width: 100%;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.faq-question:focus {
  outline: none;
}

.faq-answer {
  display: none;
  padding: 10px 20px;
  color: #666;
  font-size: 14px;
  background: #ffffff;
  border-left: 4px solid #2ca8c2;
  border-radius: 0 10px 10px 10px;
  margin-top: 10px;
}

.faq-icon {
  font-size: 18px;
  color: #2ca8c2;
  transition: transform 0.3s ease;
}

.faq-image {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.additional-info {
  font-size: 16px;
  font-weight: 500;
  color: #555; /* Soft gray for readability */
  background-color: #f9f9f9; /* Light background to distinguish the section */
  padding: 20px; /* Adds space around the text */
  border-radius: 10px; /* Rounded corners for a modern look */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  line-height: 1.6; /* Improves readability */
  display: inline-block; /* Shrinks the background to fit the text */
  max-width: 800px; /* Limits the width to make it easy to read */
  margin: 0 auto; /* Centers the section horizontally */
}

.additional-info a {
  color: #c6dcf3; /* Standard blue for links */
  text-decoration: none; /* Removes underline */
  font-weight: 600; /* Bold for emphasis */
}

.additional-info a:hover {
  text-decoration: underline; /* Adds underline on hover for accessibility */
  color: #b8d6f5; /* Darker shade of blue for hover state */
}

/*---------------------------------------
  WHY CHOOSE US          
-----------------------------------------*/
/* General Section */
.activities-section {
  padding: 60px 0;
  background-color: #f7fcfd;
}

.activities-heading {
  color: #ff6a3d;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.activities-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.activities-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 30px;
}

/* Features */
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-icon {
  color: #17a2b8;
  font-size: 1.5rem;
  margin-right: 8px;
}

/* Button */
.btn-primary {
  background-color: #17a2b8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  text-transform: uppercase;
  border: none;
}

.btn-primary:hover {
  background-color: #138f99;
}

/* Image and Play Button */
.position-relative {
  position: relative;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #17a2b8;
  font-size: 3rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 10px;
}

.play-button:hover {
  color: #138f99;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .activities-title {
    font-size: 2rem;
  }

  .activities-description {
    font-size: 0.9rem;
  }
}

/*---------------------------------------
 TOUR DETAILS        
-----------------------------------------*/
/* Tour Option Cards with Price Styling */
.option-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.option-card h3 {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
}

.option-card p {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}

.option-card .tour-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff5733;
  margin-top: 10px;
}

.option-card input[type="checkbox"] {
  margin-top: 15px;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  cursor: pointer;
}

.option-card input[type="checkbox"]:checked {
  background-color: #ff5733;
}

/* Total Price Display */
.total-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-top: 15px;
}

/*---------------------------------------
 TRANSFERS        
-----------------------------------------*/
/* General Styling */
.safari-transfers {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.safari-transfers h1 {
  font-size: 30px;
  font-weight: bold;
  color: #222;
  margin-bottom: 25px;
}

/* Transfer Cards Container */
.transfer-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Individual Card */
.card {
  width: 340px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.image-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Card Content */
.card-content {
  padding: 20px;
}

.card-content h2 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Pricing Section */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #d9534f;
  display: flex;
  align-items: center;
}

/* Price Badge */
.price::after {
  content: "Per Person";
  font-size: 12px;
  font-weight: normal;
  color: #555;
  background: #ffefef;
  padding: 4px 8px;
  border-radius: 15px;
  margin-left: 10px;
}

/* Book Now Button */
.view-tour {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}

.view-tour:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Booking Form (Popup) */
.booking-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 90%;
  max-width: 550px;
  max-height: 80%;
  overflow-y: auto;
}

/* Form Container */
.form-container {
  text-align: left;
}

label {
  display: block;
  font-size: 14px;
  margin: 10px 0 5px;
}

input, select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Booking Buttons */
.confirm-booking,
.close-form {
  width: 100%;
  padding: 12px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  border: none;
}

.confirm-booking {
  background-color: #28a745;
  color: white;
}

.close-form {
  background-color: #d9534f;
  color: white;
  margin-top: 8px;
}

.confirm-booking:hover {
  background-color: #218838;
}

.close-form:hover {
  background-color: #c9302c;
}

/* Mobile-Friendly Design */
@media (max-width: 768px) {
  .transfer-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 95%;
    max-width: 360px;
  }
}



/*---------------------------------------
 GALLERY      
-----------------------------------------*/
/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.title {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #7f8c8d;
  margin-bottom: 40px;
}

/* Gallery Grid Layout */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 767px) {
  .title {
      font-size: 30px;
  }

  .subtitle {
      font-size: 16px;
  }

  .gallery-img {
      height: auto;
  }
}

/*---------------------------------------
 BOOK NOW     
-----------------------------------------*/
/* General Container */
.booking-container {
  background: linear-gradient(to bottom right, #ffffff, #f0f4ff);
  border-radius: 20px;
  padding: 30px;
  max-width: 800px;
  margin: 50px auto;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: slideDown 1s ease-in-out;
  overflow: hidden;
}

/* Step Progress Indicator */
.progress-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.progress-indicator .step {
  flex: 1;
  text-align: center;
  padding: 15px;
  border: 1px solid #e0e0e0;
  background: #f9f9f9;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 14px;
}

.progress-indicator .step.active {
  background: #007bff;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.progress-indicator .step:hover {
  background: rgba(0, 123, 255, 0.1);
}

/* Step Content */
.step-content {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.step-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Inputs and Forms */
input,
select,
textarea {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  margin: 10px 0; /* Add space between input fields */
}

textarea {
  resize: vertical; /* Allows vertical resizing for long inputs */
}

input:focus,
select:focus,
textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

/* Button Styling */
button {
  padding: 12px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 15px; /* Add some spacing for better layout */
}

button:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tour Grid */
.booking-container .tour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px; /* Add margin to ensure content is not too close */
}

.booking-container .tour-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.booking-container .tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.booking-container .tour-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #333;
}

.booking-container .tour-card p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 15px;
}

.booking-container .tour-card .tour-price {
  font-size: 1.4rem;
  color: #007bff;
  margin-bottom: 15px;
}

.booking-container .tour-card button.add-tour-btn {
  padding: 10px 20px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-container .tour-card button.add-tour-btn:hover {
  background-color: #218838;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  /* Adjust the grid to 1 column on small screens */
  .booking-container .tour-grid {
    grid-template-columns: 1fr; /* Stack cards on mobile */
  }

  /* Improve form layout on smaller screens */
  .form-row {
    width: 100%; /* Ensure the form fields take full width */
  }
}

/* Add some spacing and a background for the tour add-on card */
.tour-addon-card {
  background-color: #f8f8f8;
  padding: 20px;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tour-addon-card:hover {
  transform: translateY(-10px); /* Slight lift effect on hover */
}

/* Style the title of the Add-On section */
.tour-addon-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}

/* Style the add-on list */
.tour-addon-card ul {
  list-style-type: none;
  padding: 0;
}

.tour-addon-card li {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 1rem;
}

/* Style the checkbox input */
.tour-addon-card input[type="checkbox"] {
  margin-right: 10px;
  accent-color: #e74c3c; /* Red color for the checkbox */
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Style the label for each checkbox */
.tour-addon-card label {
  font-size: 1rem;
  color: #34495e;
  cursor: pointer;
  transition: color 0.2s ease;
}

/* Add hover effect for the label */
.tour-addon-card label:hover {
  color: #e74c3c;
}

/* Style for each checkbox option's price */
.tour-addon-card li span {
  font-weight: bold;
  color: #e74c3c;
  margin-left: auto;
}

/* Style for the checkbox list container */
.tour-addon-card ul li:hover {
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 10px;
  transition: background-color 0.3s ease;
}




/*---------------------------------------
TOUR DETAILS    
-----------------------------------------*/
/* Tour Details Section Styles */
.tour-details-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.tour-details-block {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tour-details-top {
  position: relative;
}

.tour-image {
  width: 100%;
  border-bottom: 5px solid #007bff;
  border-radius: 10px 10px 0 0;
}

.tour-category-block {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 123, 255, 0.9);
  padding: 5px 15px;
  border-radius: 5px;
}

.category-block-link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.tour-details-info {
  padding: 20px;
}

.tour-details-date,
.tour-details-duration,
.tour-details-extra {
  font-size: 14px;
  color: #6c757d;
}

.tour-details-title h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.tour-details-body p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.information-block {
  background: #f7f9fc;
  border: 1px solid #ddd;
}

.information-block h5 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.testimonial-block {
  background: #f7f9fc;
  border-left: 5px solid #007bff;
}

.testimonial-icon {
  font-size: 24px;
}

.testimonial-block p {
  font-size: 16px;
  color: #495057;
}

.testimonial-block small {
  font-size: 14px;
  color: #6c757d;
}

/* Booking Form */
.tour-booking-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tour-booking-form h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.price-info .price {
  font-size: 28px;
  font-weight: bold;
  color: #007bff;
}

.participant-controls .btn {
  width: 30px;
  height: 30px;
  padding: 0;
}

.get-a-question {
  background: #f7f9fc;
  border: 1px solid #ddd;
}

.get-a-question h5 {
  font-size: 18px;
  font-weight: bold;
}

.custom-icon {
  color: #007bff;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .tour-details-block,
  .tour-booking-form {
      margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .tour-details-section {
      padding: 40px 0;
  }

  .tour-details-title h4 {
      font-size: 20px;
  }

  .tour-booking-form h5,
  .testimonial-block h5 {
      font-size: 18px;
  }
}
