@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary-color: #FFC107; /* Yellow */
  --secondary-color: #1A1A1A; /* Dark Grey/Black */
  --text-dark: #333333;
  --text-light: #777777;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
  --transition: all 0.3s ease-in-out;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title span {
  color: var(--primary-color);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--secondary-color);
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0;
  background: #ffffff;
  box-shadow: none;
}

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

.logo a {
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo a span {
  color: var(--primary-color);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 20px;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #1a1a1a;
}

.menu-toggle {
  display: none;
  color: #1a1a1a;
  font-size: 24px;
  cursor: pointer;
}

.header-contact .phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-contact .phone i {
  color: var(--primary-color);
  font-size: 18px;
}

.header-contact .phone span {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 50px;
}

.hero-text {
  flex: 1;
  color: var(--white);
  padding-right: 50px;
}

.hero-text h1 {
  font-size: 52px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
}

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

.hero-form {
  width: 100%;
}

.horizontal-search-bar {
  background: var(--white);
  border-radius: 12px;
  padding: 10px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.horizontal-search-bar form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  flex: 1;
}

.search-icon {
  color: var(--primary-color);
  font-size: 24px;
}

.search-input {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.search-input label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.search-input select, .search-input input {
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  background: transparent;
  outline: none;
  padding: 0;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-input select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px auto;
  padding-right: 20px;
}

.divider {
  width: 1px;
  height: 40px;
  background-color: #E0E0E0;
}

.search-btn-container {
  padding: 0 10px;
}

.search-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

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

@media (max-width: 992px) {
  .horizontal-search-bar form {
    flex-direction: column;
  }
  .divider {
    width: 100%;
    height: 1px;
    margin: 5px 0;
  }
  .search-item {
    width: 100%;
  }
  .search-btn-container {
    width: 100%;
    padding: 10px 20px 20px 20px;
  }
  .search-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Stats Section */
.stats-section {
  background-color: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.stat-icon {
  color: var(--primary-color);
  font-size: 32px;
}

.stat-content h3 {
  font-size: 28px;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 2px;
}

.stat-content p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* Features (Welcome To Us) */
.features {
  padding: 80px 0;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.feature-item i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.feature-item p {
  color: var(--text-light);
  font-size: 14px;
}

/* App Download */
.app-download {
  background-color: var(--secondary-color);
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.app-content {
  flex: 1;
  max-width: 500px;
}

.app-content h3 {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.app-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.app-content p {
  color: #ccc;
  margin-bottom: 30px;
}

.store-buttons {
  display: flex;
  gap: 20px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--white);
  transition: var(--transition);
}

.store-btn i {
  font-size: 24px;
}

.store-btn .text {
  text-align: left;
}

.store-btn .text small {
  display: block;
  font-size: 10px;
  color: #999;
}

.store-btn .text strong {
  display: block;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

.store-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
}

.store-btn:hover .text small {
  color: var(--secondary-color);
}

.app-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.app-image img {
  max-width: 300px;
  transform: translateY(40px);
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  text-align: center;
}

.benefits-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.benefits-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: right;
}

.benefit-item.right {
  text-align: left;
  flex-direction: row-reverse;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.benefit-item p {
  color: var(--text-light);
  font-size: 14px;
}

.benefits-car {
  flex: 1.5;
}

.benefits-car img {
  max-width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

/* Rewards Section */
.rewards {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.rewards-container {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rewards-image {
  flex: 1;
}

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

.package-content {
  flex: 0 0 50%;
  padding: 40px;
}

.rewards-content h3 {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.rewards-content h2 {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.rewards-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Choose Car */
.choose-car {
  padding: 100px 0;
  background-color: var(--secondary-color);
  color: var(--white);
}

.choose-car .section-title h2 {
  color: var(--white);
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.car-card {
  background-color: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.car-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255,255,255,0.1);
}

.car-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: 5px solid rgba(255,193,7,0.3);
}

.car-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.car-card p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 25px;
}

.car-card a {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.car-card a i {
  margin-left: 5px;
}

/* Latest News */
.news {
  padding: 100px 0;
  background-color: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.news-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-img {
  height: 200px;
  overflow: hidden;
}

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

.news-card:hover .news-img img {
  transform: scale(1.1);
}

.news-content {
  padding: 25px;
}

.news-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 12px;
  color: var(--text-light);
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-meta i {
  color: var(--primary-color);
}

.news-content h4 {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-content h4 a:hover {
  color: var(--primary-color);
}

.btn-read {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Testimonials */
.testimonials {
  background-image: url('../images/testimonial.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.8);
}

.testimonial-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 30px;
}

.testimonial-text {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.8;
}

.testimonial-author h5 {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 5px;
}

.testimonial-author span {
  font-size: 14px;
  color: #ccc;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active, .dot:hover {
  background-color: var(--primary-color);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255,193,7,0.2);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
}

.info-item p {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 15px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form .form-row {
  gap: 20px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: #999;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-widget .logo a {
  margin-bottom: 20px;
  display: inline-flex;
}

.footer-widget p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-widget h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
}

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

.footer-links a {
  color: #999;
  font-size: 14px;
}

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

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
}

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

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 35px;
  height: 35px;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Services Cards */
.services-cards {
  padding: 80px 0;
  background-color: #F8F9FA;
}

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

.service-card.premium-card {
  background-color: var(--white);
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border-radius: 8px;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid #eee;
  overflow: hidden;
  z-index: 1;
}

.service-card.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: -1;
  transition: transform 0.5s ease;
  transform: scaleY(0);
  transform-origin: bottom;
}

.service-card.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255,193,7,0.2);
  border-color: var(--secondary-color);
}

.service-card.premium-card:hover::before {
  transform: scaleY(1);
}

.service-card.premium-card .card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  transition: all 0.4s ease;
}

.service-card.premium-card:hover .card-icon {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: scale(1.1) rotate(5deg);
}

.service-card.premium-card h4 {
  color: var(--secondary-color);
  font-size: 20px;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  min-height: 50px;
  transition: color 0.4s ease;
}

.service-card.premium-card:hover h4 {
  color: var(--primary-color);
}

.service-card.premium-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.4s ease;
}

.service-card.premium-card:hover p {
  color: #ddd;
}

/* About Us */
.about-us {
  padding: 60px 0;
  background-color: #eee9dd;
  position: relative;
  color: var(--text-color);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.about-image {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 5px solid var(--primary-color);
}

.about-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-content {
  flex: 1;
}

.about-content .about-title {
  color: var(--secondary-color);
}

.about-content .about-desc {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

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

.about-feature i {
  color: var(--primary-color);
  font-size: 18px;
}

.about-feature span {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
}

/* Package Tours */
.package-tours {
  background-color: #faf8f5;
  padding: 80px 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: all 0.3s ease;
  transform: translateZ(0); /* Fix for Safari border-radius clipping */
}

.package-card:nth-child(even) {
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.package-image {
  width: 100%;
  height: 240px;
  position: relative;
  flex: none;
}

.package-image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tripadvisor-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 120px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tripadvisor-badge img {
  width: 100%;
  height: auto;
}

.package-content {
  padding: 40px;
}

.package-title {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 700;
  text-align: left;
}

.package-duration {
  text-align: left;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.package-inclusions {
  list-style: none;
  margin-left: 0;
  margin-bottom: 30px;
  color: #555;
  padding: 0;
}

.package-inclusions li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.package-inclusions li::before {
  content: "\2714";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
}

.package-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-text {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.btn-text:hover {
  text-decoration: underline;
}

/* Cab Services */
.cab-services {
  padding: 100px 0;
  background-color: #ffffff;
}

.cab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cab-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
  display: flex;
  flex-direction: column;
}

.cab-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255,193,7,0.2);
}

.cab-image {
  position: relative;
  background-color: #f9f9f9;
  padding: 0;
  text-align: center;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.cab-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #1a2238;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cab-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cab-wishlist:hover {
  color: #ff4d4d;
}

.cab-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cab-min-booking {
  color: #2ea35b;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cab-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.cab-title-left h3 {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-weight: 800;
}

.cab-title-left .cab-rating {
  font-size: 11px;
  margin-bottom: 0;
}

.cab-rating i {
  color: #ffb800;
}

.cab-rating span {
  color: #777;
  margin-left: 5px;
}

.cab-price-right {
  text-align: right;
}

.cab-price {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 800;
}

.cab-price-note {
  font-size: 10px;
  color: #777;
}

.cab-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 15px 0;
  list-style: none;
}

.cab-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
  width: 18%;
  margin-bottom: 0;
}

.cab-features .feature-icon {
  width: 36px;
  height: 36px;
  background: #f0f4f8;
  color: #4a5c7a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cab-features li span {
  font-size: 10px;
  font-weight: 600;
  color: #555;
  text-align: center;
  white-space: nowrap;
}

.cab-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-details {
  flex: 1;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s;
}

.btn-details:hover {
  background-color: #e0a800;
  color: #fff;
}

.btn-whatsapp {
  flex: 1;
  background-color: #2ea35b;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s;
}

.btn-whatsapp:hover {
  background-color: #248248;
  color: #fff;
}

/* Why Choose Us - Dark Premium Layout */
.why-choose-us.dark-theme {
  position: relative;
  padding: 120px 0;
  background-image: url('../images/jaisalmer_dunes_twilight.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.why-choose-us.dark-theme .why-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 20, 30, 0.9) 0%, rgba(30, 40, 50, 0.75) 100%);
}

.why-container {
  position: relative;
  z-index: 1;
}

.why-content-split {
  display: flex;
  gap: 60px;
  align-items: center;
}

.why-left {
  flex: 1;
}

.why-right {
  flex: 1;
}

.why-header-left {
  text-align: left;
  margin-bottom: 30px;
}

.why-header-left span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.why-header-left h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 800;
  text-transform: capitalize;
}

.why-header-left .header-line {
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0 0 25px 0;
  border-radius: 2px;
}

.why-header-left .subtitle {
  font-size: 17px;
  color: #ddd;
  line-height: 1.7;
}

.why-intro-box-left {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.why-intro-box-left h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.why-intro-box-left p {
  font-size: 15px;
  color: #eee;
  line-height: 1.8;
  margin-bottom: 15px;
}

.why-intro-box-left p:last-child {
  margin-bottom: 0;
}

.why-services-grid.new-layout-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-15px);
  background: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.icon-box {
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.03);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.why-card:hover .icon-box {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(360deg);
}

.why-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 700;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  background-image: url('../images/jaisalmer_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 50px 0;
  margin: 0;
}

.cta-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 193, 7, 0.85); /* Theme yellow overlay */
}

.cta-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-content h2 {
  color: var(--secondary-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.cta-content p {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.cta-btn {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: inline-block;
}

.cta-btn:hover {
  background-color: #333333;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Jaisalmer Experiences */
.experiences-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.experiences-section .section-title.text-left {
  text-align: left;
  margin-bottom: 40px;
}

.experiences-section .section-title.text-left h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 700;
}

.experiences-section .section-title.text-left p {
  font-size: 16px;
  color: #666;
}

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

.experience-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.experience-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.experience-content {
  padding: 25px;
  text-align: center;
}

.experience-content h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 12px;
  font-weight: 700;
}

.experience-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.experience-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-whatsapp {
  background-color: #2dd46a;
  color: #fff;
  padding: 10px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 1;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-whatsapp:hover {
  background-color: #25b95a;
  color: #fff;
}

.btn-details {
  background-color: #ff9800;
  color: #fff;
  padding: 10px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-details:hover {
  background-color: #e68900;
  color: #fff;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: transparent; /* Removed background color */
  color: #333333;
}

.testimonials-section .testimonials-title h2 {
  color: var(--secondary-color);
}

.testimonials-section .testimonials-title p {
  color: #666;
  margin-bottom: 40px;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 30px;
  animation: scrollMarquee 30s linear infinite;
  padding: 20px 0;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); }
}

.testimonial-card {
  width: 350px; /* Fixed width for marquee cards */
  flex-shrink: 0;
  background: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  white-space: normal;
}

.testimonial-card .stars {
  color: #f1c40f;
  margin-bottom: 15px;
  font-size: 14px;
}

.testimonial-card .stars span {
  color: #666;
  font-weight: 600;
  margin-left: 5px;
}

.testimonial-card .review-text {
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}

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

.reviewer-avatar {
  width: 45px;
  height: 45px;
  background-color: #d4af37;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.reviewer-info h4 {
  margin: 0 0 4px 0;
  color: #2c3e50;
  font-size: 15px;
  font-weight: 700;
}

.reviewer-info p {
  margin: 0;
  font-size: 13px;
  color: #777;
}

/* About Us Page Styles */
.about-page header.solid-header {
    background-color: #ffffff;
    position: relative;
    box-shadow: none;
}

.page-banner {
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.8)), url('../images/camel_safari_bg.png') center/cover no-repeat;
    color: #fff;
    padding: 60px 0; /* Reduced padding to decrease height */
    text-align: center;
}
.page-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.page-banner p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #dcdde1;
}

/* Our Story Section */
.about-story-section {
    padding: 80px 0;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.story-content h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.story-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}
.story-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.story-feature {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s;
}
.story-feature:hover {
    transform: translateY(-5px);
}
.sf-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.story-feature h4 {
    font-size: 16px;
    margin-bottom: 10px;
}
.story-feature p {
    font-size: 13px;
    margin-bottom: 0;
    color: #777;
}
.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mv-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,193,7,0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px auto;
}
.mv-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--secondary-color);
}
.mv-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Why Choose About */
.why-choose-about-section {
    padding: 80px 0;
}
.why-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.why-about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.why-about-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}
.why-about-content p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}
.why-about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.why-about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #555;
}
.why-about-list li i {
    color: var(--primary-color);
    margin-top: 4px;
}
.why-about-list li strong {
    color: var(--secondary-color);
}
.book-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s;
}
.book-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Sightseeing Page Styles */
.sightseeing-page-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.st-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.st-row:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.st-row.reverse {
    flex-direction: row-reverse;
}

