* {
  box-sizing: border-box;
  /* font-family: "Inter", "Segoe UI", sans-serif; */
}

body {
  margin: 0;
  background: linear-gradient(135deg, #f4f7fb, #eef2f7);
  color: #1f2937;
  overflow: auto;
  background: #f4f6f8;
  font-family: 'Poppins', sans-serif;
}
  

    /* CRITICAL FIXES */
        
    /* 1. Ensure Logo and Toggler stay on row 1, and the menu goes to row 2 */
    .container {
        flex-wrap: wrap !important;
    }

    /* 2. Force the collapse menu to take full width when it opens so it slides UNDER the logo */
    .navbar-collapse {
        flex-basis: 100%; /* Forces the menu to take its own line on mobile */
        flex-grow: 1;
    }

    /* 3. Adjust your Logo size for professional alignment */
    .brand-logo {

        height: 45px;
        width: auto;
        object-fit: contain;

    }

    /* 4. Desktop Override: Return to single line layout */
    @media (min-width: 992px) {
        .navbar-collapse {
            flex-basis: auto; /* Reverts the 'second row' behavior on desktop */
        }
        .brand-logo {
            height: 55px; /* Larger logo for desktop */
        }
        .border-end-lg {
            border-right: 1px solid #dee2e6 !important;
        }
    }

    /* 5. Mobile-only Menu Styling */
    @media (max-width: 991px) {
        .navbar-collapse {
            border-top: 1px solid #eee;
            margin-top: 10px;
            padding-bottom: 20px;
        }
    }

    /* 6. Orange Toggle Icon */
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(243, 146, 0, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
    }


/* login Modal */


/* ===== MODAL BACKDROP ===== */
.modal-backdrop.show {
    opacity: 0.7;
}

/* ===== MODAL DESIGN ===== */
.custom-login-modal {
    border-radius: 20px;
    border: none;
    padding: 10px;
    overflow: hidden;
    background: #ffffff;
}

/* ===== LOGO ===== */
.login-logo {
    width: 85px;
    margin-bottom: 10px;
}

/* ===== TITLE ===== */
.login-title {
    font-weight: 700;
    color: #1e2a38;
    margin-bottom: 20px;
}

/* ===== INPUT ===== */
.phone-input {
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #e3e8ef;
    transition: 0.3s;
    direction: ltr;
    text-align: left;
}

.phone-input:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 3px rgba(78,115,223,0.15);
}

