  /* Reset & Base */
  * {
   /* margin: 0; */

   /* padding: 0; */
    box-sizing: border-box;
  }
  body {
    font-family: "Poppins", sans-serif;
    background: #fff;
  }
  h1,h2,h3,h4,h5,h6{margin:10px 0;}

  /* === ROOT COLORS (Orange + Blue Theme) === */
:root {
  --primary-orange: #ff6b35;   
  --primary-blue: #001d5a; 
  --dark-blue: #00277d;  
  --light-bg: #fff8f5;     
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --border-accent: #ff6b35;
  --whatsapp-green: #25D366;     /* Official WhatsApp Green */
  --whatsapp-dark: #128C7E;      /* Hover Dark Green */
}
/* Button Styles */
.button {
  background: var(--primary-orange);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.button:hover {
  background: var(--primary-blue);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
}
/* ===============================
       NAVBAR
    ================================= */
    .nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;            /* space between icon and logo */
  text-decoration: none;
}

/* Car Icon */
.nav-logo i {
  font-size: 28px;
  color: #efc343;      /* change color as you like */
}

/* Logo Image */
.nav-logo img {
  height: 50px;        /* adjust size */
  width: auto;
  display: block;
}

/* Optional: Navbar container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
    .travel-navbar {
      background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 2px solid var(--primary-orange);
    }
    .navbar-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 30px;
      height: 80px;
    }

    /* Logo */
    .nav-logo a {
      color: var(--text-dark);
      font-size: 28px;
      font-weight: 700;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo i {
      color: var(--primary-orange);
      font-size: 36px;
    }

    /* Desktop Menu */
    .nav-menu {
      display: flex;
      gap: 35px;
      align-items: center;
    }
    .nav-menu > li {
      position: relative;
      list-style: none;
    }
    .nav-menu > li > a {
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      padding: 10px 0;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.3s;
    }
    .nav-menu > li > a:hover {
      color: var(--primary-blue);
    }
    .nav-menu > li > a i {
      font-size: 12px;
      transition: transform 0.3s;
    }
    .nav-menu > li:hover > a i {
      transform: rotate(180deg);
    }

    /* Simple Dropdown */
    .dropdown {
      position: absolute;
      top: 100%;
      left: 105%; 
      transform: translateX(-50%);
      background: var(--white);
      min-width: 250px;
      border-radius: 12px;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
      padding: 15px 0;
      display: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      margin-top: 10px;
      border: 1px solid #ffe0d0;
      z-index: 1001;
    }
    .nav-menu > li:hover .dropdown {
      display: block;
      opacity: 1;
      visibility: visible;
      margin-top: 0;
    }
    .dropdown a {
      display: block;
      padding: 10px 20px;
      color: var(--text-light);
      text-decoration: none;
      font-size: 14.5px;
      transition: all 0.3s;
    }
    .dropdown a:hover {
      background: #fff0e6;
      color: var(--primary-orange);
      padding-left: 25px;
    }

    /* Enquiry Icon */
.enquiryBtn {
  /* background: var(--primary-orange); */
  background:#0d9175;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
  gap: 8px; /* space between icon and text */
}

.enquiryBtn:hover {
  background: var(--primary-blue);
  transform: scale(1.05); /* slight scale */
  font-size: 17px; /* optional smooth font increase */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Optional: make sure icon size is consistent */
.enquiryBtn i {
  font-size: 20px; /* keep icon size fixed */
}


    /* Mobile Toggle */
    .mobile-toggle {
      display: none;
      color: var(--text-dark);
      font-size: 26px;
      cursor: pointer;
    }

    /* Mobile Sidebar */
    .mobile-sidebar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 300px;
      height: 100vh;
      background: var(--white);
      padding: 30px;
      transition: left 0.4s ease;
      z-index: 2000;
      overflow-y: auto;
      border-right: 3px solid var(--primary-orange);
    }
    .mobile-sidebar.active {
      left: 0;
    }
    .mobile-sidebar .logo {
      color: var(--text-dark);
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .mobile-sidebar ul {
      list-style: none;
    }
    .mobile-sidebar ul li {
      border-bottom: 1px solid #ffe0d0;
    }
    .mobile-sidebar ul li a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      color: var(--text-dark);
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
    }
    .submenu a {
      padding-left: 25px !important;
      font-size: 15px !important;
      font-weight: 400 !important;
    }
    .submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .submenu.active {
      max-height: 600px;
    }
/* Close icon for mobile sidebar */
#mobileSidebar .close-sidebar {
  position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 1001;
    background: #ff4500;
    border-radius: 50%;
    width: 35px;
    align-items: center;
    text-align: center;
    color: #fff;
}

/* Close icon for mobile sidebar */
#mobileSidebar .close-sidebar {
  position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 1001;
    background: #ff4500;
    border-radius: 50%;
    width: 35px;
    align-items: center;
    text-align: center;
    color: #fff;
}
    /* Backdrop */
    .backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 1999;
    }
    .backdrop.active {
      opacity: 1;
      visibility: visible;
    }

    /* Enquiry Popup */
    .enquiry-popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      background: white;
      width: 400px;
      max-width: 90%;
      border-radius: 18px;
      padding: 30px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      z-index: 2001;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
    }
    .enquiry-popup.active {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
      visibility: visible;
    }
    .popup-header {
      text-align: center;
      margin-bottom: 20px;
    }
    .popup-header h3 {
      color: var(--text-dark);
      font-size: 22px;
      margin-bottom: 8px;
    }
    .popup-header p {
      color: var(--text-light);
      font-size: 14px;
    }
    .form-group {  /* margin-bottom: 18px; */  }
    .form-group label {
      display: block;
      /* margin-bottom: 6px; */
      font-weight: 600;
      color: var(--text-dark);
    }
    .form-group input {
      width: 100%;
      padding: 14px;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      font-size: 15px;
      transition: all 0.3s;
    }
    .form-group input:focus {
      outline: none;
      border-color: var(--primary-orange);
      box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    }
    .submit-btn {
      width: 100%;
      background: var(--primary-orange);
      color: white;
      padding: 14px;
      border: none;
      border-radius: 50px;
      font-size: 17px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    .submit-btn:hover {
      background: var(--primary-blue);
    }
    .close-popup {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 35px;
      height: 35px;
      background: #f0f0f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      color: #888;
      transition: all 0.3s;
    } 
    .close-popup:hover {
      background: #ff6b35;
      color: white;
    }  
 
    /* Responsive */
    @media (max-width: 992px) {
      .nav-menu {
        display: none;
      }
      .mobile-toggle {
        display: block;
      }
      .navbar-inner {
        padding: 0 20px;
      }
    }
/* Banner Slider */
.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slides-container {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}
.slide {
  flex: 0 0 100%;
  position: relative;
}
.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  padding: 20px;
  text-align: center;
  /* background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(0, 123, 255, 0.7)); */
}
.overlay h1 {
  margin-bottom: 10px;
  font-size: 2.8rem;
  font-weight: 700;
}
.overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.overlay a {
  text-decoration: none;
  background: var(--primary-orange);
  padding: 14px 30px;
  color: var(--white);
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}
.overlay a:hover,
.overlay a:focus {
  background: var(--primary-blue);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.dots span {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.dots span.active {
  background: var(--primary-orange);
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  z-index: 2;
}
.arrow:hover,
.arrow:focus {
  background: var(--primary-orange);
}
.arrow.left {
  left: 15px;
}
.arrow.right {
  right: 15px;
}

@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2.2rem;
  }
  .overlay p {
    font-size: 1rem;
  }
  .overlay a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .arrow {
    font-size: 1.5rem;
    padding: 8px;
  }
}
@media (max-width: 480px) {
  .overlay h1 {
    font-size: 1.8rem;
  }
  .overlay p {
    font-size: 0.9rem;
  }
  .overlay {
    padding: 10px;
  }
  .dots span {
    width: 8px;
    height: 8px;
  }
  .arrow {
    font-size: 1.2rem;
    padding: 6px;
  }
}
/* About Section */
.about-section {
  padding: 100px 0; /* top space increased */
  background: var(--light-bg);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Background image at bottom */
.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px; /* adjust image visibility */
  background-image: url("images/package/about-bg.png"); /* <-- your image here */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain; /* keeps quality */
  opacity: 0.35; /* light transparent feel */
  pointer-events: none;
}

.about-container {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 25px;
}

/* Titles + Text same */
.small-title {
  color: var(--primary-orange);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  max-width: 1400px;
}

.readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-orange);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 17px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.readmore-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
  }

  .about-section {
    padding: 60px 0 80px;
  }

  .about-section::after {
    height: 160px;
    background-size: contain;
    opacity: 0.28;
  }
}


/* ===============================
   CUSTOMER SUPPORT SECTION
=================================*/
.customer-support {
  /* background:#ffdecf; */
  padding: 60px 0;
}

.customer-support-section {
  overflow: hidden;
}

.customer-support-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  padding: 0 30px;
  transition: transform 0.3s ease;
}

.customer-support-card {
  background: linear-gradient(135deg, #ff8c5a, var(--primary-orange));
  color: var(--white);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.customer-support-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 45px rgba(255, 107, 53, 0.35);
  background: linear-gradient(135deg, #ff7a3d, #e65c00);
}

.customer-support-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
  transition: transform 0.5s ease;
}

.customer-support-card:hover .customer-support-icon img {
  transform: translateY(-14px) scale(1.1);
}

.customer-support-content h3 {
  font-size: 1.3rem;
  margin: 0 0 14px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.customer-support-content p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.96;
}

/* Tablet */
@media (max-width: 992px) {
  .customer-support-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }
}

