.lux-slider {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
  /* height: 450px; */
}


.slider-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 50px 0px;
  padding-top: 20px;
}

.slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* height: 450px; */
}

.slide.active {
  display: flex;
  animation: fadeIn 0.8s ease-in-out;
}

.slide-left {
  flex: 1;
  animation: slideInLeft 0.8s ease-in-out;
}

.slide-left h2 {
  font-family: 'Lora', serif;
  font-size: 55px;
  color: var(--lux-gold);
  margin-bottom: 20px;
  line-height: 1.2em;
}

.slide-left h1 {
  font-family: 'Lora', serif;
  font-size: 55px;
  color: var(--lux-gold);
  margin-bottom: 20px;
  line-height: 1.2em;
}

.slide-left p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #eee;
}

.slide-right {
  flex: 1;
  text-align: right;
  animation: slideInRight 0.8s ease-in-out;
}

.slide-right img {
  max-width: 100%;
}

/* Controls bottom-right */
.slider-controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.slider-nav span {
      cursor: pointer;
    color: var(--lux-gold);
    font-size: 22px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--lux-gold);
    border-radius: 40px;
}

.slider-nav span:hover {
  color: #fff;
  background: var(--lux-gold);
  border-radius: 50%;
}

/* Pagination Dots */
.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  background: #777;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots span.active {
  background: var(--lux-gold);
  transform: scale(1.3);
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideInLeft {
  from {transform: translateX(-50px); opacity: 0;}
  to {transform: translateX(0); opacity: 1;}
}

@keyframes slideInRight {
  from {transform: translateX(50px); opacity: 0;}
  to {transform: translateX(0); opacity: 1;}
}

/* Mobile: */
@media screen and (max-width: 767px) {
  .slide.active {
    flex-direction: column;
  }
  .slide-left h2{
    font-size: 40px;
  }
  .slide-left{
    padding: 0px 20px;
  }
}


/* 4-step booking process */
/* How it Works Section */
.how-it-works {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.how-card {
  position: relative;
  background: #fff;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.how-card::before {
  content: attr(data-step);
  position: absolute;
  top: -30px;
  right: -30px;
  background: var(--lux-gold, #d4af37);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.how-card:hover:before{
    top: -10px;
  right: -10px;
}
.how-card i {
  font-size: 2.5rem;
  color: var(--lux-gold, #d4af37);
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.how-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.how-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.how-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.how-card:hover::before {
  background: #000;
  transform: scale(1.1);
}

.how-card:hover i {
  transform: scale(1.2) rotate(10deg);
}




/* Chauffeur Services Section  */
.chauffeur-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.chauffeur-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 40px;
}

.chauffeur-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.chauffeur-content p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.chauffeur-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.chauffeur-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: #333;
  transition: all 0.3s ease-in-out;
}

.chauffeur-list li i {
  color: var(--lux-gold, #d4af37);
  margin-right: 12px;
  font-size: 1.2rem;
  opacity: 1;
  transform: translateX(-10px);
  transition: all 0.3s ease-in-out;
}

.chauffeur-list li:hover i {
  opacity: 1;
  transform: translateX(0);
}

.chauffeur-image img {
  width: 100%;
  border-radius: 15px;
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.1); */
  transition: transform 0.4s ease-in-out;
}

.chauffeur-image img:hover {
  transform: scale(1.05);
}

/* Mobile: 1 card */
@media screen and (max-width: 767px) {
  .chauffeur-section{
    padding-top: 20px;
  }
}


/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--lux-gold, #d0a741), #000);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle,
    #a67c00 0%,     /* deep golden brown */
    #d4af37 30%,    /* metallic gold */
    #ffd700 60%,    /* bright gold */
    #fff8dc 90%     /* light champagne gold */
  );
  opacity: 0.15; /* subtle effect */
  animation: pulseBG 10s infinite linear;
}


@keyframes pulseBG {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #fff;
  color: #000;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  background: var(--lux-gold, #d0a741);
  color: #fff;
}

.cta-btn:hover i {
  transform: translateX(5px);
}



/* Pricing Section with carousel  */
.pricing-section {
  padding: 80px 20px;
  background: var(--dark-bg);
  color: var(--light-text);
  position: relative;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* margin-bottom: 40px; */
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
}

.pricing-header h2 {
  margin-bottom: 10px;
  color: var(--light-text);
}

.pricing-header p {
  font-size: 1rem;
  color: var(--muted-text);
  max-width: 550px;
}

.pricing-nav button {
  cursor: pointer;
    color: var(--lux-gold);
    font-size: 22px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--lux-gold);
    border-radius: 40px;
    background: transparent;
}

.pricing-nav button:hover {
  background: var(--lux-gold);
  color: #fff;
}

.pricing-carousel {
  overflow: hidden; /* let half card be visible */
  position: relative;
}

.pricing-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  padding: 20px 0;
}

.pricing-card {
  background: var(--card-bg, #111);
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  flex-shrink: 0;  /* prevent shrinking */
  transition: transform 0.3s ease;
}

/* Desktop: 3.5 cards */
@media screen and (min-width: 1024px) {
  .pricing-card {
    flex-basis: calc((100% - 60px) / 3.5); /* 3 gaps of 20px */
  }
}

/* Tablet: 2.5 cards */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .pricing-card {
    flex-basis: calc((100% - 40px) / 2.5); /* 2 gaps of 20px */
  }
}

