/*--------------------------------------------------------------
>>> Navbar Section  
----------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", serif;
  background: #ffffff;
}

.header-top {
  background-color: #ffffff;
  color: white;
}

.header-bottom {
  background-color: #01284F;
}

.logo {
  color: white;
}

.search-bar input {
  border-radius: 20px 0 0 20px;
}

.search-bar .btn {
  border-radius: 0 20px 20px 0;
  background-color: #01284F;
  border-color: #01284F;
  color: #ffffff;
}

.search-bar .btn:hover {
  background-color: #01284F;
  border-color: #01284F;
}

.contact-info {
  font-weight: 500;
  color: #01284F;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  padding: 10px 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #f1c40f !important;
}

.navbar-toggler {
  border-color: #f1c40f;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f1c40f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
  .header-top .container {
    padding: 0 15px;
  }

  .header-top .row:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .logo {
    font-size: 20px;
  }

  .contact-info {
    font-size: 14px;
    margin: 0;
  }

  .search-bar-row {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .search-bar {
    flex-grow: 1;
    margin-right: 10px;
  }

  .search-bar .input-group {
    width: 100%;
  }

  .search-bar input {
    font-size: 14px;
    padding: 6px 12px;
  }

  .search-bar .btn {
    padding: 6px 12px;
  }

  .navbar-toggler {
    padding: 6px 10px;
  }

  .navbar-nav {
    text-align: start;
    background-color: #01284F;
    padding: 10px 0;
  }

  .navbar-nav .nav-link {
    padding: 8px 0;
  }

  .header-top .logo img {
    width: 190px;
  }
}

/* Add any additional styles for the navbar here */
@media (min-width: 768px) and (max-width: 1024px) {

  .navbar-toggler {
    display: none !important;
  }

  .header-top .logo img {
    width: 195px;
  }

  .header-top .contact-info {
    justify-content: flex-end;
    font-size: 14px;
  }

  .search-bar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
  }

  .search-bar {
    flex: 1;
    margin-right: 10px;
  }

  .search-bar .form-control {
    height: 38px;
    font-size: 14px;
  }

  .search-bar .btn {
    padding: 6px 10px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-collapse {
    display: flex !important;
    /* Always show nav on tablets */
    justify-content: center;
  }

  .navbar-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .navbar-nav .nav-link {
    padding: 8px 12px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
>>> Heading & Subheading
----------------------------------------------------------------*/
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #01284F;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
>>> Section Heading
----------------------------------------------------------------*/
.section-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #1a3c34;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 300px;
  height: 4px;
  background: linear-gradient(to right, #ff6f61, #ffb347);
  border-radius: 2px;
}

/*--------------------------------------------------------------
>>> Scrolling Banner & Footer 
----------------------------------------------------------------*/
.scrolling-banner {
  background-color: #f0b400;
  padding: 2px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.footer {
  /* background: #01203F; */
  background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('/images/background/background3.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: #005F8D;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #f1c40f;
  padding-left: 5px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #005F8D;
  transform: translateY(-3px);
}

.newsletter-input {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: black;
}

.newsletter-input:focus {
  border-color: #005F8D;
  box-shadow: none;
}

.btn-subscribe {
  background: #005F8D;
  border: none;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background: #005F8D;
  transform: translateY(-2px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  font-size: 14px;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/*--------------------------------------------------------------
>>> Whatsapp Floating Footer 
----------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  right: 10px;
  bottom: 50px;
  display: flex;
  align-items: center;
  padding: 5px;
  z-index: 1;
}

.whatsapp-float a {
  display: flex;
  margin-left: 4px;
}

/*--------------------------------------------------------------
>>> Blog Home Section  
----------------------------------------------------------------*/
.blog-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
}

.blog-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-image-wrapper {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-image-wrapper:hover .blog-image {
  transform: scale(1.1);
}

.blog-date {
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 5px;
}

.blog-description {
  height: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 15px;
  color: #555;
  margin: 10px 0 15px;
}

@media (max-width: 768px) {
  .blog-image-wrapper {
    height: 250px;
  }

  .blog-title {
    font-size: 20px;
  }

  .blog-description {
    height: 70px;
  }
}

/*--------------------------------------------------------------
>>> Packages Section 
----------------------------------------------------------------*/
:root {
  --primary-color: #005F8D;
  --secondary-color: #01284F;
  --accent-color: #458FC4;
  --text-color: #34495e;
  --light-text: #7f8c8d;
}

.btn-travel-recommended {
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.btn-travel-recommended:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.tour-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tour-card .image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-body {
  padding: 1rem;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.tour-card:hover img {
  filter: brightness(1);
}

.tour-card .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}

.badge-premium {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--accent-color);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.location {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.itinerary-line {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 12px;
}

.tour-meta {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 12px;
}

.duration {
  font-weight: 500;
}

.tour-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.tour-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-details {
  border-top: 1px solid #eee;
  padding-top: 12px;
  margin-top: auto;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
}

.btn-travel-recommended {
  background-color: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.btn-quick-book {
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.btn-quick-book:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .travel-recommended-card-img,
  .tour-card .image-container {
    height: 160px;
  }

  .travel-recommended,
  .location {
    font-size: 1.1rem;
  }

  .price {
    font-size: 1.1rem;
  }


  .btn-travel-recommended,
  .btn-quick-book {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

/*-----------------------------------*\
 * #Promo Card
\*-----------------------------------*/
.promo-card {
  background-color: var(--primary-color);
  color: white;
  border-radius: 12px;
  padding: 20px;
  height: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-card:hover {
  transform: translateY(-5px);
}

.promo-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.promo-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #dfe6e9;
}

.promo-card button {
  background-color: #fff;
  color: var(--primary-color);
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.promo-card button:hover {
  background-color: var(--accent-color);
  color: #fff;
}

#promo-description {
  font-weight: 700;
}


@media (max-width: 768px) {

  .destination-gallery,
  .promo-card {
    height: 160px;
    padding: 10px;
  }

  .destination-gallery h3,
  .promo-card h3 {
    font-size: 1.2rem;
  }

  .promo-card p {
    font-size: 0.9rem;
  }

  .promo-card button {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
>>> Destination Components 
----------------------------------------------------------------*/
.destinationCard {
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)
}

.destinationCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.destinationCard-img-top {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.destinationCard-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.destinationCard-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.destinationCard-text {
  color: #6c757d;
  font-size: 0.9rem;
}

.destinationCard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.destinationCard-package-count {
  color: #01284F;
  font-size: 0.9rem;
  font-weight: 500;
}

.destinationBtn {
  background-color: #01284F;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.destinationBtn:hover {
  background-color: #005F8D;
  color: #fff;
  text-decoration: none;
}

.desticon {
  margin-right: 8px;
}

@media (max-width: 576px) {
  .destinationCard-img-top {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
}

/*-----------------------------------*\
 * #Package Components
\*-----------------------------------*/
.packageCard {
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)
}

.packageCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.packageCard-img-top {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.packageCard-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.packageCard-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.packagesCard-text {
  color: #333536;
  font-size: 0.8rem;
  line-height: 1.5;
}

.packageCard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.packageCard-package-count {
  color: #01284F;
  font-size: 0.9rem;
  font-weight: 500;
}

.packageBtn {
  background-color: #01284F;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.packageBtn:hover {
  background-color: #005F8D;
  color: #fff;
  text-decoration: none;
}

.packicon {
  margin-right: 8px;
}

.package-image-wrapper {
  overflow: hidden;
}

.package-save-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #67A3CD, #458FC4);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .packageCard-img-top {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  .package-save-badge {
    font-size: 12px;
  }
}

/*-----------------------------------*\
 * #css
\*-----------------------------------*/
.full-div-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* .full-div-link:hover .destination-gallery {
  opacity: 0.9;
} */

/* Labels */
#enquiry-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #2c3e50;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

/* Optional: responsive label spacing for small screens */
@media (max-width: 576px) {
  #enquiry-form label {
    font-size: 13px;
    margin-bottom: 4px;
  }
}

@media (min-width: 1200px) {
  .enquiry-form-container {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: 48px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .enquiry-form-container {
    margin-top: -100px;
    position: relative;
    z-index: 10;
  }
}

@media (max-width: 767px) {
  .enquiry-form-container {
    margin-top: 0;
    position: relative;
    z-index: 10;
    padding: 20px;
  }
}

/*--------------------------------------------------------------
>>> About Us Page 
----------------------------------------------------------------*/
.about-section {
  background: #f8f9fa;
}

.about-content .section-title {
  font-weight: 700;
  font-size: 2rem;
  color: var(--dark-color);
}

.about-content .highlight {
  color: var(--primary-color);
}

.about-image img {
  border-radius: 15px;
  transition: transform .3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 80px 0;
  background-image: url('/images/background/background4.jpg');
  background-size: cover;
  background-position: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding-top: 40px;
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-card p {
  color: var(--gray-color);
  line-height: 1.6;
}

/*--------------------------------------------------------------
>>> Contact Page 
----------------------------------------------------------------*/
/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-image {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background: var(--light-color);
  font-weight: 600;
  color: var(--dark-color);
  padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
}

.accordion-button i {
  margin-right: 10px;
  color: var(--primary-color);
}

.accordion-button:not(.collapsed) i {
  color: white;
}

.accordion-body {
  padding: 20px;
}

/*--------------------------------------------------------------
>>> Home Page - Subscribe Section
----------------------------------------------------------------*/
/* Contact Section */
.contact-section {
  padding: 80px 0;
  /* background: #2c3e50; */
  color: #2c3e50;
}

.contact-section .section-title,
.contact-section .section-subtitle {
  color: #2c3e50;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}

.contact-info p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 30px;
  color: #2c3e50;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

.contact-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #2c3e50;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
}

.contact-item p {
  margin-bottom: 0;
  opacity: 1;
}

.newsletter-form {
  background: rgba(82, 120, 226, 0.144);
  border-radius: 12px;
  padding: 30px;
}

.newsletter-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.newsletter-form p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 25px;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #2c3e50;
  color: #2c3e50;
  height: 50px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(59, 86, 238, 0.6);
}

.newsletter-form .btn-primary {
  background: var(--primary-color);
  border: none;
  width: 100%;
  height: 50px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form .btn-primary:hover {
  background: #FF5252;
}

.newsletter-terms {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
>>> Inclusive Includes
----------------------------------------------------------------*/
/* Inclusive Section */
.inclusive-section {
  padding: 80px 0;
  background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
    url('/images/background/background2.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.inclusive-section .section-title,
.inclusive-section .section-subtitle {
  color: white;
}

.inclusive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.inclusive-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.inclusive-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.inclusive-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.inclusive-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.inclusive-item p {
  opacity: 0.9;
}

/*--------------------------------------------------------------
>>> Journey Section
----------------------------------------------------------------*/
/* Journey Section */
.journey-section {
  padding: 80px 0;
  background: var(--light-color);
}

.journey-cards {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 20px 0;
}

.journey-cards::-webkit-scrollbar {
  display: none;
}

.journey-card {
  flex: 0 0 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  position: relative;
}

.journey-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.journey-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
}

.journey-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.journey-content p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/*--------------------------------------------------------------
>>> Testimonials Section
----------------------------------------------------------------*/
/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
    url('/images/background/background1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
  color: white;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: white;
  margin: 20px auto;
}

.testimonials-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 30px;
  padding: 20px 0;
  align-items: stretch;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 350px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* .testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
} */
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 5;   /* Show only 5 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: rgba(255, 255, 255, 0.2);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #f39c12;
  /* Assuming var(--accent-color) is #f39c12 */
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
}

.author-info p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0;
}

/* Bootstrap Carousel Customization for Mobile */
#testimonialsCarousel {
  display: none;
  /* Hidden by default, shown on mobile */
}

.carousel-inner {
  padding: 20px 0;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.carousel-indicators {
  bottom: -40px;
}

.carousel-indicators button {
  background-color: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-indicators .active {
  background-color: white;
}

/* Mobile-specific styles */
@media (max-width: 767.98px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-wrapper {
    position: relative;
  }

  .desktop-slider {
    display: none;
    /* Hide original slider on mobile */
  }

  #testimonialsCarousel {
    display: block;
    /* Show carousel on mobile */
  }

  .testimonial-card {
    max-width: 90%;
    margin: 0 auto;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: block;
  }

  .carousel-indicators {
    display: flex;
  }
}

/* Desktop styles */
@media (min-width: 768px) {
  .desktop-slider {
    display: flex;
  }

  #testimonialsCarousel {
    display: none;
    /* Hide carousel on desktop */
  }
}

/*--------------------------------------------------------------
>>> Destination Gallery
----------------------------------------------------------------*/
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  /* ensures each card has height */
  gap: 20px;
}

.destination-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.destination-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.destination-card.promo {
  grid-column: span 1;
  grid-row: span 1;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.destination-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
}

.destination-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.destination-overlay p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  opacity: 0.8;
}

.destination-rating {
  display: flex;
  align-items: center;
}

.destination-rating i {
  color: var(--accent-color);
  margin-right: 2px;
}

.destination-rating span {
  margin-left: 5px;
  font-weight: 600;
}

.destination-card.promo .promo-content h3 {
  font-size: 1.3rem;
}

.destination-card.promo .promo-badge {
  font-size: 0.7rem;
  padding: 3px 10px;
}

.destination-card.promo .countdown-value {
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.promo-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.promo-badge {
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  /* margin-bottom: 15px; */
}

.promo-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  padding-top: 8px;
}

.promo-countdown {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.countdown-item {
  text-align: center;
  margin: 0 10px;
}

.countdown-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin: 0 auto 5px;
}

.countdown-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.promo-content .btn {
  background: white;
  color: var(--primary-color);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.promo-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .destination-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .destination-card.promo {
    grid-column: span 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-card.featured {
    grid-column: span 1;
  }

  .destination-card.promo {
    grid-column: span 1;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .destination-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .destination-card {
    height: 250px;
    /* ensures background image area */
  }
}

/*--------------------------------------------------------------
>>> Special Offers
----------------------------------------------------------------*/
/* Special Offers */
.special-offers {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  /* background-color: #174B45; */
  padding: 40px 0;
  color: white;
}

.offers-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.offer-item {
  display: flex;
  align-items: center;
  width: 23%;
  margin-bottom: 20px;
}

.offer-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.5rem;
}

.offer-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.offer-content p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .offers-container {
    justify-content: center;
  }

  .offer-item {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .offer-item {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .offer-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-right: 10px;
  }

  .offer-content h4 {
    font-size: 1rem;
  }

  .offer-content p {
    font-size: 0.85rem;
  }
}