/* Mobile Carousel View */
@media (max-width: 600px) {
  .customer-support {
    padding: 35px 0;
  }

  .customer-support-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 18px;
    padding: 18px;
    gap: 22px;
    -webkit-overflow-scrolling: touch;
  }

  .customer-support-card {
    flex: 0 0 80%;
    max-width: 80%;
    min-width: 275px;
    scroll-snap-align: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px;
  }

  .customer-support-icon img {
    width: 55px;
    height: 55px;
    margin-bottom: 14px;
  }

  .customer-support-content h3 {
    font-size: 1.2rem;
  }

  .customer-support-content p {
    font-size: 0.95rem;
  }

  .customer-support-track::-webkit-scrollbar {
    display: none;
  }
}

/* ===============================
   BOOKING ENQUIRY SECTION
=================================*/
.booking-enquiry {
  position: relative;
  background: url("images/bg-rajasthan-cab.webp") center/cover no-repeat;
  padding: 110px 0;
  color: #fff;
}

.booking-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.85), rgba(0, 123, 255, 0.75));
  backdrop-filter: blur(3px);
}

.booking-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
}

/* LEFT CONTENT */
.booking-left h1 {
  /* font-size: 50px; */
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 3px 3px 15px rgba(0,0,0,0.6);
  color: var(--white);
}

.booking-left .subtitle {
  font-size: 19px;
  margin-top: 18px;
  margin-bottom: 28px;
  opacity: 0.95;
  color: #f0f0f0;
}

.simple-title {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 700;
  color: #ffd1b3;
}

.booking-points {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.booking-points li {
  font-size: 18px;
  margin: 14px 0;
  padding-left: 8px;
  color: #fff;
}

.booking-points li::before {
  color: #ffddb3;
  font-weight: bold;
  margin-right: 14px;
  font-size: 20px;
}
.booking-points li i {
  color: #002d5e; /* Blue Color */
  background-color: #ff6b35;
  border-radius: 50%;
  padding: 8px;
}

.experience-text {
  font-size: 18px;
  margin-top: 25px;
  font-style: italic;
  opacity: 0.92;
  color: #ffe6d1;
}

/* RIGHT FORM */
.booking-right {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  color: #333;
  border: 3px solid var(--primary-orange);
}

.booking-form .form-row {
  display: flex;
  gap: 5px;
}

.booking-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.booking-form label {
  font-size: 15.5px;
  /* margin-bottom: 9px; */
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 8px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 17px;
  border-radius: 14px;
  border: 2.5px solid #eaeaea;
  background: #fdfdfd;
  font-size: 16.5px;
  transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #f8fbff;
  box-shadow: 0 0 0 6px rgba(0, 123, 255, 0.18);
}

.booking-form textarea {
  height: 140px;
  resize: none;
}

.booking-btn {
  width: 100%;
  background: var(--primary-orange);
  color: #fff;
  padding: 20px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.booking-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0, 123, 255, 0.45);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .booking-left {
    text-align: center;
  }

  .booking-left h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .booking-enquiry {
    padding: 75px 0;
  }

  .booking-left h1 {
    font-size: 35px;
  }

  .booking-right {
    padding: 38px 28px;
  }

  .booking-form .form-row {
    flex-direction: column;
  }

  .booking-btn {
    padding: 18px;
    font-size: 18.5px;
  }
}
/* ================================
   TOUR PACKAGE SECTION
================================ */
.tour-package-section {
  width: 100%;
  text-align: center;
  padding: 30px 0;
  background: var(--light-bg);
}

.tour-package-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.tour-package-heading span {
  color: #ef8803;
  font-weight: 800;
}

.tour-package-subtext {
  max-width: 780px;
  margin: 0 auto 45px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

/* SLIDER */
.tour-package-slider-container {
  position: relative;
  width: 92%;
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.tour-package-slider {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
  padding: 12px 0;
}

/* CARD */
.tour-package-card {
  min-width: 300px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
  transition: all 0.4s ease;
  background: var(--white);
}

.tour-package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(255, 107, 53, 0.25);
}

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

.tour-package-card:hover img {
  transform: scale(1.06);
}

/* OVERLAY */
.tour-package-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent);
  color: var(--white);
  text-align: left;
}

.tour-package-overlay h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tour-package-stars {
  margin-top: 10px;
  color: var(--gold-star);
  font-size: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* ARROWS */
.tour-package-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 6px 16px;
  font-size:32px;
  cursor: pointer;
  background: var(--white);
  color: var(--primary-orange);
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: all 0.3s ease;    width: 55px;
}

.tour-package-arrow:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.tour-package-prev { left: 18px; }
.tour-package-next { right: 18px; }

/* MOBILE */
@media (max-width: 768px) {
  .tour-package-slider { gap: 16px; }
  .tour-package-card { min-width: 270px; }
  .tour-package-arrow { padding: 12px 14px; font-size: 26px; }
  .tour-package-prev { left: 10px; }
  .tour-package-next { right: 10px; }
}

/* ================================
   DAY TOUR SECTION
================================ */
.day_tour-section {
  padding: 15px 0;
  background: #e58f0c;
}

.day_tour-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.day_tour-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--text-dark);
  max-width: 920px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* WRAPPER */
.day_tour-slider-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* 🔥 GRID LAYOUT (MAIN FIX) */
.day_tour-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
  gap: 28px;
}

/* CARD DESIGN */
.day_tour-card {
  width: 100%;
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.11);
  transition: all 0.4s ease;
  border: 1px solid #f3f3f3;
}

.day_tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 42px rgba(255, 107, 53, 0.22);
  border-color: var(--primary-orange);
}

/* IMAGE */
.day_tour-img-box {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.day_tour-img-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.day_tour-card:hover .day_tour-img-box img {
  transform: scale(1.08);
}

/* TEXT */
.day_tour-card-title {
  font-size: 19px;
  font-weight: 600;
  margin: 16px 0 10px;
  color: var(--text-dark);
}

.day_tour-days,
.day_tour-route {
  font-size: 12.5px;
  color: var(--text-light);
}

/* FEATURES */
.day_tour-features-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 16px 0;
  font-size: 13px;
  color: #444;
}

.day_tour-features-left,
.day_tour-features-right {
  width: 50%;
}

