/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
}

.logo span {
  color: #ff3b3b;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff3b3b;
}

.call-btn {
  background: #ff3b3b;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  height: 70vh;
  background: url('/img/banner.webp') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 88%;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* BOOKING CARD */
.booking-card {
  background: #e53935;
  padding: 25px;
  border-radius: 10px;
  width: 425px;
  color: #fff;
}

.tabs {
  display: flex;
  margin-bottom: 15px;
}

.tab {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
  background: #000;
  color: #fff;
}

.tab.active {
  background: #fff;
  color: #000;
}

.trip-type {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.trip {
  flex: 1;
  padding: 8px;
  border: none;
  cursor: pointer;
}

.trip.active {
  background: #fff;
  color: #000;
}

.booking-card input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
}

.row {
  display: flex;
  gap: 10px;
}

.search-btn {
  width: 100%;
  padding: 12px;
  background: #1976d2;
  border: none;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 10px;
}

/* HERO TEXT */
.hero-text {
  color: #fff;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 42px;
}

.hero-text p {
  margin-top: 10px;
  font-size: 18px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .booking-card {
    width: 100%;
    max-width: 400px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #000;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    transition: 0.3s;
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: block;
  }

  .cta {
    display: none;
  }

  .hero-text h1 {
    font-size: 30px;
  }
}

/* ================= ABOUT US ================= */
.about {
  padding: 80px 0;
  background: white;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.about-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #222;
}

.about-content p {
  text-align: justify;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* CTA BUTTON */
.about-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff3b3b;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.about-btn:hover {
  background: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-content p {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-content h2 {
    font-size: 28px;
  }
}

/* ================= PREMIUM FLEET ================= */
.premium-fleet {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
  text-align: center;
}

.section-title {
  font-size: 38px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* WRAPPER */
.fleet-wrapper {
  position: relative;
}

/* SLIDER */
.fleet-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
  scroll-snap-type: x mandatory;
}

.fleet-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.fleet-card {
  min-width: 280px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
  scroll-snap-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.fleet-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* INFO */
.fleet-info {
  padding: 20px;
}

.fleet-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.fleet-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* CTA BUTTON */
.fleet-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff3b3b;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.fleet-btn:hover {
  background: #000;
  transform: scale(1.05);
}

/* HOVER EFFECT */
.fleet-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff3b3b;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #000;
}

.nav-btn.left {
  left: -20px;
}

.nav-btn.right {
  right: -20px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .fleet-card {
    min-width: 240px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .fleet-card {
    min-width: 80%;
  }

  .nav-btn {
    display: none;
  }

  .section-title {
    font-size: 28px;
  }
}

.routes-section {
  background: #e53935;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Grid Layout */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.route-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  color: #333;
  transition: 0.3s ease;
}

.route-card:hover {
  transform: translateY(-5px);
}

/* Image */
.route-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Content */
.card-content {
  padding: 20px;
  text-align: left;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* Meta */
.card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.tag {
  background: #f4c542;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.price {
  background: #ffcc00;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* Button */
.btn {
  display: block;
  text-align: center;
  background: #e53935;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #c62828;
}

/* Responsive */

/* Tablet */
@media (max-width: 992px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .routes-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}

.tour-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  margin-bottom: 30px;
  color: #666;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab {
  padding: 10px 20px;
  border: none;
  background: #ddd;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.tab.active {
  background: #e53935;
  color: #fff;
}

/* Content */
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

/* Grid */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.package-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.package-card p {
  font-size: 14px;
  color: #666;
}

.package-card span {
  display: block;
  margin: 10px 0;
  font-weight: 700;
  color: #e53935;
}

/* Button */
.btn {
  display: inline-block;
  background: #e53935;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.btn:hover {
  background: #c62828;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Responsive */
@media (max-width: 992px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .package-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
}
.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.faq-map-section {
  padding: 50px 0;
}

.faq-map-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.faq-col {
  flex: 1;
}

.map-col {
  flex: 1;
  min-height: 500px;
}

/* FAQ Styling */
.faq-item {
  margin-bottom: 15px;
}

.faq-answer {
  display: none;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-top: none;
}

.faq-question {
  width: 100%;
  padding: 14px;
  text-align: left;
  background: #ff3b3b;
  border: 1px solid #ccc;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.faq-question:hover {
  background: #e5e5e5;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-map-wrapper {
    flex-direction: column;
  }

  .map-col {
    height: 300px;
  }
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff3b3b;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff3b3b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: 0.3s;
}

.floating-btn:hover {
  background: #e22d2d;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-btn {
    bottom: 15px;
    right: 15px;
    padding: 10px 14px;
    font-size: 13px;
  }
}