/* ===== BUTTON ===== */
.btn-gradient {
    background: linear-gradient(135deg, #dda429, #2575fc);
    border: none;
    border-radius: 14px;
    padding: 12px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== RESEND LINK ===== */
.resend-link {
    font-size: 14px;
    color: #2575fc;
    text-decoration: none;
}

.resend-link:hover {
    text-decoration: underline;
}

/* ===== ANIMATION ===== */
.fade-section {
    transition: all 0.4s ease;
}


/* ===== DREAMY NAVBAR STYLES ===== */
.navbar-wrapper {
  background:white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* .navbar {
  padding: 1rem 0;
} */

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0 2rem; */
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Logo Styling */
.navbar-brand {
  flex-shrink: 0;
  margin-right: 2rem;
}

.logo-img {
  width: 160px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
  transform: scale(1.05) translateY(-2px);
}

/* Navigation Links */
.navbar-nav {
  gap: 1.5rem;
  margin: 0;
  margin-top:12px;
}


/* Fix for Logo and Button alignment */
.nav-header-main {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-img {
  height: 40px; /* Force a standard height */
  width: auto;
  max-width: 150px; /* Prevents the logo from pushing the button down */
}

/* Ensure the toggler button stays compact */
.navbar-toggler {
  padding: 0.25rem 0.5rem;
  font-size: 1rem;

}

.nav-item {
  position: relative;
}

.nav-link {
  color: #2d3748 !important;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0 !important;
}

.nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #fdbd0d, #ff9500);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
  color: #ff9500 !important;
}

.nav-link:hover:before {
  width: 100%;
}

/* Navbar Right Section */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

/* Contact Info */
.contact-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #fff9e6, #fff5e6);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 189, 13, 0.3);
  box-shadow: 0 4px 15px rgba(255, 189, 13, 0.1);
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff9500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* .contact-phone {
  font-size: 1rem;
  font-weight: 700;
  color: #2d3748;
  background: linear-gradient(90deg, #fdbd0d, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

/* Navbar Buttons */
.navbar-buttons {
  display: flex;
  gap: 1rem;
}

.btn-navbar {
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-login {
  background: linear-gradient(135deg, #fdbd0d, #ff9500);
  color: white;
}

.btn-login:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
  background: linear-gradient(135deg, #ff9500, #fdbd0d);
  color: white;
}

.btn-register {
  background: white;
  color: #ff9500;
  border: 2px solid #ff9500;
}

.btn-register:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #fdbd0d, #ff9500);
  color: white;
  border-color: #ff9500;
  box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
}

/* Mobile Responsive Navbar */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  margin-left: 9rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff9500' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile View */
@media (max-width: 991px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .navbar-brand {
    margin-right: 1rem;
  }

  /* .logo-img {
    width: 40px;
    height: auto;

  } */

  .navbar-right {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
  }

  .navbar-buttons {
    width: 100%;
    gap: 0.75rem;
  }

  .btn-navbar {
    flex: 1;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .contact-info {
    width: 100%;
    justify-content: center;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .nav-link {
    padding: 0.75rem 0 !important;
  }

  .nav-link:before {
    bottom: 0;
  }
}

@media (max-width: 576px) {
  .navbar-container {
    padding: 0 0.75rem;
  }

  .logo-img {
    width: 90px;
  }

  .navbar-right {
    gap: 1rem;
  }

  .btn-navbar {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }

  .contact-info {
    padding: 0.6rem 1rem;
  }

  .contact-label {
    font-size: 0.75rem;
  }

  .contact-phone {
    font-size: 0.9rem;
  }
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(90deg, #fdbd0d, darkorange);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #fdbd0d, darkorange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Optional: Make inputs slightly larger */
.form-control, .form-select {
  padding: 0.75rem 1rem;
  

}




.seat {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.seat:hover {
  transform: scale(1.1);
}

.available { background: #e9ecef; }
.selected { background: darkorange; color: #fff; }
.booked { background: #6c757d; color: #fff; cursor: not-allowed; }
.driver { background: #ffc107; }

.seat + span {
  margin-right: 15px;
  line-height: 45px;
}
.calculation {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 30px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 576px) {
  .calculation {
    padding: 16px;
    margin: 0 0 20px;
  }
}

label {
  font-weight: bold;
  margin-top: 12px;
  display: block;
}




input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.cab-card img {
  height: 270px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}



.cab-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-title {
  font-weight: 700;
}

.card-text {
  font-size: 0.9rem;
}

/* body {
  background: #f8f9fa;
  overflow-x: hidden;
} */

.abc img{
 
  width: 100%;
  height: auto;
  object-fit: cover;
  
}

/* Global image reset for responsiveness */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Cab selection images */
.cab-img {
  width: 100%;
  max-width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 12px;
  display: block;
}

/* Ensure cab option area aligns nicely */
.col-md-4.text-center .border {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Payment card images */
.payment-card img {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin: 0 auto 10px;
}

/* .payment-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    /* gap: 15px; */



/* .payment-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
} */

/* 
/* Make logo scale down on small screens */
.logo-img { max-width: 160px; width: 50; height: auto; }

/* ===== HERO VIDEO BACKGROUND ===== */
.hero-hero {
  position: relative;
  min-height: 450px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: brightness(0.85) contrast(1.02);
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
}

h2, h3 {
  margin-bottom: 20px;
  /* text-align: center; */
  font-family: 'Playfair Display', serif;
  color: darkorange;
  font-weight: 900;
}

h3{
  font-size: 50px;
}
p{
  
 font-size: 17px;
  font-family: 'Playfair Display', serif;
  color: #161717;
 
  
}
.yzz{
  margin-top: 80px;
  margin-bottom: 50px;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

select {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.address-display {
  margin-top: 15px;
  padding: 10px;
  background: #f1f3f5;
  border-radius: 4px;
  font-size: 14px;
}

button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: darkorange;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: darkorang;
}

.error {
  margin-top: 15px;
  color: #d9534f;
  text-align: center;
  font-size: 14px;
}

.info-box {
  /* width: 1300px; */
  padding: 1px; 
  border-radius: 12px;
   background: linear-gradient(135deg,#fdbd0d, darkorange);
  color: #121111;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(29, 69, 201, 0.3);
}

.info-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 18px;
  letter-spacing: 1px;
  color: black;
}

/* Hover Effects */
.info-box:hover {
  transform: translateY(-10px) scale(1.03);
  background: linear-gradient(135deg#fdbd0d, darkorange);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.info-box:hover h2,
.info-box:hover p {
  color: #111;
}


.why-choose {
  padding: 80px 20px;
}


.container {
  max-width: 1200px;
  margin: auto;
  /* text-align: center; */
}

.title {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}

.title span {
  color: #f4b400;
}

.subtitle {
  max-width: 650px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 19px;
  font-weight: 900;
  text-align: center;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Features */
.features {
  width: 30%;
}

.feature-box {
  background: #fff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-box i {
  font-size: 30px;
  color: #f4b400;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 0cm;
}

.feature-box p {
  font-size: 19px;
  color: #666;
}

/* Center Image */
.image-box {
  width: 35%;
}

.image-box img {
  width: 100%;
  border-radius: 50% 50% 0 0;
  object-fit: cover;
}

 .seat {
      width: 45px;
      height: 45px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
    }
    .available { background: #e9ecef; }
    .selected { background:orange; color: #fff; }
    .booked { background: #adb5bd; color: #fff; cursor: not-allowed; }
    .driver { background: #ffc107; }


 form { display: flex; flex-direction: column; }
        label { margin-top: 10px;color: #000; }
        input, select, button { padding: 10px; margin-top: 5px; border: 1px solid #ccc; border-radius: 4px; }

.booked{ max-width:  415px;  padding: 20px; background: white; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }

/* Responsive */
@media (max-width: 992px) {
  .content {
    flex-direction: column;
  }

  .features,
  .image-box {
    width: 100%;
  }

  .feature-box {
    text-align: center;
  }
}
.payment-module h2{
color: black;
}


.payment-section {
  padding: 60px;
  background: #f5f7fa;
  font-family: 'Segoe UI', sans-serif;
}

.payment-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
  
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  place-items: center;
}

.payment-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}



.payment-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.payment-card p {
  font-size: 14px;
  color: #666;
}

.payment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border: 1px solid orange;
}

/* Payment Status */
.payment-status {
  margin: 40px auto 0;
  padding: 20px;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
}

.payment-status.failed {
  background: #ffe5e5;
  color: #c0392b;
}

.payment-status button {
  margin-top: 15px;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  background:darkorange;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.payment-status button:hover {
  background:darkorange;
}
.payment-module {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.status-box {
  padding: 25px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.success {
  background: #e9fff2;
  color: #1e8449;
}

.failure {
  background: #ffecec;
  color: #c0392b;
}

button {
  margin-top: 15px;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  background:darkorange;
  color: #fff;
  cursor: pointer;
}

.ticket-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ticket card */
.ticket-card {
  background: #ffffff;
  width: 420px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Header */
.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:#404d4f;
  color: #fff;
  padding: 16px 20px;
}

.ticket-header h2 {
  margin: 0;
  font-size: 18px;
  color: #f5f7fa;
}

.status {
  background: #28a745;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Body */
.ticket-body {
  padding: 20px;
}

.ticket-body p {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-size: 17px;
  color: #333;
}

.ticket-body strong {
  color: #000;
}



.footer {
  position: relative;
   background: url("{% static 'images/bg_footer.png' %}") center/cover no-repeat;
  /* background: black; */
  color: #ffffff;
   padding: 40px 20px ; 
  font-family: Arial, sans-serif;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(0 0 0 / 94%), rgb(0 0 0 / 69%));
}
.footer-container-fluid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
 
}

.footer-box h3 {
  margin-bottom: 15px;
  color:darkorange;
  font-size: 30px;
}

.footer-box p,
.footer-box li {
  font-size: 17px;
  line-height: 1.6;
  color: white;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-box ul li a:hover {
  color: #38bdf8;
}

.social-icons a {
  color: #ffffff;
  font-size: 25px;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #334155;
  /* margin-top: 30px; */
  padding-top: 15px;

}
.footer-bottom p{
  position: relative;
  background: #0a0a0a;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #999;
}


/* banner*/
.orange-banner {
  background: linear-gradient(135deg, #fdbd0d, darkorange);
  color: #ffffff;
  padding: 25px 40px;
  border-radius: 10px;
}

.orange-banner .item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.orange-banner .icon {
  font-size: 40px;
  color: #ffffff;
}

.orange-banner h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.orange-banner p {
  margin: 0;
  font-size: 14px;
  opacity: 0.95;
}

/*select cab*/
 .shared-cab-card .card-body {
  display: flex;
  gap: 20px;
}

/* Left section */
.left-part {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.left-part h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Divider */
.divider {
  width: 1px;
  background: #e5e7eb;
}

/* Right section */
.right-part {
  width: 50%;
  display: flex;
  flex-direction: column;
 justify-content: space-between; 
}

.right-part ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

.imgHeightFix{
  height: 210px!important;
}

 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

 :root {
   --orange: #F39200;
   --orange-dark: #d97d00;
   --orange-light: #fff4e0;
   --dark: #1a1a2e;
   --dark2: #16213e;
   --glass: rgba(255, 255, 255, 0.12);
   --glass-border: rgba(255, 255, 255, 0.22);
   --text-light: rgba(255, 255, 255, 0.85);
   --text-muted: rgba(255, 255, 255, 0.55);
   --radius: 20px;
   --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
 }

 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 body {
   font-family: 'DM Sans', sans-serif;
   background: #0f0f1a;
   color: #1a1a2e;
   overflow-x: hidden;
 }

 /* ── HERO ── */
 .hero-section {
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: center;
   overflow: hidden;
 }

 .hero-video {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 0;
   filter: brightness(0.45) saturate(1.2);
 }

 .hero-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(26, 26, 46, 0.82) 0%, rgba(243, 146, 0, 0.18) 100%);
   z-index: 1;
 }

 /* animated grain */
 .hero-grain {
   position: absolute;
   inset: 0;
   background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
   z-index: 2;
   pointer-events: none;
   opacity: 0.5;
 }

 .hero-content {
   position: relative;
   z-index: 3;
   width: 100%;
   padding: 120px 0 80px;
 }

 .hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(243, 146, 0, 0.18);
   border: 1px solid rgba(243, 146, 0, 0.4);
   color: var(--orange);
   padding: 6px 16px;
   border-radius: 50px;
   font-size: 12px;
   font-weight: 600;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   margin-bottom: 20px;
   animation: fadeUp 0.6s ease both;
 }

 .hero-title {
   font-family: 'Playfair Display', serif;
   font-size: clamp(2.4rem, 6vw, 4.5rem);
   font-weight: 900;
   color: #fff;
   line-height: 1.1;
   margin-bottom: 16px;
   animation: fadeUp 0.7s 0.1s ease both;
 }

 .hero-title span {
   color: var(--orange);
 }

 .hero-subtitle {
   color: var(--text-muted);
   font-size: 1.05rem;
   font-weight: 300;
   margin-bottom: 40px;
   animation: fadeUp 0.7s 0.2s ease both;
 }

 /* ── SEARCH CARD ── */
 .search-card {
   background: rgba(255, 255, 255, 0.07);
   backdrop-filter: blur(22px) saturate(1.5);
   border: 1px solid rgba(255, 255, 255, 0.18);
   border-radius: var(--radius);
   padding: 32px;
   animation: fadeUp 0.8s 0.3s ease both;
   box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
 }

 .search-card label {
   color: rgba(255, 255, 255, 0.7);
   font-size: 11px;
   font-weight: 600;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   margin-bottom: 8px;
   display: block;
 }

 .search-card .form-select,
 .search-card .form-control,
 .search-card input[type="date"] {
   background: rgba(255, 255, 255, 0.08) !important;
   border: 1px solid rgba(255, 255, 255, 0.15) !important;
   color: #fff !important;
   border-radius: 12px !important;
   padding: 12px 16px !important;
   font-family: 'DM Sans', sans-serif !important;
   font-size: 14px !important;
   transition: all 0.3s;
   outline: none;
   width: 100%;
 }

 .search-card .form-select:focus,
 .search-card .form-control:focus,
 .search-card input[type="date"]:focus {
   border-color: var(--orange) !important;
   background: rgba(243, 146, 0, 0.08) !important;
   box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.15) !important;
 }

 .search-card .form-select option {
   background: #1e1e35;
   color: #fff;
 }

 .search-card input[type="date"]::-webkit-calendar-picker-indicator {
   filter: invert(1);
   cursor: pointer;
 }

 .btn-search {
   background: linear-gradient(135deg, #F39200, #f5a623);
   border: none;
   color: #fff;
   font-family: 'DM Sans', sans-serif;
   font-weight: 700;
   font-size: 15px;
   padding: 14px 40px;
   border-radius: 50px;
   cursor: pointer;
   letter-spacing: 0.5px;
   transition: all 0.3s;
   box-shadow: 0 8px 30px rgba(243, 146, 0, 0.4);
   position: relative;
   overflow: hidden;
 }

 .btn-search::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
   opacity: 0;
   transition: opacity 0.3s;
 }

 .btn-search:hover {
   transform: translateY(-2px);
   box-shadow: 0 12px 40px rgba(243, 146, 0, 0.55);
 }

 .btn-search:hover::after {
   opacity: 1;
 }

 /* ── STATS ROW ── */
 .stats-row {
   display: flex;
   gap: 32px;
   margin-top: 32px;
   animation: fadeUp 0.8s 0.5s ease both;
 }

 .stat-item {
   text-align: center;
 }

 .stat-num {
   font-family: 'Playfair Display', serif;
   font-size: 2rem;
   font-weight: 900;
   color: var(--orange);
   line-height: 1;
 }

 .stat-label {
   color: var(--text-muted);
   font-size: 11px;
   font-weight: 500;
   letter-spacing: 1px;
   text-transform: uppercase;
   margin-top: 4px;
 }

 /* ── BANNER CARDS ── */
 .banner-section {
   background: #f9f9fb;
   padding: 60px 0;
 }

 .banner-card {
   border-radius: 16px;
   overflow: hidden;
   transition: transform 0.4s, box-shadow 0.4s;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 }

 .banner-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 16px 50px rgba(243, 146, 0, 0.2);
 }

 .banner-card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
   display: block;
 }

 /* ── ABOUT SECTION ── */
 .about-section {
   background: #fff;
   padding: 100px 0;
 }

 .about-label {
   color: var(--orange);
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
   margin-bottom: 12px;
 }

 .about-title {
   font-family: 'Playfair Display', serif;
   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 900;
   color: var(--dark);
   line-height: 1.2;
   margin-bottom: 20px;
 }

 .about-text {
   color: #666;
   line-height: 1.8;
   font-size: 15px;
 }

 .about-img {
   width: 100%;
   height: 380px;
   object-fit: cover;
   border-radius: 20px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
 }

 /* ── INFO BOX ── */
 .info-banner {
   background: linear-gradient(135deg, #1a1a2e 0%, var(--dark2) 100%);
   padding: 80px 0;
   position: relative;
   overflow: hidden;
 }

 .info-banner::before {
   content: '';
   position: absolute;
   top: -100px;
   right: -100px;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(243, 146, 0, 0.15), transparent 70%);
   pointer-events: none;
 }

 .info-banner h2 {
   font-family: 'Playfair Display', serif;
   font-size: clamp(1.8rem, 4vw, 2.8rem);
   font-weight: 900;
   color: #fff;
   margin-bottom: 16px;
 }

 .info-banner h2 span {
   color: var(--orange);
 }

 .info-banner p {
   color: var(--text-muted);
   font-size: 16px;
   line-height: 1.7;
 }

 /* ── WHY CHOOSE US ── */
 .why-section {
   background: #f9f9fb;
   padding: 100px 0;
 }

 .section-title {
   font-family: 'Playfair Display', serif;
   font-size: clamp(2rem, 4vw, 2.8rem);
   font-weight: 900;
   color: var(--dark);
   text-align: center;
   margin-bottom: 12px;
 }

 .section-title span {
   color: var(--orange);
 }

 .section-sub {
   text-align: center;
   color: #888;
   font-size: 15px;
   max-width: 540px;
   margin: 0 auto 60px;
   line-height: 1.7;
 }

 .feature-card {
   background: #fff;
   border-radius: 20px;
   padding: 36px 28px;
   text-align: center;
   transition: all 0.4s;
   box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
   height: 100%;
   border: 1px solid #f0f0f0;
   position: relative;
   overflow: hidden;
 }

 .feature-card::before {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(243, 146, 0, 0.06), transparent);
   opacity: 0;
   transition: opacity 0.4s;
 }

 .feature-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 60px rgba(243, 146, 0, 0.15);
   border-color: var(--orange);
 }

 .feature-card:hover::before {
   opacity: 1;
 }

 .feature-icon {
   width: 64px;
   height: 64px;
   background: var(--orange-light);
   border-radius: 18px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
   font-size: 26px;
   color: var(--orange);
   transition: all 0.4s;
 }

 .feature-card:hover .feature-icon {
   background: var(--orange);
   color: #fff;
   transform: rotate(-6deg) scale(1.1);
 }

 .feature-card h4 {
   font-family: 'Playfair Display', serif;
   font-size: 1.2rem;
   font-weight: 700;
   color: var(--dark);
   margin-bottom: 10px;
 }

 .feature-card p {
   color: #888;
   font-size: 14px;
   line-height: 1.7;
 }

 /* ── CENTER CAR IMAGE ── */
 .car-showcase {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .car-showcase img {
   width: 100%;
   max-width: 420px;
   height: 300px;
   object-fit: cover;
   border-radius: 24px;
   box-shadow: 0 20px 60px rgba(243, 146, 0, 0.2), 0 0 0 1px rgba(243, 146, 0, 0.1);
 }

 .car-badge {
   position: absolute;
   bottom: -16px;
   background: var(--orange);
   color: #fff;
   padding: 10px 24px;
   border-radius: 50px;
   font-weight: 700;
   font-size: 13px;
   box-shadow: 0 8px 30px rgba(243, 146, 0, 0.4);
 }

 /* ── PAYMENT SECTION ── */
 .payment-section {
   background: #fff;
   padding: 80px 0;
 }

 .payment-card {
   background: #f9f9fb;
   border-radius: 20px;
   padding: 32px 24px;
   text-align: center;
   border: 1px solid #eee;
   transition: all 0.3s;
   height: 100%;
 }

 .payment-card:hover {
   border-color: var(--orange);
   box-shadow: 0 12px 40px rgba(243, 146, 0, 0.12);
   transform: translateY(-4px);
 }

 .payment-card img {
   width: 100%;
   height: 160px;
   object-fit: cover;
   border-radius: 12px;
   margin-bottom: 20px;
 }

 .payment-card h4 {
   font-family: 'Playfair Display', serif;
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--dark);
   margin-bottom: 8px;
 }

 .payment-card p {
   color: #888;
   font-size: 13px;
 }

 /* ── MODALS ── */
 .modal-content {
   border-radius: 24px;
   border: none;
   overflow: hidden;
   box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3);
 }

 .modal-auth-header {
   background: linear-gradient(135deg, var(--dark), var(--dark2));
   padding: 40px 36px 28px;
   text-align: center;
 }

 .modal-logo {
   width: 120px;
   margin-bottom: 16px;
 }

 .modal-auth-header h4 {
   font-family: 'Playfair Display', serif;
   font-size: 1.6rem;
   font-weight: 900;
   color: #fff;
   margin-bottom: 6px;
 }

 .modal-auth-header p {
   color: var(--text-muted);
   font-size: 13px;
   margin: 0;
 }

 .modal-body-custom {
   padding: 32px 36px 36px;
   background: #fff;
 }

 .form-group-custom {
   margin-bottom: 20px;
 }

 .form-group-custom label {
   display: block;
   font-size: 12px;
   font-weight: 600;
   color: #555;
   letter-spacing: 1px;
   text-transform: uppercase;
   margin-bottom: 8px;
 }

 .form-input-custom {
   width: 100%;
   padding: 13px 16px;
   border: 1.5px solid #e8e8e8;
   border-radius: 12px;
   font-family: 'DM Sans', sans-serif;
   font-size: 14px;
   color: var(--dark);
   background: #fafafa;
   transition: all 0.3s;
   outline: none;
 }

 .form-input-custom:focus {
   border-color: var(--orange);
   background: #fff;
   box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.12);
 }

 .input-with-btn {
   position: relative;
   display: flex;
   gap: 10px;
 }

 .input-with-btn input {
   flex: 1;
 }

 .btn-send-otp {
   background: var(--orange);
   color: #fff;
   border: none;
   border-radius: 12px;
   padding: 0 20px;
   font-weight: 600;
   font-size: 13px;
   cursor: pointer;
   transition: all 0.3s;
   white-space: nowrap;
   font-family: 'DM Sans', sans-serif;
 }

 .btn-send-otp:hover {
   background: var(--orange-dark);
 }

 .btn-send-otp:disabled {
   background: #ccc;
   cursor: not-allowed;
 }

 .btn-primary-custom {
   width: 100%;
   background: linear-gradient(135deg, #F39200, #f5a623);
   border: none;
   color: #fff;
   padding: 15px;
   border-radius: 12px;
   font-family: 'DM Sans', sans-serif;
   font-weight: 700;
   font-size: 15px;
   cursor: pointer;
   letter-spacing: 0.5px;
   transition: all 0.3s;
   box-shadow: 0 6px 24px rgba(243, 146, 0, 0.35);
   margin-top: 8px;
 }

 .btn-primary-custom:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 32px rgba(243, 146, 0, 0.5);
 }

 .modal-footer-link {
   text-align: center;
   margin-top: 20px;
   font-size: 13px;
   color: #888;
 }

 .modal-footer-link a {
   color: var(--orange);
   font-weight: 600;
   text-decoration: none;
 }

 .modal-footer-link a:hover {
   text-decoration: underline;
 }

 .otp-dots {
   display: flex;
   justify-content: center;
   gap: 12px;
   margin: 20px 0;
 }

 .otp-dot-input {
   width: 54px;
   height: 60px;
   text-align: center;
   font-size: 22px;
   font-weight: 700;
   border: 2px solid #e8e8e8;
   border-radius: 14px;
   outline: none;
   font-family: 'Playfair Display', serif;
   color: var(--dark);
   transition: all 0.3s;
 }

 .otp-dot-input:focus {
   border-color: var(--orange);
   box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.15);
   background: #fffbf4;
 }

 .resend-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-top: 12px;
 }

 .resend-row span {
   font-size: 13px;
   color: #aaa;
 }

 .resend-row a {
   color: var(--orange);
   font-size: 13px;
   font-weight: 600;
   text-decoration: none;
 }

 .tab-switch {
   display: flex;
   background: #f4f4f7;
   border-radius: 12px;
   padding: 4px;
   margin-bottom: 28px;
 }

 .tab-btn {
   flex: 1;
   padding: 10px;
   border: none;
   background: transparent;
   border-radius: 10px;
   font-family: 'DM Sans', sans-serif;
   font-weight: 600;
   font-size: 14px;
   color: #888;
   cursor: pointer;
   transition: all 0.3s;
 }

 .tab-btn.active {
   background: #fff;
   color: var(--orange);
   box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
 }

 /* ── ANIMATIONS ── */
 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .scroll-reveal {
   opacity: 0;
   transform: translateY(40px);
   transition: all 0.7s ease;
 }

 .scroll-reveal.visible {
   opacity: 1;
   transform: translateY(0);
 }

 /* ── ALERT ── */
 .alert-custom {
   border-radius: 10px;
   padding: 12px 16px;
   font-size: 13px;
   font-weight: 500;
   margin-bottom: 16px;
   display: none;
 }

 .alert-danger-custom {
   background: #fff0f0;
   color: #c0392b;
   border: 1px solid #f5c6c6;
 }

 .alert-success-custom {
   background: #f0fff4;
   color: #27ae60;
   border: 1px solid #b2dfdb;
 }

 /* ── PHONE INPUT GROUP ── */
 .phone-group {
   display: flex;
   gap: 0;
   border: 1.5px solid #e8e8e8;
   border-radius: 12px;
   overflow: hidden;
   background: #fafafa;
   transition: all 0.3s;
 }

 .phone-group:focus-within {
   border-color: var(--orange);
   box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.12);
   background: #fff;
 }

 .phone-prefix {
   padding: 13px 14px;
   background: #f0f0f0;
   font-size: 14px;
   font-weight: 600;
   color: #555;
   border-right: 1px solid #ddd;
   white-space: nowrap;
 }

 .phone-group input {
   flex: 1;
   padding: 13px 14px;
   border: none;
   outline: none;
   background: transparent;
   font-family: 'DM Sans', sans-serif;
   font-size: 14px;
   color: var(--dark);
 }

 /* Responsive */
 @media (max-width: 768px) {
   .stats-row {
     gap: 20px;
     flex-wrap: wrap;
   }

   .search-card {
     padding: 20px;
   }

   .modal-auth-header {
     padding: 28px 24px 20px;
   }

   .modal-body-custom {
     padding: 24px;
   }

   .otp-dot-input {
     width: 46px;
     height: 52px;
     font-size: 18px;
   }
 }

 