/* FOOTER */
.day_tour-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BUTTONS */
.day_tour-price-btn {
  background: var(--primary-orange);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.day_tour-price-btn:hover {
  background: var(--primary-blue);
}

/* 🔥 RESPONSIVE GRID */
@media (max-width: 1024px) {
  .day_tour-slider {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

@media (max-width: 768px) {
  .day_tour-slider {
    grid-template-columns: repeat(1, 1fr); /* 1 per row */
  }
}
/* ===============================
   RCS SERVICE SECTION
=================================*/
.RCS-section {
  background: var(--light-bg);
  padding: 70px 0;
}

.RCS-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

/* Title */
.RCS-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.RCS-title span {
  color: var(--primary-orange);
}

.RCS-subtitle {
  max-width: 880px;
  margin: 0 auto 35px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 16px;
}

/* Tabs */
.RCS-tabs {
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  display: inline-flex;
  gap: 28px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
  margin-bottom: 45px;
  border: 1px solid #ffe0d0;
}

.RCS-tab {
  background: transparent;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.RCS-tab:hover {
  background: #ffe0d0;
  color: var(--primary-orange);
}

.RCS-tab.active {
  background: var(--primary-orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
}

/* Card Grid */
.RCS-cards {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.RCS-cards.active {
  display: grid;
}

/* Cards */
.RCS-card {
  background: var(--white);
  border-radius: 16px;
  padding-bottom: 18px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}

.RCS-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 35px rgba(255, 107, 53, 0.22);
  border-color: var(--primary-orange);
}

.RCS-card img {
  width: 100%;
  /* height: 190px; */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.RCS-card:hover img {
  transform: scale(1.06);
}

.RCS-card h4 {
  padding: 15px 18px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 992px) {
  .RCS-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .RCS-tabs {
    gap: 18px;
    padding: 8px;
  }

  .RCS-tab {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .RCS-section {
    padding: 50px 0;
  }

  .RCS-title {
    font-size: 28px;
  }

  .RCS-subtitle {
    font-size: 15px;
  }

  .RCS-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px;
    justify-content: center;
  }

  .RCS-tab {
    padding: 9px 16px;
    font-size: 13.5px;
  }

  .RCS-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .RCS-card h4 {
    font-size: 16.5px;
  }
}
/* ============================================
   ATTRACTIVE DARK FOOTER – CUSTOM THEME
============================================ */
.footer-section {
  background: linear-gradient(145deg, #0d1117, #111827);
  padding: 70px 20px 0;
  border-top: 3px solid #ff6b35;
  color: #dbe4f3;
  backdrop-filter: blur(8px);
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  padding-bottom: 50px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Logo */
.footer-logo img {
  width: 120px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255,107,53,0.35));
}
.footer-logo p {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 15px;
}

/* Social Icons */
.footer-social a {
  font-size: 24px;
  margin-right: 16px;
  color: #ff6b35;
  transition: 0.3s ease;
}
.footer-social a:hover {
  color: #ffaa85;                   
  transform: translateY(-4px) scale(1.12);
}

/* Headings */
.footer-heading {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ff6b35;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 45px;
  height: 3px;
  background: #ff6b35;
  border-radius: 2px;
}

/* Links */
.footer-links li { 
  list-style: none; 
  margin-bottom: 12px; 
}
.footer-links a {
  color: #cdd4e4;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: 0.35s ease;
  text-decoration: none;
}

/* Right arrow */
.footer-links a::before {
  content: "→";
  color: #ff6b35;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b35;
  padding-left: 8px;
}
.footer-links a:hover::before {
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 14.5px;
  color: #cfd8e5;
  padding-top: 10px;
  padding-bottom: 70px;
  backdrop-filter: blur(6px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 20px 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px 40px;
  }

  .footer-heading {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }

  .footer-accordion .accordion-icon::before {
    content: "+";
    font-size: 22px;
    color: #ff6b35;
    display: block;
  }
  .footer-accordion.active .accordion-icon::before {
    content: "-";
  }

  .footer-accordion .footer-links {
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .footer-accordion.active .footer-links { max-height: 420px; }

  .footer-bottom {
    padding: 15px 0;
    font-size: 13px;
  }
}


/* ===============================
   FLOATING BUTTONS
=================================*/
.floating-buttons {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  z-index: 999;
}

.floating-buttons a {
  width: 3.4375rem;
  height: 3.4375rem;
  background: #25d366;                     /* WhatsApp green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 12px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.floating-buttons .call-button {
  background: #f97316;                     /* orange for call */
  box-shadow: 0 5px 12px rgba(255, 107, 53, 0.35);
}

.floating-buttons a:hover,
.floating-buttons a:focus {
  transform: scale(1.15);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* Mobile tweak */
@media (max-width: 600px) {
  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }
  .floating-buttons a {
    width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
  }
}

/* ===============================
   FLOATING BUTTONS
=================================*/
.floating-buttons {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  z-index: 999;
}

.floating-buttons a {
  width: 3.4375rem;
  height: 3.4375rem;
  background: #25d366;                     /* WhatsApp green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 12px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.floating-buttons .call-button {
  background: #f97316;                     /* orange for call */
  box-shadow: 0 5px 12px rgba(255, 107, 53, 0.35);
}

.floating-buttons a:hover,
.floating-buttons a:focus {
  transform: scale(1.15);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* Mobile tweak */
@media (max-width: 600px) {
  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }
  .floating-buttons a {
    width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
  }
}

/* ===============================
   SCROLL TO TOP BUTTON
=================================*/
.scroll-top-btn {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 3.125rem;
  height: 3.125rem;
  background: #1e293b;                     /* dark slate */
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
}

.scroll-top-btn:hover,
.scroll-top-btn:focus {
  background: #fbbf24;                     /* gold on hover */
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* Mobile tweak */
@media (max-width: 600px) {
  .scroll-top-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
}

/* =================================== */
/* BLOGS SECTION - ORANGE + BLUE THEME */
/* =================================== */
.blog-section {  
  background: #ffdbcc;
  padding: 20px 0;
  text-align: center;
}

.blog-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.blog-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 5px;
  background: var(--primary-orange);
  border-radius: 3px;
}

.blog-subtitle {
  font-size: 16.5px;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.09);
  transition: all 0.5s ease;
  text-align: left;
  border: 1px solid #eee;
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 7px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card:hover {
  transform: translateY(-14px);
  border-color: var(--primary-orange);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.18);
}

.blog-img -wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #fff8f0;
}

.blog-img {
  width: 100%;
  */ height: 100%; */
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.12);
}

.blog-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 45px;
  z-index: 2;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.22));
}

.blog-content {
  padding: 22px;
}

.blog-meta {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.blog-meta i {
  color: var(--primary-orange);
  font-size: 0.95rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-dark);
}

.blog-card-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
  
.blog-read-more {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease;
  margin-top: 10px;
  text-decoration: none;
}

.blog-read-more:hover {
  color: var(--primary-orange);
  gap: 12px;
}

.blog-read-more i {
  font-size: 1.15rem;
  transition: transform 0.4s ease;
}

.blog-read-more:hover i {
  transform: translateX(6px);
}

/* Blog Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .blog-section {
    padding: 10px 0;
  }

  .blog-title {
    font-size: 30px;
  }

  .blog-subtitle {
    font-size: 15px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-img-wrapper {
    height: 180px;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-card-title {
    font-size: 1.15rem;
  }
}

/* testimonail section  */
/* Section */
.testimonial-section {
    width: 100%;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.testimonial-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}
/* Titles */
.testimonial-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-subtitle {
    color: #777;
    margin-bottom: 40px;
}

/* Carousel container */
.testimonial-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* Card Style */
.testimonial-card {
    flex: 0 0 auto; /* prevents shrinking */
    width: 100%;
    max-width: 420px;
    background: #F8F9FA;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.1);
    border: 1px solid rgb(198, 198, 198);
}


/* Quote icon */
.testimonial-quote {
    font-size: 40px;
    color: #008037;
}

/* Stars */
.testimonial-stars {
    font-size: 18px;
    color: #FFC107;
}

.testimonial-stars span {
    color: #000;
    font-size: 16px;
}

/* Text */
.testimonial-text {
    margin-top: 10px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* User section */
.testimonial-user {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.testimonial-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-location {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* Dots */
.testimonial-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial-dots span {
    height: 10px;
    width: 10px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
}

.testimonial-dots .active {
    background: #008037;
}

/* Container for fixed buttons */
.fixed-buttons {
  position: fixed;
  bottom: 20px; /* Margin from bottom */
  left: 50%;
  transform: translateX(-50%); /* Center horizontally */
  z-index: 9999; /* On top of all elements */
  display: flex;
  justify-content: center;
  gap: 15px; /* Space between buttons */
  flex-wrap: wrap; /* Wrap on small screens if needed */
}

/* Common button styles */
.fixed-buttons .btn {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between icon and text */
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease; /* Smooth hover effect for all properties */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow */
}

/* Send Enquiry Button */
.fixed-buttons .btn-enquiry {
  background-color: #007bff;
}

.fixed-buttons .btn-enquiry:hover {
  background-color: #0056b3;
  transform: scale(1.05); /* Slight zoom effect */
}

/* WhatsApp Button */
.fixed-buttons .btn-whatsapp {
  background-color: #25d366;
}

.fixed-buttons .btn-whatsapp:hover {
  background-color: #128c7e;
  transform: scale(1.05); /* Slight zoom effect */
}

/* Icon size */
.fixed-buttons .btn i {
  font-size: 20px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .fixed-buttons {
    bottom: 10px;
    gap: 10px;
  }

  .fixed-buttons .btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .fixed-buttons .btn i {
    font-size: 18px;
  }
}

/* faq section  */
.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0f4ff, #e6ecff);
}
 
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 40px;
  position: relative;
}

.faq-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: var(--primary-orange);
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* --- FAQ BOX --- */
.faq-box {
  background: #ffffff;
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  border-left: 5px solid var(--primary-orange);
  transition: all 0.3s ease;
}

.faq-box.active {
  border-left: 5px solid var(--primary-blue);
  transform: translateY(-3px);
}

/* Question Row */
.faq-question {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-blue);
}

.faq-icon {
  font-size: 26px;
  color: var(--primary-orange);
  font-weight: bold;
  transition: 0.3s;
}

/* Active icon rotation */
.faq-box.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-blue);
}

/* Answer Area */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin: 16px 0;
}

