/* ==========================================================================
   Rajputana Tour - Main Stylesheet (Updated with Sliders & New Designs)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #FF8C00;
  /* Logo bright orange */
  --primary-dark: #cc6f00;
  /* Darker orange */
  --primary-gold: #FFA500;
  /* Logo gold */
  --secondary-color: #0d0d0d;
  /* Logo deep black */
  --text-color: #3a3a3a;
  --text-dark: #0d0d0d;
  --light-bg: #fff8f0;
  /* Warm cream matching logo tone */
  --white: #ffffff;
  --border-color: #f0dfc0;
  --blue-btn: #FF8C00;
  /* Replace blue with logo orange */
  --teal-btn: #FF8C00;
  /* Replace teal with logo orange */
  --green-btn: #25d366;
  --yellow-bg: #FF8C00;
  /* How it works section */
  --font-primary: 'Poppins', sans-serif;
  --font-cursive: 'Dancing Script', cursive;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

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

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

.text-orange {
  color: var(--primary-color) !important;
}

.text-dark {
  color: var(--secondary-color) !important;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.pt-0 {
  padding-top: 0;
}

.mb-40 {
  margin-bottom: 40px;
}

.relative {
  position: relative;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-blue {
  background-color: var(--blue-btn);
  color: var(--white);
  border-radius: 30px;
  padding: 12px 30px;
}

.btn-blue:hover {
  background-color: #0b2da1;
}

.btn-solid-blue {
  background-color: var(--teal-btn);
  color: var(--white);
  border-radius: 30px;
  padding: 12px 40px;
}

.btn-solid-blue:hover {
  background-color: #387c8a;
}

.btn-outline-blue {
  border: 1px solid var(--teal-btn);
  color: var(--teal-btn);
  border-radius: 5px;
  padding: 8px 15px;
  display: inline-block;
  font-size: 14px;
}

.btn-outline-blue:hover {
  background-color: var(--teal-btn);
  color: var(--white);
}

.btn-outline-green {
  border: 1px solid var(--green-btn);
  color: var(--green-btn);
  border-radius: 5px;
  padding: 8px 15px;
  display: inline-block;
  font-size: 14px;
}

.btn-outline-green:hover {
  background-color: var(--green-btn);
  color: var(--white);
}

/* Typography */
.main-title {
  font-size: 36px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 15px;
}

.cursive-title {
  font-family: var(--font-cursive);
  color: var(--blue-btn);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-btn);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.subtitle .line {
  height: 2px;
  width: 40px;
  background-color: var(--teal-btn);
  display: inline-block;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-right {
  display: flex;
  gap: 10px;
}

.top-bar-right a {
  color: var(--white);
  font-size: 16px;
}

/* Header */
header {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  background: white;
  padding: 5px;
  border-radius: 5px;
}

.nav-menu>ul {
  display: flex;
  gap: 25px;
}

.nav-menu>ul>li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 270px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 100;
  border-radius: 5px;
  flex-direction: column;
  gap: 0;
}

.nav-menu>ul>li.active-dropdown .dropdown-menu,
.nav-menu>ul>li:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  color: var(--text-color) !important;
  padding: 4px 12px;
  display: block;
  font-size: 10px;
  border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--primary-color) !important;
  padding-left: 25px;
}

.nav-menu a {
  font-weight: 500;
  font-size: 16px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.header-contact {
  display: flex;
  align-items: center;
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Slider Section & Booking Form */
.hero-wrapper {
  position: relative;
}

.heroSwiper {
  height: 80vh;
  min-height: 500px;
}

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
  color: var(--white);
  z-index: 10;
  position: relative;
}

.hero-content h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Booking Bar overlaying slider */
.booking-bar-wrapper {
  position: relative;
  z-index: 20;
  margin-top: -60px;
  padding: 0 15px;
}

.booking-bar {
  background-color: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 1000px;
  margin: 0 auto;
}

.booking-form {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 180px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: var(--font-primary);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-color);
}

/* Custom Swiper Arrows */
.hero-next,
.hero-prev {
  color: white;
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}

.hero-next:hover,
.hero-prev:hover {
  background: var(--primary-color);
}

.hero-next {
  right: 20px;
}

.hero-prev {
  left: 20px;
}

.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.arrow-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f05a28;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.arrow-btn:hover {
  background: var(--secondary-color);
}

.arrow-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 500px;
}

