/* ==========================
GLOBAL
========================== */

:root {
  --primary: #0d6efd;
  --secondary: #111827;
  --accent: #25d366;
  --light: #f8fafc;
  --white: #ffffff;
  --gray: #6b7280;
  --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ==========================
NAVBAR
========================== */

.custom-navbar {
  background: transparent;
  transition: 0.4s;
  padding: 18px 0;
}

.custom-navbar.scrolled {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.logo {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.custom-navbar.scrolled .logo {
  color: #111;
}

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

.nav-link {
  font-weight: 500;
  color: #fff;
  margin-left: 18px;
}

.custom-navbar.scrolled .nav-link {
  color: #111;
}

.btn-call {
  background: #111827;
  color: #fff;
  border-radius: 50px;
  padding: 10px 24px;
}
.btn-call:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 10px 24px;
}
.btn-whatsapp:hover {
  background: #111827;
  color: #fff;
  transform: translateY(-2px);
}
.btn-call:hover,
.btn-whatsapp:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================
HERO
========================== */

.hero-section {
  min-height: 100vh;
  position: relative;
  background: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.75);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  /* background: rgba(255, 255, 255, 0.15); */
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  /* backdrop-filter: blur(10px); */
}
.hero-heading {
  color: #fff;
}
.hero-description {
  color: #f3f4f6;
}

.hero-section h1 {
  font-size: 72px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-section p {
  color: #f3f4f6;
  font-size: 20px;
  max-width: 650px;
}

.hero-buttons {
  margin-top: 35px;
}

.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  margin-right: 15px;
  font-weight: 600;
}

.btn-primary-custom:hover {
  /* background: #0b5ed7;   */
  background: #fff;
  color: #0b5ed7;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary-custom {
  background: #fff;
  color: #111;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
}
.btn-secondary-custom:hover {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.hero-features {
  margin-top: 35px;
  display: flex;
  gap: 30px;
  color: #fff;
}

.hero-features i {
  color: #25d366;
}

/* ==========================
STATS
========================== */

.stats-section {
  padding: 80px 0;
  background: #fff;
}

.counter {
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
}

.stats-section p {
  color: #666;
}

/* ==========================
COMMON
========================== */

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
}

.section-tag {
  color: var(--primary);
  font-weight: 700;
}

/* ==========================
ABOUT
========================== */

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 12px 0;
  font-weight: 500;
}

.feature-list li::before {
  content: "✓ ";
  color: #25d366;
  font-weight: bold;
}

/* ==========================
SERVICE
========================== */

.service-card {
  background: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: 0.4s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 50px;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h4 {
  font-weight: 700;
}

/* ==========================
FLEET
========================== */

.car-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.4s;
}

.car-card:hover {
  transform: translateY(-10px);
}

.car-card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.car-card h4 {
  padding: 20px;
  text-align: center;
  font-weight: 700;
}

/* ==========================
TESTIMONIALS
========================== */

.testimonial-box {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 50px;
  border-radius: 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.testimonial-box p {
  font-size: 20px;
  margin-bottom: 20px;
}

/* ==========================
FAQ
========================== */

.accordion-button {
  font-weight: 600;
}

/* ==========================
CONTACT
========================== */

#contact {
  background: #f8fafc;
}

.form-control {
  border-radius: 12px;
  padding: 14px;
}

.btn-primary {
  padding: 14px 30px;
  border-radius: 50px;
}

/* ==========================
FOOTER
========================== */

footer {
  background: #111827;
  color: #fff;
  padding: 60px 0;
}

/* ==========================
FLOATING BUTTONS
========================== */

.floating-call {
  position: fixed;
  bottom: 95px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  z-index: 999;
}

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 999;
}

/* ==========================
MOBILE CTA BAR
========================== */

.mobile-bar {
  display: none;
}
/* ==========================
ACTIVE MENU
========================== */

.nav-link.active {
  color: #0d6efd !important;
  font-weight: 700;
}

/* ==========================
REVEAL ANIMATION
========================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
BACK TO TOP
========================== */

.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  cursor: pointer;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

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

@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 50px;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .nav-link {
    color: #111 !important;
  }

  .logo {
    color: #111;
  }

  .custom-navbar {
    background: #fff;
  }
  .about-second {
    margin-top: 10px;
    padding-top: 10px;
  }
}
@media (max-width: 320px) {
  .logo {
    font-size: 19px;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  .logo {
    font-size: 24px;
  }
}
@media (min-width: 376px) and (max-width: 425px) {
  .logo {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 38px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    display: block;
    margin-bottom: 15px;
    text-align: center;
  }

  .section-padding {
    padding: 70px 0;
  }

  .counter {
    font-size: 40px;
  }

  .mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 99999;
  }

  .mobile-bar a {
    width: 50%;
    text-align: center;
    padding: 15px;
    color: #fff;
    font-weight: 700;
  }

  .mobile-bar a:first-child {
    background: #0d6efd;
  }

  .mobile-bar a:last-child {
    background: #25d366;
  }
}
.hero-slide {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.carousel-item {
  transition: transform 1s ease-in-out;
}
.price-badge {
  position: absolute;

  top: 15px;
  right: 15px;

  background: #25d366;

  color: #fff;

  padding: 10px 15px;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 700;
}

.car-card {
  position: relative;
  overflow: hidden;
}

/* ==========================
BOOKING MODAL
========================== */

.booking-modal {
  border: none;

  border-radius: 20px;

  overflow: hidden;
}

.booking-modal .modal-header {
  background: #0d6efd;

  color: #fff;

  border: none;
}

.booking-modal .btn-close {
  filter: invert(1);
}

.booking-modal label {
  font-weight: 600;

  margin-bottom: 8px;
}

.booking-modal .form-control,
.booking-modal .form-select {
  border-radius: 12px;

  padding: 12px;
}

.booking-modal .btn-primary {
  padding: 14px 40px;

  border-radius: 50px;
}
.car-features {
  list-style: none;

  padding: 0;

  margin: 15px 0;
}

.car-features li {
  padding: 5px 0;

  font-size: 14px;

  color: #666;
}