/* Hover effect */
.faq-box:hover {
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
  .faq-title {
    font-size: 28px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
}


/* === ROOT COLORS (Orange + Blue Theme) === */
:root {
  --primary-orange: #ff6b35;
  --primary-blue: #001d5a;
  --dark-blue: #00277d;
  --light-bg: #fff8f5;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --border-accent: #ff6b35;
  --whatsapp-green: #25D366;  
  --whatsapp-dark: #128C7E;
}

/* ------------------- ABOUT BANNER ------------------- */
.about-banner {
    width: 100%;
    height: 300px;
    background-image: url('images/about/about-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-banner .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 29, 90, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.about-banner h1 {
    font-size: 40px;
    margin: 0;
    color: var(--white);
}

.about-banner p {
    font-size: 18px;
    margin-top: 10px;
    color: var(--white);
}

/* ------------------- ABOUT CONTENT ------------------- */
.about-content-section {
    width: 100%;
    padding: 60px 8%;
    font-family: 'Poppins', sans-serif;
}

.about-content-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.about-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* LEFT IMAGES */
.about-content-images {
    position: relative;
    width: 380px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.about-content-img-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
}

/* EXPERIENCE CIRCLE */
.about-content-experience-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #ef8803;
    color: var(--white);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    text-align: center;
    padding-top: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-content-experience-circle span {
    font-size: 26px;
    font-weight: 700;
}

.about-content-experience-circle p {
    font-size: 11px;
    margin-top: 4px;
}

/* RIGHT CONTENT */
.about-content-text {
    flex: 1;
}

.about-content-small-title {
    color: #ef8803;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.about-content-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.about-content-text p {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* BUTTONS */
.about-content-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.about-content-btn {
    padding: 12px 22px;
    border-radius: 30px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about-content-btn.yellow { background: #ef8803; }
.about-content-btn.green { background: var(--primary-blue); }

.about-content-btn:hover {
    opacity: 0.9;
}

/* ------------------- ABOUT OWNER ------------------- */
.about-owner-section {
    width: 100%;
    padding: 70px 8%;
    font-family: 'Poppins', sans-serif;
}

.about-owner-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-owner-left,
.about-owner-right {
    flex: 1;
    min-width: 280px; /* for responsive */
}

.about-owner-small-title {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.about-owner-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.about-owner-left p {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-owner-subheading {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* OWNER IMAGE */
.about-owner-right img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ------------------- WHY CHOOSE US ------------------- */
.whychoose-section {
    width: 100%;
    padding: 60px 8%;
    background: var(--light-bg);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.whychoose-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.whychoose-title span {
    color: #ef8803;
}

.whychoose-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Cards */
.whychoose-card {
    text-align: left;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.whychoose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Icons */
.whychoose-icon {
    font-size: 38px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.whychoose-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.whychoose-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* ------------------- RESPONSIVE ------------------- */
@media screen and (max-width: 1024px) {
    .about-content-wrapper, 
    .about-owner-container {
        flex-direction: column;
    }
    
    .about-content-images {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .whychoose-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .about-content-section,
    .about-owner-section,
    .whychoose-section {
        padding: 50px 5%;
    }

    .about-banner h1 {
        font-size: 32px;
    }

    .about-banner p {
        font-size: 16px;
    }

    .about-content-heading {
        font-size: 24px;
    }

    .about-owner-title {
        font-size: 24px;
    }

    .whychoose-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    .whychoose-container {
        grid-template-columns: 1fr;
    }

    .about-content-images {
        grid-template-columns: 1fr;
    }

    .about-content-experience-circle {
        width: 90px;
        height: 90px;
        padding-top: 18px;
    }

    .about-content-experience-circle span {
        font-size: 22px;
    }

    .about-content-experience-circle p {
        font-size: 10px;
    }

    .about-content-heading,
    .about-owner-title {
        font-size: 20px;
    }

    .whychoose-title {
        font-size: 24px;
    }
}

.Car-Rental-banner-section {
    width: 100%;
    padding: 125px 10px;
    background: url("images/back_pages.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Dark overlay */
.Car-Rental-banner-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

/* Main Container */
.Car-Rental-banner-container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Form Box */
.Car-Rental-banner-form-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.Car-Rental-banner-form-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary);
}

.Car-Rental-banner-form-box p {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
}

.Car-Rental-banner-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.Car-Rental-banner-row input {
    width: calc(50% - 5px);
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.Car-Rental-banner-form textarea {
    width: 100%;
    height: 110px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: none;
    margin-bottom: 15px;
}

.Car-Rental-banner-form button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.4s;
    background: #0d9175;
}

.Car-Rental-banner-form button:hover {
    background: #0d9175;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251,207,76,0.4);
}

.Car-Rental-banner-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
    z-index: 12;
}

.Car-Rental-banner-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    transition: all 0.6s ease;
}

.Car-Rental-banner-image::after {
    position: absolute;
    top: 20px;
    right: 10px;
    background: var(--accent);
    color: #000;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(251,207,76,0.5);
    z-index: 15;
    animation: float 4s ease-in-out infinite;
}

.Car-Rental-bottom-car {
    position: absolute;
    bottom: 0;
    right: 0PX;
    width: 45%;
    max-width: 650px;
    z-index: 11;
    pointer-events: none;
}

.Car-Rental-bottom-car img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    transform: translateY(20px);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@media (max-width: 900px) {
    .Car-Rental-banner-container {
        /* flex-direction: column !important;  */
        text-align: center;
        gap: 50px;
    }
    .Car-Rental-banner-image::after {
        top: 15px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        font-size: 13px;
        padding: 10px 18px;
    }

    .Car-Rental-bottom-car {
        display: block;
    }
}

@media (max-width: 600px) {
      .Car-Rental-bottom-car {
        width: 80%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        left: -75px;
    }

    .Car-Rental-bottom-car img {
        margin-right: 20px; 
        float: left;        
    }
    .Car-Rental-banner-row {
        flex-direction: column;
    }
    .Car-Rental-banner-row input {
        width: 100%;
    }
    
    .Car-Rental-banner-form-box {
        padding: 25px 20px;
    }
    
    .Car-Rental-banner-form-box h2 {
        font-size: 28px;
    }

    .Car-Rental-banner-image img {
        width: 95%;
        border-radius: 14px;
    }
}


/* rental price  */
  /* Container */
  .Rental-Price-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
  }

  /* Section Title */
  .Rental-Price-title {
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--text-dark);
  }

  /* Table Styles */
  .Rental-Price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
  }

  /* Table Head */
  .Rental-Price-table thead tr {
    background-color: var(--primary-blue);
    color: var(--white);
  }

  .Rental-Price-table th,
  .Rental-Price-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
  }

  /* Zebra Stripe on body rows */
  .Rental-Price-table tbody tr:nth-child(even) {
    background-color: var(--light-bg);
  }

  /* Responsive */
  @media (max-width: 600px) {
    .Rental-Price-table,
    .Rental-Price-table thead,
    .Rental-Price-table tbody,
    .Rental-Price-table th,
    .Rental-Price-table td,
    .Rental-Price-table tr {
      display: block;
      width: 100%;
    }
    .Rental-Price-table thead tr {
      display: none;
    }
    .Rental-Price-table tbody tr {
      margin-bottom: 20px;
      border: 1px solid var(--primary-blue);
      border-radius: 8px;
      padding: 10px;
    }
    .Rental-Price-table tbody td {
      border: none;
      position: relative;
      padding-left: 50%;
      text-align: right;
      font-size: 14px;
    }
    .Rental-Price-table tbody td::before {
      position: absolute;
      top: 12px;
      left: 15px;
      width: 45%;
      white-space: nowrap;
      font-weight: 600;
      color: var(--primary-blue);
      content: attr(data-label);
      text-align: left;
      font-size: 14px;
    }
  }

  /* luxury car rental  */
  
/* ==== MAIN SECTION ==== */
.LuxuryTempoTraveller-section {
  width: 100%;
  padding: 60px 0;
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.LuxuryTempoTraveller-head h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 40px;
}

/* ==== CARD WRAPPER ==== */
.LuxuryTempoTraveller-wrapper {
  width: 1400px;
  max-width: 95%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ==== CARD ==== */
.LuxuryTempoTraveller-card {
  background: var(--white);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: 0.3s;
  border: 2px solid #eee;
}

.LuxuryTempoTraveller-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-orange);
}

/* ==== IMAGE BOX ==== */
.LuxuryTempoTraveller-imageBox {
  width: 100%;
  height: 180px;
  background: #f3f3f3;
  border-radius: 18px;
  padding: 12px;
  position: relative;
}

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

.LuxuryTempoTraveller-whatsapp {
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--whatsapp-green);
  color: white;
  padding: 7px 9px;
  border-radius: 50%;
  font-size: 18px;
    width: 13%;
}

/* ==== TITLE ==== */
.LuxuryTempoTraveller-title {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-blue);
}

/* ==== DETAILS ==== */
.LuxuryTempoTraveller-infoRow {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  background: var(--primary-orange);
  color: white;
  padding: 10px 15px;
  border-radius: 14px;
  font-size: 14px;
}

.LuxuryTempoTraveller-infoRow i {
  margin-right: 6px;
}

.LuxuryTempoTraveller-details {
  margin-top: 15px;
  background: #eef4ff;
  border-radius: 14px;
  padding: 15px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ==== BUTTONS ==== */
.LuxuryTempoTraveller-buttons {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
}

.LuxuryTempoTraveller-call,
.LuxuryTempoTraveller-book {
  width: 48%;
  text-align: center;
  padding: 10px 0;
  font-size: 15px;
  border-radius: 14px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.LuxuryTempoTraveller-call {
  background: var(--dark-blue);
}

.LuxuryTempoTraveller-call:hover {
  background: var(--primary-blue);
}

.LuxuryTempoTraveller-book {
  background: var(--primary-orange);
}

.LuxuryTempoTraveller-book:hover {
  background: #ff5318;
}

.LuxuryTempoTraveller-buttons i {
  margin-right: 7px;
}

/* ==== RESPONSIVE ==== */
@media(max-width: 992px) {
  .LuxuryTempoTraveller-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .LuxuryTempoTraveller-wrapper {
    grid-template-columns: 1fr;
  }
}

section.Rental-Price-section ul {
    padding-left: 25px;
    margin: 10px 0;
    background: #e6eef9;
    border-radius: 25px;
    padding: 15px;
    padding-left: 35px;
}
section.Rental-Price-section ul {
    padding-left: 25px;
    margin: 10px 0;
}

/* =====================================================
   PARTH SARATHI TOURS - ABOUT SECTION
===================================================== */

.pst-about-section {
    position: relative;
    width: 100%;
    padding: 40px 20px;
    background: #ffffff;
    overflow: hidden;
}

.pst-about-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.pst-about-content {
    position: relative;
    z-index: 2;
}

.pst-about-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 15px;
    border-radius: 30px;
    background: #fff5e8;
    color: #d78316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pst-about-tag i {
    font-size: 13px;
}

.pst-about-title {
    margin: 0 0 18px;
    color: #202020;
    font-size: 43px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -1px;
}

.pst-about-title span {
    display: block;
    color: #d78316;
}

.pst-about-intro {
    max-width: 580px;
    margin: 0 0 20px;
    color: #555;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
}

.pst-about-text {
    max-width: 610px;
    margin: 0 0 15px;
    color: #707070;
    font-size: 15px;
    line-height: 1.85;
}

.pst-about-text strong {
    color: #333;
    font-weight: 700;
}


/* =====================================================
   FEATURES
===================================================== */

.pst-about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
    margin-bottom: 30px;
}

.pst-about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.pst-feature-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #fff5e8;
    color: #d78316;
    font-size: 16px;
}

.pst-about-feature h4 {
    margin: 0 0 3px;
    color: #292929;
    font-size: 13px;
    font-weight: 700;
}

.pst-about-feature p {
    margin: 0;
    color: #888;
    font-size: 11px;
    line-height: 1.4;
}


/* =====================================================
   BUTTON
===================================================== */

.pst-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 13px 18px 13px 22px;
    border-radius: 50px;
    background: #d78316;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pst-about-btn span {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #d78316;
    transition: all 0.3s ease;
}

.pst-about-btn:hover {
    background: #bd6f0d;
    color: #ffffff;
    transform: translateY(-2px);
}

.pst-about-btn:hover span {
    transform: translateX(3px);
}


/* =====================================================
   RIGHT IMAGE
===================================================== */

.pst-about-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pst-about-image-box {
    position: relative;
    width: 100%;
    max-width: 490px;
    height: 510px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
    z-index: 2;
}

.pst-about-image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.pst-about-image-box:hover img {
    transform: scale(1.05);
}

.pst-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.68),
        rgba(0, 0, 0, 0.05) 55%
    );
}

.pst-image-caption {
    position: absolute;
    left: 28px;
    bottom: 27px;
    display: flex;
    flex-direction: column;
}

.pst-image-caption span {
    margin-bottom: 4px;
    color: #f5c47b;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pst-image-caption strong {
    color: #ffffff;
    font-size: 25px;
    font-weight: 750;
}


/* =====================================================
   EXPERIENCE CARD
===================================================== */

.pst-experience-card {
    position: absolute;
    left: -30px;
    bottom: 35px;
    z-index: 5;
    min-width: 210px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pst-experience-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff5e8;
    color: #d78316;
    font-size: 20px;
}

.pst-experience-card strong {
    display: block;
    color: #242424;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
}

.pst-experience-card span {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 11px;
    line-height: 1.4;
}


