/* =========================================================
   1. GLOBAL
========================================================= */
:root {
  --primary: #0b1f3a;
  --primary-light: #12315c;
  --accent: #ffc107;
  --accent-dark: #e6ac00;
  --bg-light: #f7f8fb;
  --white: #ffffff;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 30px rgba(11, 31, 58, 0.08);
  --shadow-strong: 0 20px 45px rgba(11, 31, 58, 0.18);
  --transition: all 0.3s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.text-accent { color: var(--accent); }

a { text-decoration: none; }

.section-badge {
  display: inline-block;
  background: rgba(255, 193, 7, 0.15);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-text {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  transition: var(--transition);
}
.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 193, 7, 0.35);
}

.btn-primary-dark {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  transition: var(--transition);
}
.btn-primary-dark:hover {
  background-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn-outline-light {
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 28px;
  transition: var(--transition);
}
.btn-outline-light:hover { transform: translateY(-2px); }

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px;
  transition: var(--transition);
}
.btn-whatsapp:hover { background-color: #1ebe57; color: #fff; transform: translateY(-2px); }

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   2. NAVBAR
========================================================= */
#mainNavbar {
  background: rgba(11, 31, 58, 0.0);
  padding: 18px 0;
  transition: var(--transition);
  z-index: 1050;
}
#mainNavbar.scrolled {
  background: rgba(11, 31, 58, 0.97);
  padding: 10px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.brand-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 50px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
  background: var(--accent);
}

.nav-phone {
  color: var(--white);
  font-weight: 600;
}
.nav-phone i { color: var(--accent); }

.btn-book {
  padding: 10px 22px;
}

.navbar-toggler {
  border: none;
  color: var(--white);
}
.navbar-toggler-icon {
  filter: invert(1);
}

@media (max-width: 991.98px) {
  #mainNavbar, #mainNavbar.scrolled { background: rgba(11, 31, 58, 0.98); }
  .navbar-collapse { padding-top: 10px; }
}

/* =========================================================
   3. HERO
========================================================= */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #142c52 60%, #1a3a6e 100%);
  padding: 170px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,193,7,0.15), transparent 70%);
  border-radius: 50%;
}

.badge-pill {
  display: inline-block;
  background: rgba(255, 193, 7, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,193,7,0.35);
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-trust {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.trust-item i { font-size: 1.6rem; color: var(--accent); }
.trust-item strong { display: block; font-size: 1.05rem; }
.trust-item span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover .hero-img { transform: scale(1.06); }

.floating-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: 26px;
  position: relative;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
  width: 100%;
  z-index: 5;
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (min-width: 992px) {
  .floating-card {
    position: absolute;
    right: 0;
    bottom: -40px;
    margin-bottom: 0;
  }
}

/* =========================================================
   5. ABOUT
========================================================= */
.about-section { padding: 90px 0; background: var(--white); }
.about-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.about-img-wrap:hover img { transform: scale(1.05); }

.stat-box {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 18px 10px;
  text-align: center;
  transition: var(--transition);
}
.stat-box:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.stat-box h3 { font-size: 1.6rem; color: var(--primary); margin-bottom: 4px; }
.stat-box p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

/* =========================================================
   6. SERVICES
========================================================= */
.services-section { padding: 90px 0; background: var(--bg-light); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(255,193,7,0.4);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h5 { margin-bottom: 10px; }
.service-card p { color: var(--text-muted); margin-bottom: 18px; }
.service-link {
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
}
.service-link:hover { color: var(--accent-dark); padding-left: 5px; }

/* =========================================================
   7. WHY US
========================================================= */
.why-us-section { padding: 90px 0; background: var(--white); }
.feature-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.feature-card:hover {
  background: var(--primary);
  transform: translateY(-6px);
}
.feature-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.feature-card h6 { margin: 0; transition: var(--transition); }
.feature-card:hover h6 { color: var(--white); }

.highlight-statement {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
}
.highlight-statement p {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

/* =========================================================
   8. FLEET
========================================================= */
.fleet-section { padding: 90px 0; background: var(--bg-light); }
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: var(--transition);
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.fleet-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-img { transform: scale(1.08); }
.fleet-body { padding: 22px; }
.fleet-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.fleet-specs i { color: var(--accent-dark); margin-right: 6px; }
.fleet-price { font-weight: 700; color: var(--primary); }

/* =========================================================
   9. HOW IT WORKS
========================================================= */
.how-it-works-section { padding: 90px 0; background: var(--white); }
.steps-row { position: relative; }
.step-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 34px 22px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-6px); }
.step-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: rgba(11,31,58,0.1);
  position: absolute;
  top: 10px;
  right: 20px;
}
.step-icon { font-size: 2rem; color: var(--accent-dark); margin-bottom: 14px; display: block; }
.step-card h6 { margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

@media (min-width: 768px) {
  .steps-row .col-md-3:not(:last-child) .step-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    width: 24px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--accent-dark) 0 6px, transparent 6px 10px);
  }
}

