/* =============== Banner Section Start ====================== */

/* Banner Styling */
.inner-banner-section {
  background: url("../all-images/images/carousel-img/breacrumb-img-1.png") center/cover no-repeat;
  padding: 140px 0 100px;
  position: relative;
  text-align: center;
}

.inner-banner-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 28, 0.55);
}

.inner-banner-section .container {
  position: relative;
  z-index: 2;
}

.inner-banner-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--white-color);
  text-transform: uppercase;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 18px;
  color: var(--white-color);
  text-align: center !important;
  justify-content: center;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

/* Booking Section */
.booking-section {
  background: #f9f9f9;
  padding: 80px 0;
}

.booking-container {
  background: var(--white-color);
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  justify-content: center;
  background: var(--secondary-color);
}

.tab-buttons button {
  border: none;
  background: transparent;
  color: #fff;
  padding: 12px 30px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.tab-buttons button.active,
.tab-buttons button:hover {
  background: var(--primary-color);
}

.form-content {
  padding: 25px;
  display: none;
  animation: fadeIn 0.4s ease;
}

.form-content.active {
  display: block;
}

.form-label {
  font-weight: 600;
  color: var(--secondary-color);
}

.search-btn {
  background: var(--button-background-color);
  color: #fff;
  font-weight: 700;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  transition: 0.3s;
}

.search-btn:hover {
  background: var(--secondary-color);
}

@media (max-width: 768px) {
  .inner-banner-title {
    font-size: 32px;
  }
}


/* =============== Banner Section End ====================== */

/* =============== Our Mission & Vission Section Start ====================== */


/* Section styling */
.mission-vision-section {
  position: relative;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white-color);
  padding: 50px 0;
  overflow: hidden;
}

/* Overlay design */
.mission-vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1610375489722-b587ca49b28c?auto=format&fit=crop&w=1500&q=80") center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.section-title-heading {
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
  position: relative;
  color: var(--white-color);
}

/* Cards */
.mission-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  color: #fff;
  z-index: 2;
  position: relative;
}

.mission-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mission-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.mission-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.mission-card p {
  color: #f3f3f3;
  line-height: 1.8;
  font-size: 1rem;
}

/* Responsive spacing */
@media (max-width: 992px) {
  .mission-card {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* =============== Our Mission & Vission Section End ====================== */

/* =============== Our Features Section Start ====================== */

.features-section {
  padding: 50px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Section Title */
.features-title {
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.features-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Card Styling */
.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Gradient Overlay */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: all 0.4s ease;
  z-index: 1;
  border-radius: 20px;
}

.feature-card:hover::before {
  width: 100%;
}

/* Bottom Gradient Line */
.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  z-index: 3;
  /* above the overlay */
  transition: all 0.4s ease;
}

.feature-card:hover::after {
  height: 6px;
  /* optional thicker line on hover */
}

/* Card Hover Lift */
.feature-card:hover {
  transform: translateY(-8px);
}

/* Icon */
.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.feature-card:hover i {
  color: #fff;
  /* icon white on hover */
}

/* Heading */
.feature-card h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.feature-card:hover h5 {
  color: #fff;
  /* heading white on hover */
}

/* Paragraph */
.feature-card p {
  font-size: 0.95rem;
  color: #555;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.feature-card:hover p {
  color: #fff;
  /* content white on hover */
}

/* Responsive */
@media (max-width: 992px) {
  .features-title {
    font-size: 2rem;
  }

  .feature-card {
    margin-bottom: 30px;
  }
}


/* Copyright Section */
.copyright-section {
  background-color: #f8f9fa;
}

.copyright-section .section-title {
  font-family: "Libre Baskerville", serif;
  font-size: 1.8rem;
  color: var(--secondary-color);
  position: relative;
}

.copyright-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin-top: 10px;
  border-radius: 2px;
}

.copyright-section .section-text {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

.copyright-button {
  background-color: var(--primary-color);
  padding: 10px;
  text-decoration: none;
  color: var(--white-color);
  border-radius: 6px;
}

/* Responsive Adjustment */
@media (max-width: 768px) {
  .copyright-section .section-title {
    text-align: center;
  }

  .copyright-section .section-text {
    text-align: center;
  }
}