/* =====================================================
   DECORATIVE CIRCLE
===================================================== */

.pst-about-circle {
    position: absolute;
    top: 15px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 20px solid #fff1dc;
    border-radius: 50%;
    z-index: 1;
}


/* =====================================================
   STATS
===================================================== */

.pst-about-stats {
    width: 100%;
    max-width: 1180px;
    margin: 75px auto 0;
    padding: 28px 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #faf8f5;
    border: 1px solid #f1ece5;
    border-radius: 18px;
}

.pst-stat-item {
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.pst-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: 45px;
    background: #e5ded5;
}

.pst-stat-item strong {
    display: block;
    margin-bottom: 5px;
    color: #d78316;
    font-size: 27px;
    line-height: 1;
    font-weight: 800;
}

.pst-stat-item span {
    color: #777;
    font-size: 12px;
    font-weight: 500;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .pst-about-section {
        padding: 75px 20px;
    }

    .pst-about-container {
        grid-template-columns: 1fr;
        gap: 55px;
        max-width: 720px;
    }

    .pst-about-content {
        text-align: center;
    }

    .pst-about-title {
        font-size: 38px;
    }

    .pst-about-intro,
    .pst-about-text {
        margin-left: auto;
        margin-right: auto;
    }

    .pst-about-features {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .pst-about-btn {
        margin-top: 3px;
    }

    .pst-about-visual {
        min-height: 500px;
    }

    .pst-about-image-box {
        max-width: 550px;
    }

    .pst-experience-card {
        left: 0;
    }

    .pst-about-circle {
        right: 0;
    }

    .pst-about-stats {
        max-width: 720px;
        margin-top: 60px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .pst-about-section {
        padding: 27px 16px;
    }

    .pst-about-container {
        gap: 40px;
    }

    .pst-about-tag {
        margin-bottom: 14px;
        padding: 7px 12px;
        font-size: 11px;
    }

    .pst-about-title {
        margin-bottom: 14px;
        font-size: 30px;
        line-height: 1.22;
        letter-spacing: -0.5px;
    }

    .pst-about-intro {
        font-size: 15px;
        line-height: 1.6;
    }

    .pst-about-text {
        font-size: 13px;
        line-height: 1.75;
    }

    .pst-about-features {
        grid-template-columns: 1fr;
        gap: 13px;
        margin-top: 24px;
        margin-bottom: 25px;
        padding: 0;
        text-align: left;
    }

    .pst-about-feature {
        padding: 10px 12px;
        border: 1px solid #f1ece5;
        border-radius: 12px;
        background: #fff;
    }

    .pst-feature-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .pst-about-btn {
        padding: 11px 15px 11px 18px;
        font-size: 12px;
    }

    .pst-about-btn span {
        width: 28px;
        height: 28px;
    }


    /* Image */

    .pst-about-visual {
        min-height: 410px;
    }

    .pst-about-image-box {
        height: 400px;
        border-radius: 19px;
    }

    .pst-image-caption {
        left: 20px;
        bottom: 20px;
    }

    .pst-image-caption strong {
        font-size: 21px;
    }

    .pst-image-caption span {
        font-size: 10px;
    }


    /* Experience Card */

    .pst-experience-card {
        left: 12px;
        bottom: 15px;
        min-width: auto;
        width: 190px;
        padding: 12px 13px;
        gap: 10px;
    }

    .pst-experience-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 16px;
    }

    .pst-experience-card strong {
        font-size: 18px;
    }

    .pst-experience-card span {
        font-size: 9px;
    }

    .pst-about-circle {
        width: 75px;
        height: 75px;
        top: -10px;
        right: -5px;
        border-width: 13px;
    }


    /* Stats */

    .pst-about-stats {
        margin-top: 45px;
        padding: 22px 10px;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 0;
        border-radius: 15px;
    }

    .pst-stat-item {
        padding: 0 8px;
    }

    .pst-stat-item:nth-child(2)::after {
        display: none;
    }

    .pst-stat-item strong {
        font-size: 23px;
    }

    .pst-stat-item span {
        font-size: 10px;
    }

    .pst-stat-item:nth-child(1)::after,
    .pst-stat-item:nth-child(3)::after {
        height: 40px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .pst-about-title {
        font-size: 27px;
    }

    .pst-about-image-box {
        height: 360px;
    }

    .pst-about-visual {
        min-height: 370px;
    }

    .pst-experience-card {
        width: 175px;
    }

    .pst-stat-item strong {
        font-size: 21px;
    }
}




/* =========================================================
   PARTH SARATHI TOURS
   TRAVEL BENEFITS SECTION
========================================================= */

.pst-benefits-section {
    position: relative;
    width: 100%;
    padding: 25px 20px;
    background: #faf8f5;
    overflow: hidden;
}

.pst-benefits-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.pst-benefits-header {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.pst-benefits-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 15px;
    border-radius: 30px;
    background: #fff1dc;
    color: #d78316;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pst-benefits-tag i {
    font-size: 11px;
}

.pst-benefits-title {
    margin: 0 0 15px;
    color: #242424;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.pst-benefits-title span {
    color: #d78316;
}

.pst-benefits-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   GRID
========================================================= */

.pst-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.pst-benefit-card {
    position: relative;
    min-height: 255px;
    padding: 27px 25px 25px;
    background: #ffffff;
    border: 1px solid #eee8df;
    border-radius: 18px;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.pst-benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #d78316;
    transition: width 0.35s ease;
}

.pst-benefit-card:hover {
    transform: translateY(-7px);
    border-color: #f0d8b5;
    box-shadow: 0 18px 40px rgba(53, 42, 29, 0.10);
}

.pst-benefit-card:hover::before {
    width: 100%;
}


/* =========================================================
   ICON
========================================================= */

.pst-benefit-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #542566;
    border: 1px solid #f7e6cd;
    overflow: hidden;
    transition: all 0.35s ease;
}

.pst-benefit-icon img {
    width: 42px;
    height: 42px;
    display: block;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.pst-benefit-card:hover .pst-benefit-icon {
    background: #542566;
}

.pst-benefit-card:hover .pst-benefit-icon img {
    transform: scale(1.08);
}


/* =========================================================
   CONTENT
========================================================= */

.pst-benefit-content {
    position: relative;
    padding-right: 20px;
}

.pst-benefit-number {
    display: block;
    margin-bottom: 5px;
    color: #d9d0c4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.pst-benefit-content h3 {
    margin: 0 0 9px;
    color: #292929;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 750;
}

.pst-benefit-content p {
    margin: 0;
    color: #7b7b7b;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   ARROW
========================================================= */

.pst-benefit-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #faf7f2;
    color: #d78316;
    font-size: 11px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.pst-benefit-card:hover .pst-benefit-arrow {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .pst-benefits-section {
        padding: 75px 20px;
    }

    .pst-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
        margin: 0 auto;
    }

    .pst-benefits-title {
        font-size: 36px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .pst-benefits-section {
        padding: 20px 16px;
    }

    .pst-benefits-header {
        margin-bottom: 32px;
    }

    .pst-benefits-tag {
        margin-bottom: 13px;
        padding: 7px 12px;
        font-size: 10px;
    }

    .pst-benefits-title {
        font-size: 29px;
        line-height: 1.25;
        letter-spacing: -0.4px;
    }

    .pst-benefits-subtitle {
        font-size: 13px;
        line-height: 1.7;
    }

    .pst-benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pst-benefit-card {
        min-height: auto;
        padding: 20px 18px;
        border-radius: 15px;
        display: grid;
        grid-template-columns: 58px 1fr;
        column-gap: 15px;
        align-items: start;
    }

    .pst-benefit-icon {
        width: 58px;
        height: 58px;
        margin: 0;
        border-radius: 14px;
    }

    .pst-benefit-icon img {
        width: 37px;
        height: 37px;
    }

    .pst-benefit-content {
        padding-right: 15px;
    }

    .pst-benefit-number {
        margin-bottom: 3px;
        font-size: 9px;
    }

    .pst-benefit-content h3 {
        margin-bottom: 6px;
        font-size: 16px;
    }

    .pst-benefit-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    .pst-benefit-arrow {
        right: 13px;
        bottom: 13px;
        width: 27px;
        height: 27px;
        font-size: 9px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .pst-benefits-section {
        padding: 50px 13px;
    }

    .pst-benefits-title {
        font-size: 26px;
    }

    .pst-benefit-card {
        grid-template-columns: 52px 1fr;
        column-gap: 12px;
        padding: 17px 15px;
    }

    .pst-benefit-icon {
        width: 52px;
        height: 52px;
    }

    .pst-benefit-icon img {
        width: 33px;
        height: 33px;
    }

    .pst-benefit-content h3 {
        font-size: 15px;
    }

    .pst-benefit-content p {
        font-size: 11px;
    }
}

/* =========================================================
   PARTH SARATHI TOURS
   BOOKING / ENQUIRY SECTION
========================================================= */

.pst-booking-section {
    position: relative;
    width: 100%;
    padding: 95px 20px;
    overflow: hidden;
    background: #20170e;
}

.pst-booking-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1800&auto=format&fit=crop");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pst-booking-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(20, 13, 7, 0.95) 0%,
            rgba(20, 13, 7, 0.88) 42%,
            rgba(20, 13, 7, 0.70) 100%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.pst-booking-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    align-items: center;
    gap: 75px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.pst-booking-content {
    color: #ffffff;
}

.pst-booking-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.07);
    color: #f0ad52;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.pst-booking-tag i {
    font-size: 11px;
}

.pst-booking-title {
    max-width: 620px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -1px;
}

.pst-booking-title span {
    display: block;
    color: #e39a3b;
}

.pst-booking-description {
    max-width: 580px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   STEPS
========================================================= */

.pst-booking-steps {
    max-width: 610px;
    margin-top: 34px;
}

.pst-booking-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 21px;
}

.pst-step-number {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(227, 154, 59, 0.35);
    border-radius: 50%;
    background: rgba(227, 154, 59, 0.10);
    color: #e3a05a;
    font-size: 10px;
    font-weight: 800;
}

.pst-step-content h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.pst-step-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   TRUST
========================================================= */

.pst-booking-trust {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.pst-trust-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(227, 154, 59, 0.12);
    color: #e3a05a;
    font-size: 16px;
}

.pst-booking-trust strong {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 13px;
}

.pst-booking-trust span {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.pst-booking-form-wrapper {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   FORM HEADER
========================================================= */

.pst-form-header {
    margin-bottom: 25px;
}

.pst-form-small-title {
    display: block;
    margin-bottom: 6px;
    color: #d78316;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pst-form-header h3 {
    margin: 0 0 7px;
    color: #252525;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 800;
}

.pst-form-header p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   FORM
========================================================= */

.pst-booking-form {
    width: 100%;
}

.pst-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pst-form-group {
    margin-bottom: 16px;
}

.pst-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #363636;
    font-size: 11px;
    font-weight: 700;
}

.pst-input-wrapper,
.pst-textarea-wrapper {
    position: relative;
}

.pst-input-wrapper i,
.pst-textarea-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    z-index: 2;
    color: #b6aaa0;
    font-size: 12px;
    transform: translateY(-50%);
    pointer-events: none;
}

.pst-textarea-wrapper i {
    top: 18px;
    transform: none;
}

.pst-input-wrapper input,
.pst-textarea-wrapper textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e6e0d9;
    outline: none;
    border-radius: 10px;
    background: #fbfaf8;
    color: #292929;
    font-family: inherit;
    font-size: 12px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.pst-input-wrapper input {
    height: 47px;
    padding: 0 13px 0 39px;
}

.pst-textarea-wrapper textarea {
    min-height: 105px;
    padding: 13px 13px 13px 39px;
    resize: vertical;
    line-height: 1.6;
}

.pst-input-wrapper input::placeholder,
.pst-textarea-wrapper textarea::placeholder {
    color: #aaa19a;
}

.pst-input-wrapper input:focus,
.pst-textarea-wrapper textarea:focus {
    border-color: #d78316;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(215, 131, 22, 0.09);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.pst-booking-submit {
    width: 100%;
    min-height: 50px;
    margin-top: 3px;
    padding: 8px 10px 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 11px;
    background: #d78316;
    color: #ffffff;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.pst-booking-submit i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ffffff;
    color: #d78316;
    transition: transform 0.3s ease;
}

.pst-booking-submit:hover {
    background: #bd6f0d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(189, 111, 13, 0.25);
}

.pst-booking-submit:hover i {
    transform: translateX(3px);
}


/* =========================================================
   FORM NOTE
========================================================= */

.pst-form-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    color: #999;
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}

.pst-form-note i {
    margin-top: 1px;
    color: #d78316;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .pst-booking-section {
        padding: 75px 20px;
    }

    .pst-booking-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 720px;
    }

    .pst-booking-content {
        text-align: center;
    }

    .pst-booking-title,
    .pst-booking-description {
        margin-left: auto;
        margin-right: auto;
    }

    .pst-booking-steps {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .pst-booking-trust {
        text-align: left;
    }

    .pst-booking-form-wrapper {
        max-width: 620px;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .pst-booking-section {
        padding: 55px 15px;
    }

    .pst-booking-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(20, 13, 7, 0.94),
                rgba(20, 13, 7, 0.89)
            );
    }

    .pst-booking-container {
        gap: 38px;
    }

    .pst-booking-tag {
        margin-bottom: 14px;
        padding: 7px 12px;
        font-size: 10px;
    }

    .pst-booking-title {
        margin-bottom: 14px;
        font-size: 30px;
        line-height: 1.22;
        letter-spacing: -0.5px;
    }

    .pst-booking-description {
        font-size: 13px;
        line-height: 1.7;
    }


    /* Steps */

    .pst-booking-steps {
        margin-top: 26px;
    }

    .pst-booking-step {
        gap: 11px;
        margin-bottom: 17px;
    }

    .pst-step-number {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 9px;
    }

    .pst-step-content h3 {
        font-size: 13px;
    }

    .pst-step-content p {
        font-size: 10px;
        line-height: 1.55;
    }


    /* Trust */

    .pst-booking-trust {
        margin-top: 8px;
        padding-top: 18px;
    }

    .pst-trust-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .pst-booking-trust strong {
        font-size: 11px;
    }

    .pst-booking-trust span {
        font-size: 9px;
    }


    /* Form */

    .pst-booking-form-wrapper {
        padding: 22px 17px;
        border-radius: 17px;
    }

    .pst-form-header {
        margin-bottom: 20px;
    }

    .pst-form-small-title {
        font-size: 9px;
    }

    .pst-form-header h3 {
        font-size: 21px;
    }

    .pst-form-header p {
        font-size: 10px;
    }

    .pst-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pst-form-group {
        margin-bottom: 13px;
    }

    .pst-form-group label {
        margin-bottom: 6px;
        font-size: 10px;
    }

    .pst-input-wrapper input {
        height: 45px;
        font-size: 11px;
    }

    .pst-textarea-wrapper textarea {
        min-height: 95px;
        font-size: 11px;
    }

    .pst-booking-submit {
        min-height: 47px;
        font-size: 12px;
    }

    .pst-booking-submit i {
        width: 31px;
        height: 31px;
    }

    .pst-form-note {
        font-size: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .pst-booking-section {
        padding: 48px 12px;
    }

    .pst-booking-title {
        font-size: 27px;
    }

    .pst-booking-description {
        font-size: 12px;
    }

    .pst-booking-form-wrapper {
        padding: 19px 14px;
    }

    .pst-form-header h3 {
        font-size: 19px;
    }
}