/* Mobile: 1 card */
@media screen and (max-width: 767px) {
  .pricing-card {
    flex-basis: 100%; /* full width */
  }
  .pricing-header{
    margin-bottom: 20px;
  }
}



.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.pricing-card-header h3 {
  font-size: 1.4rem;
  color: var(--light-text);
  margin: 0;
}

.badge {
  background: var(--lux-gold);
  color: #000;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.pricing-card-body p {
  font-size: 0.95rem;
  color: var(--muted-text);
  margin-bottom: 15px;
}

.key-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;

}

.key-benefits li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  color: var(--light-text);
}

.key-benefits li i {
  color: var(--lux-gold);
  margin-right: 8px;
}

.note {
  font-size: 0.8rem;
  color: var(--muted-text);
  margin-bottom: 15px;
}

.pricing-card-footer {
  border-top: 1px solid #333;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--lux-gold);
}

.pricing-dots {
  text-align: center;
  margin-top: 25px;
}

.pricing-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #555;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-dots span.active {
  background: var(--lux-gold);
}
.cta-btn{
    font-size: 0.9rem;
    padding: 10px 15px;
}


/* =========================
   COST CALCULATOR
========================= */
.cost-calculator {
  background: #f9f9f9;
  padding: 60px 20px;
}

.calculator-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-form h2 {
  font-family: 'Lora', serif;
  margin-bottom: 10px;
  color: var(--lux-black);
}

.calc-form p {
  margin-bottom: 20px;
  color: #555;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border 0.2s;
}

.form-group select:focus {
  border-color: var(--lux-gold);
}

/* Right Side */
.calc-result h3 {
  margin-bottom: 20px;
  color: var(--lux-black);
}

.price-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: bold;
  color: var(--lux-gold);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Car Preview */
.car-image {
  margin-top: 25px;
  text-align: center;
}

.car-image img {
  max-width: 300px;
  width: 100%;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.car-image img.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .calculator-inner {
    grid-template-columns: 1fr;
  }
  .calc-result {
    margin-top: 30px;
  }
}


/* =========================
   FLEET PRICING SECTION
========================= */
.fleet-pricing {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.fleet-pricing .section-title {
  margin-bottom: 50px;
  color: var(--lux-black);
  font-family: 'Lora', serif;
}

.fleet-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fleet-card {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  position: relative;
}

.fleet-card::before{
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 0 0 0 1000px; 
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--lux-gold);
    opacity: 0;
    transition: all 0.3s ease-in;
}

.fleet-card:hover::before{
    content: '';
    width: 700px;
    height: 700px;
    top: 0px;
    right: 0px;
    opacity: 0.1;
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: var(--lux-gold);
}

.fleet-card img {
  max-width: 200px;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.3s ease;
}

.fleet-card:hover img {
  transform: scale(1.05);
}

.fleet-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--lux-black);
}

.price-list {
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.price-list li {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--lux-black);
}

.fleet-card .btn-outline {
  margin-top: auto;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .fleet-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .fleet-cards {
    grid-template-columns: 1fr;
  }
}



/* =========================
   DRIVER SERVICES SECTION
========================= */
.driver-services {
  background: #121212; /* dark background */
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.driver-services .section-title {
  margin-bottom: 50px;
  color: #f9c744; /* golden accent */
  font-family: 'Lora', serif;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #1e1e1e;
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(40px);
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card img.service-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  border-radius: 100px;
  border: 2px solid #fff;
}

.service-card:hover img.service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.service-card p {
  font-size: 15px;
  color: #ccc;
}

.service-card:hover {
  background: #252525;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

/* Fade-in effect when visible */
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}


/* WHY CHOOSE US  */
.why-choose-us {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  margin-bottom: 20px;
  color: #000;
  font-family: "Lora", serif;
}

.section-intro {
  margin: 0 auto 50px;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.choose-card {
  background: #fafafa;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.choose-card p{
    color: #000;
}
.choose-card h3{
    font-size: 20px;
}
.choose-card.show {
  opacity: 1;
  transform: translateY(0);
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f1c97d);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 28px;
}


/* EXTRA CONTENT  */
.info-section {
  background: #f9f9f9;
  padding: 80px 20px;
}

.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.info-block.show {
  opacity: 1;
  transform: translateY(0);
}

.info-block.reverse .info-image {
  order: 2;
}

.info-block img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.info-content h2 {
  margin-bottom: 20px;
  font-family: "Lora", serif;
  color: #000;
}

.info-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

/* Mobile: 1 card */
@media screen and (max-width: 767px) {
  .info-section .reverse .info-image{
    order: 1;
  }
  .info-section .reverse .info-content{
    order: 2;
  }
  .info-section .reverse{margin-bottom: 0;}
  .info-block { grid-template-columns: 1fr;}
}

/* Dark Theme FAQ */
.faq-section {
  background: linear-gradient(180deg, #111, #222);
  color: #fff;
  padding: 80px 20px;
}
.faq-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: bold;
  color: #d0a741;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 10px;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: rgba(255,255,255,0.05);
}
.faq-icon {
  font-size: 1.3rem;
  font-weight: bold;
  color: #d0a741;
  transition: transform 0.3s ease;
}
.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #ccc;
  line-height: 1.6;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}