/* ==============================
   HOME — HERO SECTION
============================== */

:root {
  --brand: #00AE8E;
  --brand-dark: #00846D;
  --text-dark: #133630;
}

/* Section Background */
.hero {
  padding: 95px 0;
  background: linear-gradient(135deg, #E8FBF7, #ffffff);
}

/* Container */
.hero-container {
  max-width: 1450px;
  margin: auto;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Left Content */
.hero-left h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
}

.hero-left p {
  font-size: 20px;
  margin: 20px 0 36px;
  color: #3b4744;
  max-width: 520px;
}

/* CTA Button */
.cta-btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  padding: 15px 36px;
  border-radius: 45px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  border: none;
  transition: .25s;
}

.cta-btn:hover { transform: translateY(-2px); }

/* Booking Form */
.booking-form {
  width: 400px;
  padding: 32px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(0,0,0,0.07);
  animation: fadeUp .6s ease both;
}

.booking-form h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--text-dark);
}

.booking-form label {
  margin-top: 17px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #3b4744;
}

.booking-form input {
  width: 100%;
  margin-top: 6px;
  padding: 11px 15px;
  border: 1.4px solid #cfcfcf;
  border-radius: 9px;
  outline: none;
  font-size: 15px;
}

.booking-form input:focus {
  border-color: var(--brand);
}

/* Form Button */
.form-btn {
  margin-top: 28px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border: none;
  color: #fff;
  border-radius: 50px;
  font-size: 17px;
  cursor: pointer;
  font-weight: 600;
  transition: .25s;
}

.form-btn:hover { opacity: 0.92; }

/* ==============================
   MOBILE RESPONSIVE
============================== */
@media (max-width: 950px) {

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  /* MOBILE — LEFT CONTENT FIRST */
  .hero-left {
    order: 1;
  }

  /* MOBILE — BOOKING FORM SECOND */
  .hero-right {
    order: 2;
    width: 100%;
    max-width: 430px;
  }

  /* CTA BUTTON mobile par hide nahi hoga */
  .cta-btn {
    display: inline-block;
    margin-top: 20px;
  }

  .hero-left h1 {
    font-size: 43px;
  }

  .hero-left p {
    font-size: 17px;
    margin-bottom: 25px;
  }
}

/* Smooth Form Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}



/* ===============================
   CARS SECTION — PREMIUM LOOK
=============================== */

.cars-section {
  padding: 80px 0;
  background: #F7FDFC;
}

.cars-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  gap: 32px;
  padding: 0 22px;

  grid-template-columns: repeat(3, 1fr);
}

/* Mobile */
@media (max-width: 768px) {
  .cars-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

.car-card {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.35s;
  overflow: hidden;

  /* New Premium Shadow */
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
  border: 1px solid #e3efec;
  position: relative;
}

/* Hover Effects - smooth scale + glow */
.car-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

/* Top Gradient Shine Effect */
.car-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(135deg, rgba(0,174,142,0.08), transparent);
  pointer-events: none;
}

.car-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 14px;
  transition: 0.3s;
}

/* Minor zoom on hover */
.car-card:hover img {
  transform: scale(1.05);
}

.car-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: #133630;
  margin-bottom: 6px;
}

.car-card p {
  font-size: 14px;
  color: #485a57;
}


/* ===============================
   MODAL — ADVANCED
=============================== */

.car-modal {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.78);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 22px;

  backdrop-filter: blur(4px);
}

.modal-content {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  position: relative;
  max-width: 520px;
  width: 100%;

  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  animation: fadeIn 0.35s ease-out;
}

.close-modal {
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 32px;
  cursor: pointer;
  color: #2e2e2e;
  transition: 0.25s;
}

.close-modal:hover {
  color: #00AE8E;
  transform: scale(1.1);
}

.modal-slider img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}

.slider-controls button {
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #00AE8E, #00846D);
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.slider-controls button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* modal animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1); }
}




/* Contact Information Styling */
.contact-info {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
}

.contact-info p {
  margin: 5px 0;
}

.contact-info a {
  color: #00AE8E;
  text-decoration: none;
}

.cta-info {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 600;
}

.limited-offer {
  font-size: 20px;
  color: #e63946;
  font-weight: bold;
}

.social-media-links {
  margin-top: 20px;
}