/* =========================================================
   TESTIMONIAL SECTION
   PARTH SARATHI TOURS
========================================================= */

.testimonial-section {
    position: relative;
    width: 100%;
    padding: 30px 20px 75px;
    background: #faf8f5;
    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.testimonial-title {
    margin: 0;
    color: #242424;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.7px;
}

.testimonial-subtitle {
    max-width: 620px;
    margin: 13px auto 45px;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.testimonial-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    align-items: stretch;
}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card {
    position: relative;
    box-sizing: border-box;
    min-height: 290px;
    padding: 30px 30px 27px;
    background: #ffffff;
    border: 1px solid #eee8df;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: #efd5ae;
    box-shadow: 0 18px 40px rgba(45, 35, 24, 0.10);
    transform: translateY(-5px);
}


/* =========================================================
   DECORATIVE TOP LINE
========================================================= */

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 45px;
    height: 3px;
    background: #d78316;
    border-radius: 0 0 5px 5px;
}


/* =========================================================
   QUOTE
========================================================= */

.testimonial-quote {
    position: absolute;
    top: 18px;
    right: 25px;
    color: #f5e6d0;
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
}


/* =========================================================
   STARS
========================================================= */

.testimonial-stars {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 18px;
}

.testimonial-stars span {
    font-size: 16px;
    line-height: 1;
}

.testimonial-stars span:last-child {
    margin-left: 7px;
    color: #777 !important;
    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.testimonial-text {
    position: relative;
    z-index: 2;
    min-height: 85px;
    margin: 0 0 25px;
    color: #656565;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   USER
========================================================= */

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 17px;
    border-top: 1px solid #f0ebe5;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: block;
    border: 2px solid #fff1dc;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    margin: 0 0 3px;
    color: #292929;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 750;
}

.testimonial-location {
    margin: 0;
    color: #999;
    font-size: 11px;
    line-height: 1.4;
}


/* =========================================================
   SLIDER DOTS
========================================================= */

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 15px;
    margin-top: 32px;
}