/* =========================================================
   10. ROUTES
========================================================= */
.routes-section { padding: 90px 0; background: var(--bg-light); }
.route-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid transparent;
}
.route-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--accent);
}
.route-card h6 { color: var(--primary); margin-bottom: 6px; font-size: 1rem; }
.route-card h6 i { color: var(--accent-dark); margin: 0 4px; }
.route-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }
.route-cta { color: var(--accent-dark); font-weight: 600; font-size: 0.85rem; }

/* =========================================================
   11. TESTIMONIALS
========================================================= */
.testimonials-section { padding: 90px 0; background: var(--white); }
.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-soft); }
.stars { color: var(--accent-dark); margin-bottom: 14px; }
.testimonial-card p { color: var(--text-dark); font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.reviewer strong { display: block; font-size: 0.95rem; }
.reviewer span { font-size: 0.8rem; color: var(--text-muted); }

.carousel-control-prev, .carousel-control-next { width: 5%; opacity: 0.5; }
.carousel-control-prev-icon, .carousel-control-next-icon { filter: invert(1) grayscale(100); background-color: rgba(11,31,58,0.6); border-radius: 50%; padding: 14px; }

/* =========================================================
   12. CTA BANNER
========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), #1a3a6e);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 30px; }

/* =========================================================
   13. FAQ
========================================================= */
.faq-section { padding: 90px 0; background: var(--bg-light); }
.accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.accordion-button {
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
}
.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after { filter: invert(1); }

/* =========================================================
   14. CONTACT
========================================================= */
.contact-section { padding: 90px 0; background: var(--white); }
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 34px;
  color: var(--white);
  height: 100%;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-item i {
  font-size: 1.3rem;
  color: var(--accent);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.95rem; }
.contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.contact-form {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.contact-form .form-control, .contact-form textarea {
  border-radius: 10px;
  padding: 12px 14px;
}

/* =========================================================
   15. FOOTER
========================================================= */
.footer {
  background: #081627;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 20px;
}
.footer h6 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.footer-desc { font-size: 0.9rem; line-height: 1.7; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-links a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--accent); color: var(--primary); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 40px 0 20px; }
.footer-bottom { font-size: 0.85rem; }
.footer-legal a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-legal a:hover { color: var(--accent); }

/* =========================================================
   FLOATING WHATSAPP + SCROLL TOP
========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 999;
  transition: var(--transition);
  animation: pulseWA 2.4s infinite;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }
@keyframes pulseWA {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

#scrollTopBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  border: none;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 999;
  transition: var(--transition);
}
#scrollTopBtn:hover { background: var(--primary-light); }
#scrollTopBtn.show { display: flex; }

.floating-book-btn {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 120px);
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
}
.floating-book-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.floating-book-btn:hover {
  color: var(--primary);
  background: var(--accent-dark);
}

@media (max-width: 767.98px) {
  .floating-book-btn {
    left: 50%;
    bottom: 90px;
    padding: 11px 24px;
    font-size: 0.88rem;
  }
}

/* =========================================================
   16. RESPONSIVE
========================================================= */
@media (max-width: 991.98px) {
  .hero { padding: 140px 0 80px; }
  .floating-card { max-width: 100%; }
}

@media (max-width: 767.98px) {
  .hero-img { height: 320px; }
  .about-img-wrap img { height: 300px; }
  .highlight-statement { padding: 34px 18px; }
  .whatsapp-float, #scrollTopBtn { width: 50px; height: 50px; font-size: 1.4rem; }
}

@media (max-width: 575.98px) {
  .section-title { font-size: 1.5rem; }
  .hero-trust { flex-direction: column; gap: 14px !important; }
}