.social-icon {
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  text-decoration: none;
  color: #333;
  border: 2px solid #333;
  padding: 5px 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #00AE8E;
  color: #fff;
}


/* =======================
   SERVICES SECTION (Enhanced)
========================= */

.services-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
}

.services-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

/* Service Content */
.service-content {
  width: 45%;
  padding: 20px;
}

.service-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
}

/* Service Ratings */
.service-ratings {
  width: 45%;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.service-ratings h3 {
  font-size: 28px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 24px;
  margin-bottom: 30px;
}

.ratings p {
  font-size: 16px;
  color: #555;
}

.service-icons {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.service-icon {
  text-align: center;
  flex: 1;
}

.service-icon i {
  font-size: 40px;
  color: var(--brand);
  margin-bottom: 10px;
}

.service-icon p {
  font-size: 16px;
  color: #444;
}

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

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    text-align: center;
  }

  .service-content,
  .service-ratings {
    width: 100%;
  }

  .ratings {
    justify-content: center;
  }

  .service-icon i {
    font-size: 35px;
  }
}


/* ===============================
   TESTIMONIALS SECTION STYLING
=============================== */
.testimonials-section {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

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

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.testimonials-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Single Testimonial Card */
.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 30%;
  text-align: left;
  transition: 0.3s;
  flex: 1 1 30%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.testimonial-content {
  padding: 0 20px;
}

.testimonial-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}

.customer-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.customer-location {
  font-size: 14px;
  color: #777;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
  }
  .testimonials-cards {
    flex-direction: column;
  }
}