.circle-img-1 {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  border: 10px solid var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.circle-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-img-2 {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  right: 20px;
  bottom: 0;
  border: 10px solid var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.circle-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .about-text {
  margin-bottom: 25px;
  color: #555;
}

.about-list {
  margin-bottom: 30px;
}

.about-list li {
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-list i {
  color: var(--secondary-color);
  font-size: 14px;
}

/* How It Works Section */
.hiw-top-bg {
  background-color: var(--yellow-bg);
  padding: 60px 0 120px;
}

.hiw-cards-container {
  margin-top: -80px;
  z-index: 10;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.hiw-card {
  background: var(--white);
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top: 25px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.hiw-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.step-num {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--yellow-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  transition: var(--transition);
}

.hiw-card:hover .step-num {
  background: var(--yellow-bg);
  color: var(--white);
}

.step-icon {
  width: 120px;
  height: 120px;
  background: #f5f5f5;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: var(--secondary-color);
  transition: var(--transition);
}

.hiw-card:hover .step-icon {
  background: var(--primary-color);
  color: var(--white);
}

.hiw-card h4 {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
}

/* Packages Section */
.packages-section {
  background-color: var(--light-bg);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.package-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.pkg-img {
  height: 180px;
  position: relative;
}

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

.save-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e60023;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pkg-content {
  padding: 20px;
}

.pkg-content h3 {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  height: 44px;
  overflow: hidden;
}

.pkg-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--teal-btn);
  margin-bottom: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.pkg-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* New Fleet Section Design */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fleet-card {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.fleet-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.fl-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.fl-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.fleet-card h3 {
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.fl-reviews {
  color: #fdb913;
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fl-reviews span {
  color: #888;
  font-size: 11px;
  margin-left: 5px;
}

.fl-specs {
  text-align: left;
  margin-bottom: 25px;
  border-top: 1px solid #f5f5f5;
  padding-top: 15px;
}

.sp-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  color: #555;
}

.sp-row strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.fl-btn {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}

.fl-btn a {
  flex: 1;
  padding: 10px 0;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: var(--transition);
}

.btn-view {
  border: 1px solid var(--teal-btn);
  color: var(--teal-btn);
}

.btn-view:hover {
  background: var(--teal-btn);
  color: var(--white);
}

.btn-whatsapp {
  border: 1px solid var(--green-btn);
  color: var(--green-btn);
}

.btn-whatsapp:hover {
  background: var(--green-btn);
  color: var(--white);
}

/* Features Box Section */
.features-box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-box {
  border: 1px solid var(--primary-color);
  padding: 30px 20px;
  text-align: center;
  border-radius: 5px;
  transition: var(--transition);
  background: var(--white);
}

.feature-box:hover {
  box-shadow: 0 10px 20px rgba(232, 134, 10, 0.1);
  transform: translateY(-5px);
}

.f-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.feature-box p {
  font-size: 13px;
  color: #666;
}

/* Destinations */
.destinations-section {
  background-color: var(--light-bg);
}

.dest-card {
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.dest-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  text-align: center;
  font-weight: 500;
}

/* Testimonials */
.testi-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.testi-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  font-style: italic;
  min-height: 80px;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testi-user img,
.user-initial {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.user-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 20px;
}

.testi-user h4 {
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 600;
}

/* Stats Section */
.stats-section {
  background-color: #1a1c20;
  padding: 60px 0;
  background-image: url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?q=80&w=2070&auto=format&fit=crop');
  background-blend-mode: overlay;
  background-size: cover;
  background-position: left center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: #d1aa0f;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.stat-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.2;
}

.stat-info p {
  font-size: 13px;
  color: #777;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-bg);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid #eaeaea;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--secondary-color);
}

.faq-header .icon {
  font-size: 24px;
  font-weight: 300;
}

.faq-body {
  padding: 0 25px 25px;
  color: #666;
  display: none;
  font-size: 15px;
}

.faq-item.active .faq-header {
  color: var(--primary-color);
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: #ccc;
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-widget h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-logo img {
  height: 80px;
  margin-bottom: 20px;
  background: white;
  padding: 5px;
  border-radius: 5px;
}

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

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

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  background-color: #111;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #333;
}

/* Shorts */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.short-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.float-btn:hover {
  transform: scale(1.1);
  color: white;
}

.float-whatsapp {
  background-color: #25D366;
}

.float-call {
  background-color: #007bff;
}

/* Responsive */
@media (max-width: 1200px) {
  .features-box-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hiw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .hero-wrapper {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    padding: 20px;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .dropdown-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    background: transparent;
    padding-left: 15px;
    min-width: 100%;
    display: none;
  }

  .nav-menu ul li.active-dropdown .dropdown-menu {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .header-contact {
    display: none;
  }

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

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

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

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

  .booking-bar {
    margin-top: 0;
    border-radius: 10px;
  }

  .booking-bar-wrapper {
    margin-top: -80px;
    padding: 0 15px;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .heroSwiper {
    height: 70vh;
    min-height: 400px;
  }

  .hero-content {
    text-align: center;
    margin-top: -60px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .booking-bar-wrapper {
    margin-top: -120px;
  }

  .booking-form .form-group {
    width: 100%;
    flex: 100%;
  }

  /* Reduced padding for App-like feel */
  .section-padding {
    padding: 40px 0;
  }

  .mt-40 {
    margin-top: 25px;
  }

  .mb-40 {
    margin-bottom: 25px;
  }

  .hiw-top-bg {
    padding: 40px 0 80px;
  }

  /* 2-Column layouts for mobile */
  .hiw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .features-box-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  /* Fix About Images Overlapping */
  .about-images {
    height: 300px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 auto;
  }

  .circle-img-1 {
    width: 220px;
    height: 220px;
    position: absolute;
    left: 0;
    top: 0;
    border-width: 5px;
  }

  .circle-img-2 {
    width: 200px;
    height: 200px;
    position: absolute;
    right: 0;
    bottom: 0;
    border-width: 5px;
  }

  /* Compact cards for mobile app look */
  .hiw-card {
    padding: 25px 10px 15px;
    margin-top: 20px;
  }

  .step-num {
    width: 35px;
    height: 35px;
    font-size: 14px;
    top: -17px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hiw-card h4 {
    font-size: 14px;
  }

  .feature-box {
    padding: 20px 15px;
  }

  .feature-box h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .f-icon {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .stat-box {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin: 0 auto;
  }

  .stat-info h3 {
    font-size: 22px;
  }

  .dest-card {
    height: 200px;
  }

  .dest-name {
    font-size: 13px;
    padding: 10px;
  }

  .testi-card {
    padding: 25px 20px;
  }

  .testi-text {
    min-height: 60px;
    margin-bottom: 20px;
  }

  .faq-header {
    padding: 15px 20px;
    font-size: 14px;
  }

  .faq-body {
    padding: 0 20px 20px;
    font-size: 13px;
  }

  /* Mobile Fleet Card Fixes */
  .fleet-card {
    padding: 10px;
  }

  .fl-img {
    height: 100px;
    margin-bottom: 10px;
  }

  .fleet-card h3 {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .fl-reviews {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .fl-specs {
    padding-top: 10px;
    margin-bottom: 12px;
  }

  .sp-row {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .fl-btn {
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }

  .fl-btn a {
    font-size: 13px;
    padding: 8px 0;
    border-radius: 4px;
  }

  /* Shorts Grid Mobile Fix */
  .shorts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fl-btn {
    flex-direction: row;
  }

  .fleet-card {
    padding: 15px;
  }

  .fl-img {
    height: 130px;
  }

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

  .sp-row {
    font-size: 13px;
  }
}

/* ===== PKG2 CARD STYLE (2nd screenshot clone) ===== */
.pkg2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pkg2-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pkg2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.pkg2-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.pkg2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

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

.pkg2-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pkg2-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0;
}

.pkg2-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pkg2-meta span {
  font-size: 12.5px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg2-meta span i {
  color: var(--teal-btn, #1aa89c);
  font-size: 12px;
  flex-shrink: 0;
}

.pkg2-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 4px;
}

.pkg2-btn-view,
.pkg2-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.pkg2-btn-view {
  border-color: #FF8C00;
  color: #FF8C00;
  background: transparent;
}

.pkg2-btn-view:hover {
  background: #FF8C00;
  color: #fff;
}

.pkg2-btn-wa {
  border-color: #25d366;
  color: #25d366;
  background: transparent;
}

.pkg2-btn-wa:hover {
  background: #25d366;
  color: #fff;
}

@media (max-width: 1100px) {
  .pkg2-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pkg2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .pkg2-img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .pkg2-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== DESTINATIONS PAGE - FULL GRID ===== */
.dest-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.dest-card-full {
  position: relative;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.dest-card-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dest-card-full:hover img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  color: #fff;
  transition: padding 0.3s;
}

.dest-card-full:hover .dest-overlay {
  padding-bottom: 22px;
}

.dest-overlay h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.3;
}

.dest-overlay p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dest-overlay p i {
  color: #FF8C00;
}

.dest-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FF8C00;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

.dest-card-full:hover .dest-btn {
  opacity: 1;
  transform: translateY(0);
}

.dest-btn:hover {
  background: #cc6f00;
  color: #fff;
}

@media (max-width: 1100px) {
  .dest-grid-full {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .dest-grid-full {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .dest-card-full {
    height: 200px;
  }

  .dest-overlay h3 {
    font-size: 14px;
  }

  .dest-btn {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .dest-grid-full {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .dest-card-full {
    height: 160px;
  }
}