.testimonial-dots span {
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: #ddd3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots span.active {
    width: 23px;
    border-radius: 10px;
    background: #d78316;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .testimonial-section {
        padding: 75px 20px 65px;
    }

    .testimonial-title {
        font-size: 35px;
    }

    .testimonial-subtitle {
        margin-bottom: 35px;
    }

    .testimonial-card {
        padding: 27px 25px 24px;
    }

    .testimonial-card::before {
        left: 25px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .testimonial-section {
        padding: 30px 15px 50px;
    }

    .testimonial-title {
        font-size: 29px;
        line-height: 1.25;
        letter-spacing: -0.4px;
    }

    .testimonial-subtitle {
        margin: 10px auto 28px;
        font-size: 12px;
        line-height: 1.65;
    }

    .testimonial-wrapper {
        width: 100%;
    }

    .testimonial-card {
        min-height: 265px;
        padding: 24px 20px 21px;
        border-radius: 15px;
    }

    .testimonial-card::before {
        left: 20px;
        width: 38px;
    }

    .testimonial-quote {
        top: 14px;
        right: 18px;
        font-size: 58px;
    }

    .testimonial-stars {
        margin-bottom: 14px;
    }

    .testimonial-stars span {
        font-size: 14px;
    }

    .testimonial-stars span:last-child {
        font-size: 10px;
    }

    .testimonial-text {
        min-height: 80px;
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 1.7;
    }

    .testimonial-user {
        gap: 10px;
        padding-top: 14px;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .testimonial-name {
        font-size: 13px;
    }

    .testimonial-location {
        font-size: 10px;
    }

    .testimonial-dots {
        gap: 6px;
        margin-top: 25px;
    }

    .testimonial-dots span {
        width: 6px;
        height: 6px;
    }

    .testimonial-dots span.active {
        width: 20px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .testimonial-section {
        padding: 48px 12px 45px;
    }

    .testimonial-title {
        font-size: 26px;
    }

    .testimonial-card {
        padding: 21px 17px 19px;
    }

    .testimonial-text {
        font-size: 11px;
    }
}

/* =========================================================
   PARTH SARATHI TOURS
   PREMIUM FLEET - UPDATED LARGER VERSION
========================================================= */

.pst-fleet-section {
    width: 100%;
    padding: 20px 20px;
    background: #faf8f5;
    overflow: hidden;
}

.pst-fleet-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.pst-fleet-header {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.pst-fleet-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 9px 17px;
    border-radius: 30px;
    background: #fff1dc;
    color: #d78316;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.pst-fleet-title {
    margin: 0 0 15px;
    color: #242424;
    font-size: 43px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.pst-fleet-title span {
    color: #d78316;
}

.pst-fleet-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   GRID
========================================================= */

.pst-fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.pst-fleet-grid-second {
    margin-top: 22px;
}


/* =========================================================
   CARD
========================================================= */

.pst-fleet-card {
    position: relative;
    width: 100%;
    background: #ffffff;
    border: 1px solid #eee7de;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 7px 25px rgba(45, 35, 24, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.pst-fleet-card:hover {
    transform: translateY(-7px);
    border-color: #efd3a8;
    box-shadow: 0 20px 45px rgba(45, 35, 24, 0.13);
}


/* =========================================================
   IMAGE
========================================================= */

.pst-fleet-image {
    position: relative;
    width: 100%;
    height: 225px;
    overflow: hidden;
    background: #f2eee9;
}

.pst-fleet-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pst-fleet-card:hover .pst-fleet-image img {
    transform: scale(1.06);
}


/* =========================================================
   CATEGORY
========================================================= */

.pst-fleet-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    color: #555;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   WHATSAPP
========================================================= */

.pst-fleet-whatsapp {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #25d366;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 3;
}

.pst-fleet-whatsapp:hover {
    background: #25d366;
    color: #ffffff;
    transform: scale(1.08);
}


/* =========================================================
   CONTENT
========================================================= */

.pst-fleet-content {
    padding: 23px 20px 20px;
}

.pst-fleet-content h3 {
    margin: 0 0 12px;
    color: #292929;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}


/* =========================================================
   PASSENGER INFO
========================================================= */

.pst-fleet-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee7de;
}

.pst-fleet-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #777;
   /* font-size: 10px; */
    line-height: 1.4;
    white-space: nowrap;
}

.pst-fleet-info i {
    color: #d78316;
    font-size: 11px;
}


/* =========================================================
   PRICING
========================================================= */

.pst-fleet-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 17px 0;
}

.pst-fleet-pricing > div {
    min-width: 0;
}

.pst-fleet-pricing > div:first-child {
    padding-right: 12px;
    border-right: 1px solid #eee7de;
}

.pst-fleet-pricing small {
    display: block;
    margin-bottom: 6px;
    color: #999;
    /* font-size: 9px; */
    line-height: 1.4;
    font-weight: 600;
}

.pst-fleet-pricing strong {
    display: block;
    color: #333;
   /* font-size: 15px; */
    line-height: 1.35;
    font-weight: 800;
    white-space: nowrap;
}

.pst-fleet-pricing em {
    color: #999;
   /* font-size: 9px; */
    font-style: normal;
    font-weight: 500;
}


/* =========================================================
   BUTTONS
========================================================= */

.pst-fleet-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.pst-fleet-call,
.pst-fleet-book {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 9px;
    text-decoration: none;
  /*  font-size: 11px; */
    font-weight: 700;
    transition: all 0.3s ease;
}

.pst-fleet-call {
    border: 1px solid #e8dfd5;
    background: #ffffff;
    color: #555;
}

.pst-fleet-call:hover {
    border-color: #d78316;
    color: #d78316;
}

.pst-fleet-book {
    border: 1px solid #d78316;
    background: #d78316;
    color: #ffffff;
}

.pst-fleet-book:hover {
    background: #bd6f0d;
    border-color: #bd6f0d;
    color: #ffffff;
}

.pst-fleet-book i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.pst-fleet-book:hover i {
    transform: translateX(3px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.pst-fleet-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 45px;
    text-align: center;
}

.pst-fleet-bottom p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.pst-fleet-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d78316;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
}

.pst-fleet-bottom a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.pst-fleet-bottom a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   1200 - 1300
========================================================= */

@media (max-width: 1300px) {

    .pst-fleet-container {
        max-width: 1180px;
    }

    .pst-fleet-grid {
        gap: 19px;
    }

    .pst-fleet-image {
        height: 215px;
    }

    .pst-fleet-content {
        padding: 21px 18px 19px;
    }

    .pst-fleet-content h3 {
        font-size: 19px;
    }

    .pst-fleet-pricing strong {
        font-size: 14px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .pst-fleet-section {
        padding: 75px 20px;
    }

    .pst-fleet-title {
        font-size: 37px;
    }

    .pst-fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .pst-fleet-grid-second {
        margin-top: 20px;
    }

    .pst-fleet-image {
        height: 235px;
    }

    .pst-fleet-content {
        padding: 22px 20px 20px;
    }

    .pst-fleet-content h3 {
        font-size: 20px;
    }

    .pst-fleet-info span {
       /* font-size: 10px; */
    }

    .pst-fleet-pricing strong {
        font-size: 15px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .pst-fleet-section {
        padding: 25px 15px;
    }

    .pst-fleet-header {
        margin-bottom: 32px;
    }

    .pst-fleet-tag {
        margin-bottom: 12px;
        padding: 8px 13px;
        font-size: 10px;
    }

    .pst-fleet-title {
        font-size: 30px;
        line-height: 1.25;
        letter-spacing: -0.4px;
    }

    .pst-fleet-subtitle {
        font-size: 12px;
        line-height: 1.7;
    }

    .pst-fleet-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .pst-fleet-grid-second {
        margin-top: 17px;
    }

    .pst-fleet-card {
        border-radius: 16px;
    }

    .pst-fleet-image {
        height: 230px;
    }

    .pst-fleet-category {
        top: 12px;
        left: 12px;
        padding: 7px 11px;
        /* font-size: 9px; */
    }

    .pst-fleet-whatsapp {
        top: 11px;
        right: 11px;
        width: 39px;
        height: 39px;
        font-size: 18px;
    }

    .pst-fleet-content {
        padding: 20px 18px 18px;
    }

    .pst-fleet-content h3 {
        margin-bottom: 11px;
        font-size: 19px;
    }

    .pst-fleet-info {
        gap: 15px;
        padding-bottom: 14px;
    }

    .pst-fleet-info span {
     /*   font-size: 10px; */
    }

    .pst-fleet-info i {
        font-size: 11px;
    }

    .pst-fleet-pricing {
        padding: 15px 0;
    }

    .pst-fleet-pricing small {
       /* font-size: 9px; */
    }

    .pst-fleet-pricing strong {
      /*  font-size: 14px; */
    }

    .pst-fleet-pricing em {
      /*  font-size: 9px; */
    }

    .pst-fleet-call,
    .pst-fleet-book {
        min-height: 42px;
       /* font-size: 11px; */
    }

    .pst-fleet-bottom {
        flex-direction: column;
        gap: 9px;
        margin-top: 32px;
    }

    .pst-fleet-bottom p {
        font-size: 12px;
    }

    .pst-fleet-bottom a {
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .pst-fleet-section {
        padding: 48px 12px;
    }

    .pst-fleet-title {
        font-size: 27px;
    }

    .pst-fleet-image {
        height: 210px;
    }

    .pst-fleet-content {
        padding: 18px 16px 16px;
    }

    .pst-fleet-content h3 {
        font-size: 18px;
    }

    .pst-fleet-info {
        gap: 11px;
    }

    .pst-fleet-info span {
        font-size: 9px;
    }

    .pst-fleet-pricing strong {
        font-size: 13px;
    }

    .pst-fleet-call,
    .pst-fleet-book {
        min-height: 40px;
        font-size: 10px;
    }
}

/* =========================================================
   PARTH SARATHI TOURS
   SERVICE PACKAGE SECTION
========================================================= */

.pst-service-package-section {
    width: 100%;
    padding: 25px 20px;
    background: #faf8f5;
    overflow: hidden;
}

.pst-service-package-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.pst-service-package-header {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}

.pst-service-package-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 14px;

    border-radius: 30px;
    background: #fff0d9;
    color: #d78316;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.pst-service-package-title {
    margin: 0 0 15px;

    color: #252525;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.pst-service-package-description {
    color: #737373;
    font-size: 15px;
    line-height: 1.8;
}

.pst-service-package-description p {
    margin: 0 0 8px;
}

.pst-service-package-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   PACKAGE GRID
========================================================= */

.pst-service-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}


/* =========================================================
   PACKAGE CARD
========================================================= */

.pst-service-package-card {
    position: relative;

    width: 100%;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #eee6dc;
    border-radius: 18px;

    box-shadow: 0 8px 28px rgba(45, 35, 24, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.pst-service-package-card:hover {
    transform: translateY(-7px);

    border-color: #edcf9f;

    box-shadow:
        0 18px 42px rgba(45, 35, 24, 0.12);
}


/* =========================================================
   IMAGE
========================================================= */

.pst-service-package-image {
    position: relative;

    width: 100%;
    height: 235px;

    overflow: hidden;

    background: #eee9e2;
}

.pst-service-package-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.pst-service-package-card:hover
.pst-service-package-image img {
    transform: scale(1.07);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.pst-service-package-image-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 45%;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.32),
        transparent
    );

    pointer-events: none;
}


/* =========================================================
   NUMBER
========================================================= */

.pst-service-package-number {
    position: absolute;

    top: 15px;
    left: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);
    color: #d78316;

    font-size: 12px;
    font-weight: 800;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   CONTENT
========================================================= */

.pst-service-package-content {
    padding: 24px 23px 25px;
}


/* =========================================================
   CARD TITLE
========================================================= */

.pst-service-package-card-title {
    margin: 0 0 12px;

    color: #282828;

    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.pst-service-package-card-description {
    color: #727272;

    font-size: 13px;
    line-height: 1.75;
}

.pst-service-package-card-description p {
    margin: 0 0 8px;
}

.pst-service-package-card-description p:last-child {
    margin-bottom: 0;
}

.pst-service-package-card-description ul,
.pst-service-package-card-description ol {
    margin: 10px 0;
    padding-left: 20px;
}

.pst-service-package-card-description li {
    margin-bottom: 5px;
}


/* =========================================================
   SMALL ACCENT LINE
========================================================= */

.pst-service-package-content::before {
    content: "";

    display: block;

    width: 38px;
    height: 3px;

    margin-bottom: 15px;

    border-radius: 10px;

    background: #d78316;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .pst-service-package-container {
        max-width: 1320px;
    }

    .pst-service-package-grid {
        gap: 28px;
    }

    .pst-service-package-image {
        height: 250px;
    }

    .pst-service-package-content {
        padding: 26px 25px 28px;
    }

    .pst-service-package-card-title {
        font-size: 21px;
    }

    .pst-service-package-card-description {
        font-size: 14px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .pst-service-package-section {
        padding: 70px 20px;
    }

    .pst-service-package-title {
        font-size: 34px;
    }

    .pst-service-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .pst-service-package-image {
        height: 225px;
    }

    .pst-service-package-content {
        padding: 21px 20px 23px;
    }

    .pst-service-package-card-title {
        font-size: 19px;
    }

    .pst-service-package-card-description {
        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .pst-service-package-section {
        padding: 25px 15px;
    }

    .pst-service-package-header {
        margin-bottom: 32px;
    }

    .pst-service-package-label {
        padding: 7px 13px;
        margin-bottom: 11px;

        font-size: 9px;
    }

    .pst-service-package-title {
        font-size: 29px;
        line-height: 1.25;
    }

    .pst-service-package-description {
        font-size: 12px;
        line-height: 1.7;
    }

    .pst-service-package-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pst-service-package-card {
        border-radius: 16px;
    }

    .pst-service-package-image {
        height: 225px;
    }

    .pst-service-package-number {
        top: 12px;
        left: 12px;

        width: 37px;
        height: 37px;

        font-size: 11px;
    }

    .pst-service-package-content {
        padding: 20px 18px 22px;
    }

    .pst-service-package-content::before {
        width: 32px;
        height: 3px;
        margin-bottom: 12px;
    }

    .pst-service-package-card-title {
        margin-bottom: 10px;
        font-size: 19px;
    }

    .pst-service-package-card-description {
        font-size: 12px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .pst-service-package-section {
        padding: 48px 12px;
    }

    .pst-service-package-title {
        font-size: 26px;
    }

    .pst-service-package-image {
        height: 205px;
    }

    .pst-service-package-content {
        padding: 18px 16px 20px;
    }

    .pst-service-package-card-title {
        font-size: 18px;
    }

    .pst-service-package-card-description {
        font-size: 11.5px;
    }
}

/* =========================================================
   TEMPO TRAVELLER FLEET
========================================================= */

.tempo-fleet-section {
    width: 100%;
    padding: 25px 20px 85px;
    background: #faf9f7;
    overflow: hidden;
}

.tempo-fleet-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.tempo-fleet-head {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.tempo-fleet-eyebrow {
    display: inline-block;

    margin-bottom: 12px;
    padding: 7px 15px;

    background: #fff1dd;
    border-radius: 30px;

    color: #d9820b;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tempo-fleet-head h2 {
    margin: 0 0 12px;

    color: #242424;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.tempo-fleet-head h2 span {
    color: #dd850c;
}

.tempo-fleet-head p {
    max-width: 700px;
    margin: 0 auto;

    color: #777;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   GRID
========================================================= */

.tempo-fleet-wrapper {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   CARD
========================================================= */

.tempo-fleet-card {
    width: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #ece7e1;
    border-radius: 18px;

    box-shadow: 0 8px 28px rgba(40, 32, 24, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.tempo-fleet-card:hover {
    transform: translateY(-6px);

    border-color: #ead3b2;

    box-shadow: 0 18px 42px rgba(40, 32, 24, 0.12);
}


/* =========================================================
   IMAGE
========================================================= */

.tempo-fleet-image-box {
    position: relative;

    width: 100%;
    height: 245px;

    overflow: hidden;

    background: #f7f7f6;
}

.tempo-fleet-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.55s ease;
}

.tempo-fleet-card:hover .tempo-fleet-image-box img {
    transform: scale(1.045);
}


/* =========================================================
   IMAGE CATEGORY
========================================================= */

.tempo-fleet-category {
    position: absolute;

    top: 13px;
    left: 13px;

    z-index: 3;

    padding: 7px 12px;

    background: rgba(255, 255, 255, 0.96);

    border-radius: 20px;

    color: #555;

  /*  font-size: 10px; */
    font-weight: 700;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   WHATSAPP
========================================================= */

.tempo-fleet-whatsapp {
    position: absolute;

    top: 12px;
    right: 13px;

    z-index: 4;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    color: #08c95d;

    font-size: 19px;

    text-decoration: none;

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.12);

    transition: all 0.3s ease;
}

.tempo-fleet-whatsapp:hover {
    background: #08c95d;
    color: #ffffff;

    transform: scale(1.08);
}


/* =========================================================
   CONTENT
========================================================= */

.tempo-fleet-content {
    padding: 20px 20px 18px;
}


/* =========================================================
   TITLE
========================================================= */

.tempo-fleet-title {
    margin: 0 0 10px;

    color: #292929;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}


/* =========================================================
   INFO
========================================================= */

.tempo-fleet-info {
    display: flex;
    align-items: center;

    gap: 15px;

    padding-bottom: 14px;

    border-bottom: 1px solid #eee7de;
}

.tempo-fleet-info span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #777;

   /* font-size: 10px; */
    line-height: 1.4;

    white-space: nowrap;
}

.tempo-fleet-info i {
    color: #df850b;

    font-size: 11px;
}


/* =========================================================
   DETAILS
========================================================= */

.tempo-fleet-details {
    margin: 0;
    padding: 14px 0 16px;

    list-style: none;
}

.tempo-fleet-details li {
    display: flex;
    flex-direction: column;

    gap: 2px;

    margin-bottom: 9px;

    color: #747474;

    font-size: 10.5px;
    line-height: 1.5;
}

.tempo-fleet-details li:last-child {
    margin-bottom: 0;
}

.tempo-fleet-details strong {
    color: #3e3e3e;

    font-size: 15px;
    font-weight: 750;
}

.tempo-fleet-details span {
    color: #777;
font-size: 14px;	
}


/* =========================================================
   BUTTONS
========================================================= */

.tempo-fleet-buttons {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9px;
}

.tempo-fleet-call,
.tempo-fleet-book {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 9px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 750;

    transition: all 0.3s ease;
}


/* CALL */

.tempo-fleet-call {
    background: #ffffff;

    border: 1px solid #e4dbd1;

    color: #4e4e4e;
}

.tempo-fleet-call:hover {
    border-color: #dc840d;

    color: #dc840d;
}


/* BOOK */

.tempo-fleet-book {
    background: #df850b;

    border: 1px solid #df850b;

    color: #ffffff;
}

.tempo-fleet-book:hover {
    background: #c87305;

    border-color: #c87305;

    color: #ffffff;
}

.tempo-fleet-book i {
    font-size: 9px;

    transition: transform 0.25s ease;
}

.tempo-fleet-book:hover i {
    transform: translateX(3px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .tempo-fleet-container {
        max-width: 1380px;
    }

    .tempo-fleet-wrapper {
        gap: 24px;
    }

    .tempo-fleet-image-box {
        height: 255px;
    }

    .tempo-fleet-content {
        padding: 21px 21px 19px;
    }

    .tempo-fleet-title {
        font-size: 21px;
    }

    .tempo-fleet-details li {
        font-size: 11px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .tempo-fleet-section {
        padding: 65px 18px 70px;
    }

    .tempo-fleet-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .tempo-fleet-image-box {
        height: 250px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .tempo-fleet-section {
        padding: 25px 14px 60px;
    }

    .tempo-fleet-head {
        margin-bottom: 30px;
    }

    .tempo-fleet-eyebrow {
        margin-bottom: 10px;

        padding: 6px 12px;

        font-size: 9px;
    }

    .tempo-fleet-head h2 {
        font-size: 29px;

        line-height: 1.25;
    }

    .tempo-fleet-head p {
        font-size: 12px;

        line-height: 1.7;
    }

    .tempo-fleet-wrapper {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .tempo-fleet-card {
        border-radius: 16px;
    }

    .tempo-fleet-image-box {
        height: 235px;
    }

    .tempo-fleet-category {
        top: 11px;
        left: 11px;

        padding: 6px 10px;

       /* font-size: 9px; */
    }

    .tempo-fleet-whatsapp {
        top: 10px;
        right: 11px;

        width: 39px;
        height: 39px;

        font-size: 18px;
    }

    .tempo-fleet-content {
        padding: 19px 17px 17px;
    }

    .tempo-fleet-title {
        margin-bottom: 10px;

        font-size: 19px;
    }

    .tempo-fleet-info {
        gap: 14px;

        padding-bottom: 13px;
    }

    .tempo-fleet-info span {
       /* font-size: 10px; */
     }

    .tempo-fleet-details {
        padding: 14px 0 16px;
    }

    .tempo-fleet-details li {
        margin-bottom: 8px;

        font-size: 10.5px;
    }

    .tempo-fleet-buttons {
        gap: 8px;
    }

    .tempo-fleet-call,
    .tempo-fleet-book {
        min-height: 42px;

       /* font-size: 10.5px; */
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .tempo-fleet-section {
        padding-left: 11px;
        padding-right: 11px;
    }

    .tempo-fleet-head h2 {
        font-size: 26px;
    }

    .tempo-fleet-image-box {
        height: 215px;
    }

    .tempo-fleet-content {
        padding: 17px 15px;
    }

    .tempo-fleet-title {
        font-size: 18px;
    }

    .tempo-fleet-info {
        gap: 10px;
    }

    .tempo-fleet-info span {
        font-size: 9px;
    }

    .tempo-fleet-details li {
        font-size: 10px;
    }

    .tempo-fleet-call,
    .tempo-fleet-book {
        min-height: 40px;

        font-size: 10px;
    }
}