.testimonials-section {
  padding: 70px 0;
  background: #f6f9fc;
  position: relative;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 35px;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

.testimonial-card {
  min-width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  flex-shrink: 0;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #444;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #222;
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 75%;
  transform: translateY(-50%);
  background: var(--brand);
  border: none;
  font-size: 22px;
  padding: 10px 15px;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.prev { left: 10px; }
.next { right: 10px; }

.slider-btn:hover {
  background: var(--brand-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 260px;
  }
}


/* Flow section */
.flow-section { padding: 60px 18px; background: #ffffff; }
.flow-section .container { max-width: 1200px; margin: 0 auto; text-align: center; }
.flow-title { font-size: 30px; font-weight: 700; margin-bottom: 6px; color: #133630; }
.flow-sub { color: #586d67; margin-bottom: 28px; }

/* Row layout */
.flow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
}

/* Individual item */
.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 180px;
  max-width: 220px;
  padding: 6px 10px;
}

/* circle */
.flow-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(0,174,142,0.09), rgba(0,174,142,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,174,142,0.12);
}

/* feather icon inside circle */
.flow-circle i {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand, #00AE8E);
}

/* headings and text */
.flow-head { font-size: 16px; font-weight: 700; color: #233a36; margin-bottom: 6px; }
.flow-desc { font-size: 14px; color: #57706a; }

/* arrow element */
.flow-arrow { display: flex; align-items: center; justify-content: center; color: #9dbeb3; }
.arrow-svg { width: 36px; height: 36px; }

/* hover highlight on items (subtle) */
.flow-item:hover .flow-circle { transform: translateY(-6px); transition: transform .25s ease; box-shadow: 0 14px 30px rgba(0,0,0,0.10); }

/* RESPONSIVE: tablet and mobile */
@media (max-width: 1024px) {
  .flow-circle { width: 76px; height: 76px; }
  .arrow-svg { width: 30px; height: 30px; }
}

@media (max-width: 900px) {
  .flow-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  /* rotate arrow to point down for vertical flow */
  .flow-arrow { transform: rotate(90deg); } /* rotate svg so arrow points down (SVG path draws right arrow) */
  .arrow-svg { width: 28px; height: 28px; }

  .flow-item { max-width: 340px; }
  .flow-circle { width: 72px; height: 72px; }
  .flow-head { font-size: 17px; }
}

/* add a small spacing tweak so arrows sit visually between circles on mobile */
@media (max-width: 520px) {
  .flow-row { gap: 10px; }
  .flow-arrow { margin: 0 0 0 0; }
  .flow-circle { width: 64px; height: 64px; }
}

/* ---- ONE BY ONE ANIMATION ---- */

.flow-item {
  position: relative;
}

/* Sequence delay */
.flow-item:nth-child(1) .flow-circle { animation-delay: 0s; }
.flow-item:nth-child(3) .flow-circle { animation-delay: .6s; }
.flow-item:nth-child(5) .flow-circle { animation-delay: 1.2s; }
.flow-item:nth-child(7) .flow-circle { animation-delay: 1.8s; }

/* Pulse animation */
.flow-circle {
  animation: pulseGlow 2.4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0px rgba(0,174,142,0.0);
    border-color: rgba(0,174,142,0.18);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(0,174,142,0.45);
    border-color: rgba(0,174,142,0.45);
    transform: scale(1.06);
  }
  100% {
    box-shadow: 0 0 0px rgba(0,174,142,0.0);
    border-color: rgba(0,174,142,0.18);
    transform: scale(1);
  }
}

/* Arrow animation – looks like moving forward */
.flow-arrow {
  animation: arrowMove 1.2s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes arrowMove {
  0% {
    transform: translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(8px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.5;
  }
}

@media (max-width: 900px) {
  .flow-arrow {
    animation: arrowDown 1.2s ease-in-out infinite;
  }
}

@keyframes arrowDown {
  0% {
    transform: translateY(0) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(8px) rotate(90deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(90deg);
    opacity: 0.5;
  }
}

.routes-section {
  padding: 60px 22px;
  background: #f7fdfc;
  font-family: 'Poppins', sans-serif;
}

.routes-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.routes-title {
  font-size: 32px;
  font-weight: 700;
  color: #133630;
  margin-bottom: 10px;
}

.routes-sub {
  font-size: 18px;
  color: #586d67;
  margin-bottom: 40px;
}

/* Grid layout */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop */
  gap: 20px;
  justify-items: center;
}

/* Badge style */
.route-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-weight: 500;
  font-size: 16px;
  color: #133630;
  transition: all 0.3s ease;
}

.route-badge i {
  font-size: 20px;
  color: #00AE8E;
}

.route-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Mobile / tablet */
@media (max-width: 1024px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr); /* 2-column mobile */
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .routes-grid {
    grid-template-columns: 1fr; /* small mobile */
    gap: 12px;
  }
  .route-badge {
    padding: 12px 16px;
    font-size: 15px;
  }
}

.process-section {
  padding: 60px 22px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.process-title {
  font-size: 32px;
  font-weight: 700;
  color: #133630;
  text-align: center;
  margin-bottom: 10px;
}

.process-sub {
  font-size: 18px;
  color: #586d67;
  text-align: center;
  margin-bottom: 50px;
}

/* Grid layout */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop */
  gap: 25px;
}

/* Step item – flat modern */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Icon circle */
.process-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e6f8f3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.process-icon i {
  color: #00AE8E;
  font-size: 24px;
}

/* Text */
.process-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #133630;
  margin: 0 0 6px;
}

.process-text p {
  font-size: 15px;
  color: #586d67;
  margin: 0;
  line-height: 1.5;
}

/* Hover subtle effect */
.process-step:hover .process-icon {
  transform: scale(1.1);
  transition: 0.25s ease;
}

/* Mobile / Tablet */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr; /* 1 column */
  }
}


/* ======================================
   DESTINATION LIST SECTION
====================================== */
.dest-list-section {
  width: 100%;
  padding: 40px 20px;
  background: #f7f7f7;
}

.dest-list-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ROW STYLE */
.dest-row {
  display: flex;
  align-items: center;
  gap: 25px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.dest-row:hover {
  transform: translateY(-3px);
}

/* Reverse row */
.dest-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.dest-row img {
  width: 45%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

/* INFO BOX */
.dest-info {
  width: 55%;
}

.dest-info h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #222;
}

.dest-info p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* BUTTON */
.dest-btn {
  padding: 10px 20px;
  background: #ff5722;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.dest-btn:hover {
  background: #e64a19;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .dest-row,
  .dest-row.reverse {
    flex-direction: column;
  }

  .dest-row img {
    width: 100%;
    height: 220px;
  }

  .dest-info {
    width: 100%;
    text-align: center;
  }

  .dest-info h2 {
    font-size: 22px;
  }
}


/* FAQ Section */
.faq-section {
  padding: 70px 20px;
  background: #f9fafb;
}

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

.faq-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.faq-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 17px;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item.active .faq-question {
  background: #efefef;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 150px;
  padding-bottom: 15px;
}