.st-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

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

.st-row:hover .st-image img {
    transform: scale(1.05);
}

.st-content {
    flex: 1;
}

.st-content h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.st-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.st-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.st-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.st-content ul li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.st-content ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
    font-size: 14px;
}

/* Contact Page Styles */
.contact-cards-section {
    padding: 60px 0 30px;
    background-color: #fcfcfc;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.c-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.c-card .c-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.c-card:hover .c-icon {
    background: var(--primary-color);
    color: #fff;
}

.c-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.c-card p {
    color: #666;
    line-height: 1.6;
}

.contact-form-section {
    padding: 30px 0 80px;
    background-color: #fcfcfc;
}

.contact-layout {
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.contact-map {
    flex: 1;
    min-height: 400px;
}

.contact-form-box {
    flex: 1;
    padding: 60px 50px;
    background: #fff;
}

.contact-form-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

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

.form-row .form-group {
    flex: 1;
}

.contact-form-box .form-group {
    margin-bottom: 20px;
}

.contact-form-box input, 
.contact-form-box textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    background: #fcfcfc;
    transition: all 0.3s;
}

.contact-form-box input:focus, 
.contact-form-box textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    background: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-content .section-title {
    text-align: center !important;
  }
  .story-grid, .why-about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .st-row, .st-row.reverse {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }
  .st-image {
    width: 100%;
  }
  .st-image img {
    height: auto;
  }
  .st-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .st-content {
    text-align: center;
  }
  .st-content ul li {
    text-align: left;
  }
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    flex-direction: column;
  }
  .contact-form-box {
    padding: 40px 20px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .hero-text {
    padding-right: 0;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-form {
    flex: 1;
    max-width: 100%;
  }
  .features-grid, .car-grid, .news-grid, .cards-grid, .tours-grid, .cab-grid, .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-layout, .rewards-container, .why-content, .why-content-split {
    flex-direction: column;
  }
  .benefit-item.right {
    flex-direction: row;
    text-align: right;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-container {
    flex-direction: column;
    text-align: center;
  }
  .store-buttons {
    justify-content: center;
  }
  .app-image img {
    margin-top: 50px;
    transform: translateY(0);
  }

}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 40px;
  }
  .form-row {
    flex-direction: column;
  }
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  nav.active {
    left: 0;
  }
  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  nav ul li a {
    font-size: 20px;
  }
  .menu-toggle {
    display: block;
  }
  .header-contact {
    display: none;
  }
  .features-grid, .car-grid, .news-grid, .footer-grid, .tours-grid, .cab-grid, .why-services-grid.new-layout, .why-services-grid.new-layout-split, .experiences-grid, .mv-grid, .story-features {
    grid-template-columns: 1fr;
  }
  .contact-info {
    flex-direction: column;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* =========================================
   PREMIUM FOOTER STYLES
   ========================================= */
.main-footer {
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%), url('../images/footer-safari-bg.png') center/cover no-repeat;
    color: #e0e0e0;
    padding: 80px 0 0;
    margin-top: 60px;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Footer Headings */
.footer-col h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

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

.footer-col p {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
    color: #bbb;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    font-size: 16px;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f105'; /* FontAwesome angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-color);
    transition: margin-right 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    margin-right: 15px;
}

/* Contact Info */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #bbb;
}

.footer-contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

/* Location Map */
.footer-map iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.footer-map iframe:hover {
    transform: scale(1.02);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    position: relative;
    margin-top: 40px;
}

.footer-bottom-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-text p {
    margin: 0;
    color: #999;
    font-size: 14px;
}

.footer-bottom-text p:first-child {
    margin-left: 70px; /* Space for the button */
}

.scroll-top-btn {
    position: absolute;
    top: -25px; /* Center vertically on the border */
    left: 0; 
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background-color: #fff;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 35px 15px 25px 15px !important;
    }
    .footer-bottom-text {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 8px !important;
        width: 100% !important;
    }
    .footer-bottom-text p:first-child {
        margin-left: 70px !important;
        margin-top: 0 !important;
    }
    .footer-bottom-text p:last-child {
        margin-left: 70px !important;
    }
    .scroll-top-btn {
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    .scroll-top-btn:hover {
        transform: translate(0, -55%) !important;
    }
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .main-footer {
        padding: 60px 0 0;
    }
}

/* =========================================
   FLOATING ACTION BUTTONS
   ========================================= */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

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

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

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

.whatsapp-btn {
    background-color: #25D366;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    animation: none;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hidden cabs */
.hidden-cab {
    display: none;
}

/* View All Cabs Button */
.btn-view-all-cabs {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-view-all-cabs:hover {
    background-color: var(--primary-color);
    color: var(--white); /* changing text color to white might be better if primary is yellow, but wait, primary is yellow/orange. secondary is black. */
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: transparent;
}

.how-it-works .section-title p {
    color: var(--text-light);
    margin-top: 15px;
    font-size: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background-color: var(--white);
    padding: 50px 30px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: var(--transition);
    position: relative;
    margin-top: 20px;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

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

.step-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Popular Destinations Section */
.popular-destinations {
    padding: 80px 0;
    background-color: #fafafa;
}

.dest-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.dest-text {
    flex: 1;
    min-width: 300px;
}

.dest-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.dest-text .section-title span {
    color: var(--text-dark);
    font-weight: 600;
}

.dest-text .section-title h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.dest-grid {
    flex: 2;
    min-width: 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dest-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

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

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
}

.dest-overlay h4 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.dest-overlay p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 991px) {
    .dest-container {
        flex-direction: column;
    }
    .dest-grid {
        min-width: 100%;
    }
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-title-area {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title-area span {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.faq-title-area h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.faq-title-area p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

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

.faq-item {
    background-color: #fafafa;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px; /* arbitrary max-height for animation */
}

.faq-item.active .faq-question i {
    transform: rotate(45deg); /* turns + into an x, or we can just swap icons in js/css */
}

/* New Testimonials Layout */
.testimonials-section.new-layout {
    background-color: #fcf9f2; /* Light warm background for testimonials like in image */
    padding: 80px 0;
}

.reviews-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card.text-center {
    width: auto; /* override fixed width from old marquee */
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stars.black-stars {
    color: #000;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-card.text-center .review-text {
    font-style: normal;
    color: #444;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.testimonial-card.text-center .reviewer-info h4 {
    color: #111;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.testimonial-card.text-center .reviewer-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Why Travelers Prefer Us Section */
.why-us-section {
    padding: 80px 0;
    background-color: #fff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-us-card {
    background-color: #faf9f6;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f0ebe1;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #fce8db;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.why-us-card h4 {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-us-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Global Mobile Responsiveness and Spacing */
@media (max-width: 768px) {
    section, footer {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .section-title h2 {
        font-size: 28px !important;
    }
    
    .hero-content h1 {
        font-size: 32px !important;
    }
    
    .hero-content p {
        font-size: 16px !important;
    }
}

/* Mobile Layout for Stats Grid (2x2) */
@media (max-width: 768px) {
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        min-width: 0;
        flex: none;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-content {
        align-items: center;
    }
    
    .stat-content h3 {
        font-size: 24px;
    }
    
    .stat-content p {
        font-size: 14px;
    }
}



/* Mobile Hero fixes */
@media (max-width: 768px) {
    .hero-container {
        padding-top: 120px !important;
        gap: 30px !important;
    }
    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
        padding: 0 15px;
    }
    .hero-buttons a {
        width: 100%;
        display: block;
        box-sizing: border-box;
    }
    .horizontal-search-bar {
        margin-top: 20px;
    }
    .search-item {
        justify-content: flex-start;
    }
}


/* Fix for mobile header and hero */
@media (max-width: 768px) {
  header {
    position: relative !important;
    padding: 0 !important;
  }
  .header-container {
    padding: 5px 20px !important;
  }
  .hero {
    height: auto !important;
    min-height: calc(100vh - 80px) !important;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero-container {
    padding-top: 0 !important;
  }
  .hero-text h1 {
    font-size: 32px !important;
    margin-top: 20px;
  }
}

/* Mobile Package Card Fixes */
@media (max-width: 991px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .package-card,
    .package-card:nth-child(even) {
        flex-direction: column;
    }
    
    .package-image {
        width: 100%;
        min-height: 250px;
        flex: none;
    }
}

/* Header Buttons */
.btn-header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-header-phone:hover {
  background: var(--primary-color);
  color: #000;
}

.btn-header-book {
  background: var(--primary-color);
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.btn-header-book:hover {
  background: transparent;
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .header-contact {
    display: none !important;
  }
}

/* Top Bar CSS */
.top-bar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0;
  font-size: 12px;
  line-height: 1;
}

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

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

.top-bar-left a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.top-bar-left a:hover {
  opacity: 0.8;
}

.top-bar-left .social-icons {
  display: flex;
  gap: 15px;
}

.top-bar-left .divider {
  color: rgba(255, 255, 255, 0.5);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  padding: 0;
}

@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 5px;
    width: 100%;
  }
  .hide-on-mobile {
    display: none !important;
  }
  .top-bar {
    font-size: 10.5px;
    padding: 6px 0;
  }
  .top-bar-left {
    gap: 6px;
  }
  .top-bar-left .social-icons {
    gap: 6px;
  }
  .top-bar-left a {
    gap: 4px;
  }
  .top-bar-right {
    gap: 4px;
  }
  
  /* Reduce gap between cab services and experiences section */
  .cab-services {
    padding-bottom: 40px;
  }
  .experiences-section {
    padding-top: 40px;
  }
}

/* Pricing Table CSS */
.cab-pricing {
  background-color: #f8f9fa;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.pricing-table th, .pricing-table td {
  border: 1px solid #e0e0e0;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}
.pricing-table th {
  background-color: #cb8f47;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.pricing-table tbody tr:hover {
  background-color: #fcfcfc;
}
.pricing-table tbody td {
  color: #333;
  font-size: 15px;
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ==========================================
   ADDED CUSTOM DESIGNS AND BRAND NEW FEATURES
   ========================================== */

/* Hero badge (matches Mobile Look of Screenshot 2) */
.hero-badge {
  display: inline-block;
  background-color: rgba(26, 21, 18, 0.75);
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  backdrop-filter: blur(5px);
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2); }
  100% { transform: scale(1.03); box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4); }
}

/* Redesigned Premium Package Cards (Screenshot 1 alignment) */
.package-tours {
  background-color: #f7f5f1;
}

.package-card {
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background-color: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.package-duration {
  font-size: 16px;
  font-weight: 700;
  color: #ff9800 !important; /* Gold duration text */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-duration i {
  color: #ff9800 !important;
}

.package-inclusions {
  margin-bottom: 25px;
}

.package-inclusions li {
  font-size: 15px;
  color: #4a4a4a;
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  text-align: left;
}

.package-inclusions li::before {
  content: "\2714" !important; /* Bold checkmark symbol */
  color: #ff9800 !important; /* Yellow tick icon style */
  font-weight: 900 !important;
  font-size: 15px !important;
  position: absolute;
  left: 0;
  top: -1px;
}

.package-actions {
  border-top: 1px solid #f0edf8;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-outline-primary {
  border: 2.2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background: #fff !important;
  padding: 12px 28px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.5px;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  color: #000 !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-text {
  color: #2b2b2b !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.btn-text:hover {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
}

/* Sticky Bottom Navigation (Screenshot 2 Mobile Footer look) */
.sticky-bottom-nav {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: calc(62px + env(safe-area-inset-bottom, 0px)) !important;
  padding-bottom: env(safe-area-inset-bottom, 0px) !important;
  background-color: #ffffff !important;
  display: none !important; /* Disabled completely */
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  z-index: 999999 !important;
  border-top: 1px solid #eeeeee;
  box-shadow: 0 -3px 20px rgba(0,0,0,0.08);
}

.sticky-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #555555; /* Dim text color */
  font-size: 9.5px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
  height: 100%;
}

.sticky-bottom-item i {
  font-size: 18px;
  margin-bottom: 4px;
  transition: transform 0.2s ease;
}

.sticky-bottom-item:hover i {
  transform: translateY(-2px);
}

.sticky-bottom-item.active {
  color: #000000;
}

.sticky-bottom-item.active i {
  color: var(--primary-color);
}

.sticky-bottom-item.whatsapp-item {
  color: #257343; /* Forest Green */
}

.sticky-bottom-item.call-item {
  color: #ff9800; /* Warm Orange */
}

@media (max-width: 768px) {
  .sticky-bottom-nav {
    display: none !important;
  }
  .floating-buttons {
    display: flex !important; /* Show floating buttons on mobile */
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 99999 !important;
  }
  body {
    padding-bottom: 0px !important; /* Remove padding since bottom nav is disabled */
  }
}

/* Booking Confirmation Modal styling */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  backdrop-filter: blur(6px);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 440px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  position: relative;
  border: 1px solid rgba(255, 193, 7, 0.25);
  animation: modalSlideUp 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
}

@keyframes modalSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  font-weight: 300;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.close-modal:hover {
  color: #111;
}

.modal-header {
  margin-bottom: 25px;
  text-align: center;
}

.modal-header h3 {
  font-size: 22px;
  color: #1c1613;
  margin-bottom: 8px;
  font-weight: 700;
}

.modal-header p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.modal .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.modal .form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal .form-group label i {
  color: var(--primary-color);
  margin-right: 6px;
}

.modal .form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dcdad5;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #1c1613;
  outline: none;
  background-color: #faf9f6;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.modal .form-group input:focus {
  border-color: var(--primary-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

.btn-modal-submit {
  background-color: var(--primary-color);
  color: #000000;
  border: none;
  font-size: 15.5px;
  font-weight: 700;
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.25);
}

.btn-modal-submit:hover {
  background-color: #e5ac06;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(255, 193, 7, 0.35);
}

.btn-modal-submit:active {
  transform: translateY(0);
}

/* Mobile Search Widget adjustments for Screenshot 2 look */
@media (max-width: 992px) {
  .horizontal-search-bar {
    border-radius: 20px !important;
    padding: 20px 15px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
    border: 1px solid rgba(255, 193, 7, 0.15) !important;
  }
  .search-item {
    padding: 12px 10px !important;
    gap: 15px !important;
  }
  .search-icon {
    font-size: 26px !important;
    color: #ff9800 !important; /* Orange/yellow icon */
    width: 30px;
    text-align: center;
  }
  .search-input label {
    font-size: 10.5px !important;
    letter-spacing: 0.5px;
    color: #8c857e !important;
    margin-bottom: 4px !important;
  }
  .search-input select, .search-input input {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #2b241e !important;
  }
  .divider {
    height: 1.5px !important;
    background-color: #f0ede8 !important;
    margin: 2px 0 !important;
  }
  .search-btn-container {
    padding: 15px 0 0 0 !important;
  }
  .search-btn {
    border-radius: 10px !important;
    background: #ff9800 !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    padding: 16px !important;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3) !important;
  }
  .search-btn:hover {
    background: #e68900 !important;
  }
}

/* ========================================================
   GLOBAL BUTTON STYLING UNIFICATION (SCREENSHOT 3 OVERRIDES)
   ======================================================== */

/* Unified Orange Buttons: Primary, Details, Call, Modals, Headers */
.btn-primary,
.btn-details,
.btn-pkg-call,
.btn-modal-submit,
.btn-header-book,
.btn-view-all-cabs {
  background-color: #ff8f00 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: none !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(255, 143, 0, 0.25) !important;
  cursor: pointer;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif !important;
}

.btn-primary:hover,
.btn-details:hover,
.btn-pkg-call:hover,
.btn-modal-submit:hover,
.btn-header-book:hover,
.btn-view-all-cabs:hover {
  background-color: #e58000 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 143, 0, 0.4) !important;
}

/* Unified Green Buttons: WhatsApp, WhatsApp package bookings */
.btn-whatsapp,
.btn-pkg-whatsapp {
  background-color: #257343 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: none !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(37, 115, 67, 0.25) !important;
  cursor: pointer;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif !important;
}

.btn-whatsapp:hover,
.btn-pkg-whatsapp:hover {
  background-color: #1c5732 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 115, 67, 0.4) !important;
}

/* Other secondary buttons: unified border radius and padding */
.btn-outline,
.btn-header-phone,
.btn-read {
  border-radius: 12px !important;
  padding: 12px 24px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: 'Montserrat', sans-serif !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box;
}

.btn-outline:hover,
.btn-header-phone:hover,
.btn-read:hover {
  transform: translateY(-2px) !important;
}

.search-btn {
  border-radius: 12px !important;
  background-color: #ff8f00 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 15px 30px !important;
  box-shadow: 0 5px 15px rgba(255, 143, 0, 0.3) !important;
}

.search-btn:hover {
  background-color: #e58000 !important;
}

/* Overrides for Product Card Buttons (Packages, Cabs, Experiences) to ensure size, padding, color consistency */
.package-actions,
.cab-actions,
.experience-actions {
  display: flex !important;
  gap: 8px !important;
  width: 100% !important;
  margin-top: 15px !important;
  padding-top: 15px !important;
  border-top: 1px solid #f0edf8 !important;
  box-sizing: border-box !important;
}

.package-actions .btn-pkg-call,
.package-actions .btn-pkg-whatsapp,
.cab-actions .btn-details,
.cab-actions .btn-whatsapp,
.experience-actions .btn-details,
.experience-actions .btn-whatsapp {
  flex: 1 !important;
  font-size: 12.5px !important; /* Slightly smaller font size to fit text */
  padding: 10px 6px !important; /* Compact padding to prevent layout breakages */
  gap: 6px !important;
  justify-content: center !important;
  white-space: nowrap !important; /* Stop text wrapping */
  border-radius: 10px !important; /* Unified rounded corners */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08) !important;
  display: inline-flex !important;
  align-items: center !important;
  font-family: 'Montserrat', sans-serif !important;
}

/* Specific colors to match the package action buttons */
.cab-actions .btn-details,
.experience-actions .btn-details {
  background-color: #ff8f00 !important;
  color: #ffffff !important;
}

.cab-actions .btn-details:hover,
.experience-actions .btn-details:hover {
  background-color: #e58000 !important;
}

.cab-actions .btn-whatsapp,
.experience-actions .btn-whatsapp {
  background-color: #257343 !important;
  color: #ffffff !important;
}

.cab-actions .btn-whatsapp:hover,
.experience-actions .btn-whatsapp:hover {
  background-color: #1c5732 !important;
}

/* Responsiveness on mobile: keep side-by-side layout clean */
@media (max-width: 480px) {
  .package-actions,
  .cab-actions,
  .experience-actions {
    flex-direction: row !important;
  }
  .package-actions .btn-pkg-call,
  .package-actions .btn-pkg-whatsapp,
  .cab-actions .btn-details,
  .cab-actions .btn-whatsapp,
  .experience-actions .btn-details,
  .experience-actions .btn-whatsapp {
    font-size: 11.5px !important;
    padding: 10px 4px !important;
    gap: 4px !important;
  }
}


/* Special Offer Modal */
.offer-modal-content {
  border: 3px solid #e53935;
  text-align: center;
  padding: 30px 20px;
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.offer-modal-content .close-offer-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #333;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}
.offer-image-container {
  margin-bottom: 20px;
}
.offer-image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.offer-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.3;
}
.btn-offer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #008000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  gap: 8px;
  width: 100%;
  max-width: 280px;
  transition: background-color 0.3s ease;
}
.btn-offer-whatsapp:hover {
  background-color: #006600;
  color: #fff;
}
