* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins',sans-serif;
  background: #F8FAFC;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height:100%;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
}

:root {
  --primary: #6C2BD9;
  --secondary: #9D4EDD;
  --pink: #FF4D6D;
  --dark: #1E293B;
  --light: #F8FAFC;
}
/*=========================
        Navbar
==========================*/

.navbar {
  height: 70px;
  transition: .4s;
  z-index: 9999;
}
/*.logo-img {
  width: 210px !important;
  height: 100px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  display: block;
}*/

.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0 12px;
  position: relative;
  transition: .3s;
}
.navbar .navbar-brand img.logo-img {
  width: 250px !important;
  height: 120px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block;
}
  .navbar-nav .nav-link:hover {
    color: #6C2BD9;
  }

.navbar-nav .active {
  color: #6C2BD9 !important;
}

  .navbar-nav .active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: #6C2BD9;
    border-radius: 20px;
  }

.phone-number {
  font-weight: 600;
  color: #222;
}

  .phone-number i {
    color: #6C2BD9;
    margin-right: 8px;
  }

.book-btn {
  background: linear-gradient(90deg,#6C2BD9,#A855F7);
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: .3s;
}

  .book-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108,43,217,.30);
  }

main {
  margin-top: 85px;
}
.hero-placeholder {
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8FAFC;
}

  .hero-placeholder h1 {
    font-size: 60px;
    font-weight: 700;
  }

  .hero-placeholder p {
    font-size: 22px;
    color: #777;
  }
/*=========================
        HERO SECTION
==========================*/

/*.hero-section {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: url('../../Images/hero-bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}*/
.hero-section {
  position: relative;
  min-height: 20px;
  padding-bottom: 40px;
  background: url('../../Images/hero1.png') no-repeat center bottom;
  background-size: cover;
  overflow: visible;
}

.hero-car {
  width: 100%;
  max-width: 760px;
  position: relative;
  top : 150px;
  right: -30px;
  z-index: 5;
  filter: drop-shadow(0 30px 25px rgba(0,0,0,.35));
  transition: .4s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(0,0,0,.75), rgba(0,0,0,.45), rgba(0,0,0,.15) );
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: #fff;
  padding-top: 80px;
}
/*.hero-content h1 span {
  background: linear-gradient(90deg, #6C2BD9, #9D4EDD, #C77DFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}*/

.hero-tag {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(255,255,255,.15);
  border-radius: 30px;
  margin-bottom: 20px;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.hero-content h1 {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
}

  .hero-content h1 span {
    background: linear-gradient( 90deg, #6C2BD9, #E879F9, #F8D57E );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
  }

.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-book {
  background: #6C2BD9;
  color: #fff;
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 600;
  transition: .3s;
  background: linear-gradient( 135deg, #6C2BD9, #A855F7 );
  color: #fff;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(108,43,217,.35);
}

  .btn-book:hover {
    background: #5822b5;
    color: #fff;
  }

.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 600;
  transition: .3s;
}

  .btn-outline-custom:hover {
    background: #fff;
    color: #222;
  }

.hero-features {
  display: flex;
  gap: 35px;
  margin-top: 20px;
}

  .hero-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
  }

  .hero-features i {
    color: #9D4EDD;
    font-size: 22px;
  }

.premium-navbar .navbar-nav .nav-link {
  font-size: 15px !important;
  font-weight: 600;
  padding: 12px 18px !important;
  margin: 0 0px;
}

/*  .premium-navbar .navbar-nav .nav-link i {
    font-size: 17px;
    margin-right: 6px;
  }*/

/*@keyframes floatCar {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}*/

/* Responsive */

@media(max-width:991px) {

  .hero-section {
    padding: 120px 0 100px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
  }
  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
    margin-bottom: 40px;
  }
}
/*==================================
        BOOKING SECTION
===================================*/


.booking-wrapper {
  position: relative;
  width: 100%;
  margin-top: 1px;
  z-index: 20;
}

.booking-section {
  position: relative;
  margin-top: 10px;
  z-index: 100;
}
/*.booking-card {
  background: #fff;
  border-radius: 24px;
     min-height:150px;*/      /* Increase card height */
    /*padding:35px 30px;  
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  transition: .4s ease;
  animation: cardUp .8s ease;
}*/
.booking-card {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,.18);
  width: 100%;
  top:80px;
}

/*  .booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(108,43,217,.18);
  }*/

@keyframes cardUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.booking-item {
  padding: 20px;
  transition: .35s;
  border-radius: 15px;
}

  .booking-item:hover {
    background: #faf7ff;
  }
.booking-input i {
  color: #6C2BD9;
  font-size: 22px;
  margin-right: 12px;
  transition: .35s;
}

.booking-item:hover i {
  transform: scale(1.25) rotate(-10deg);
  color: #9D4EDD;
}
.booking-input {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: .3s;
}

  .booking-input:focus-within {
    border-color: #6C2BD9;
  }

  .booking-input input {
    border: none;
    outline: none;
    background: none;
    width: 100%;
  }
/*.booking-card .search-btn {
  width: 90%;
  height: 65px;
  margin: 0 auto;
  display: block;
}*/
.search-btn {
  width: 100%;
  height: 65px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg,#6C2BD9,#A855F7);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: .35s;
  position: relative;
  overflow: hidden;
}

  .search-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(108,43,217,.35);
  }

  .search-btn i {
    transition: .35s;
  }

  .search-btn:hover i {
    transform: translateX(8px);
  }
  .search-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,.3);
    transform: skewX(-30deg);
  }

  .search-btn:hover::before {
    animation: shine .8s linear;
  }

@keyframes shine {

  0% {
    left: -120%;
  }

  100% {
    left: 140%;
  }
}
.booking-input input::placeholder {
  transition: .3s;
}

.booking-input input:focus::placeholder {
  transform: translateX(8px);
  opacity: .4;
}
.booking-card {
  animation: floating 5s ease-in-out infinite;
}

@keyframes floating {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}
.bi-geo-alt-fill {
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}
.booking-card {
  position: relative;
  background: #fff;
}

  .booking-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 25px;
    padding: 2px;
 background: linear-gradient(135deg, #2563EB, #1D4ED8, #0EA5E9);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
.hero-car {
  animation: driveCar 6s ease-in-out infinite;
}

@keyframes driveCar {

  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-12px);
  }

  100% {
    transform: translateX(0);
  }
}
/* =========================
   CARS PAGE
========================= */
/* =========================
   SIX CARS ONE ROW
========================= */

.car-row {
  width: 100%;
  margin: 0 auto;
}

.car-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  height: 100%;
  transition: 0.3s;
  top:50px;
}

  .car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(90,30,130,0.14);
  }


/* Car image */

.car-image {
  height: 135px;
  background: linear-gradient( 135deg, #f7f3ff, #ffffff );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8px;
}

  .car-image img {
    width: 100%;
    height: 120px;
    object-fit: contain;
  }


/* Popular badge */

.popular-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient( 90deg, #8d25c8, #c52689 );
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 8px;
  font-weight: 600;
}


/* Heart */

.heart-btn {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: white;
  color: #777;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Content */

.car-content {
  padding: 12px;
}

  .car-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #17152d;
    margin-bottom: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }


/* Specifications */

.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  color: #666;
  font-size: 9px;
  margin-bottom: 10px;
}

  .car-specs span {
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .car-specs i {
    color: #7b20c7;
    font-size: 9px;
  }


/* Bottom */

.car-bottom {
  border-top: 1px solid #eee;
  padding-top: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}


/* Price */

.car-price {
  color: #a020c8;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

  .car-price small {
    color: #777;
    font-size: 8px;
    font-weight: 400;
  }


/* View button */

.details-btn {
  border: 1px solid #8527c7;
  color: #8527c7;
  background: white;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

  .details-btn:hover {
    background: #8527c7;
    color: white;
  }


/* Desktop */

@media (min-width: 992px) {

  .car-row {
    display: flex;
    flex-wrap: nowrap;
  }

    .car-row > div {
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
}


/* Tablet */

@media (max-width: 991px) {

  .car-row {
    flex-wrap: wrap;
  }
}


/* Mobile */

@media (max-width: 576px) {

  .car-image {
    height: 120px;
  }

    .car-image img {
      height: 105px;
    }

  .car-content {
    padding: 10px;
  }

    .car-content h3 {
      font-size: 12px;
    }

  .car-specs {
    font-size: 8px;
  }

  .car-price {
    font-size: 12px;
  }
}
/* =========================================
   CAR CARD BORDER
========================================= */

.car-card {
  position: relative;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

  /* Hover border */
  .car-card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 45px rgba(108, 43, 217, .16);
  }


/* =========================================
   VIEW BUTTON BASE
========================================= */

.details-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 72px;
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  color: #fff !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  transition: all .35s ease;
}

  .details-btn i {
    transition: transform .35s ease;
  }

  .details-btn:hover i {
    transform: translateX(5px);
  }

  .details-btn:hover {
    color: #fff !important;
    transform: translateY(-3px) scale(1.04);
  }


/* =========================================
   DIFFERENT BUTTON COLORS
========================================= */

/* Swift - Purple */
.car-card:nth-child(1) .details-btn {
  background: linear-gradient(135deg, #6C2BD9, #A855F7);
  box-shadow: 0 7px 18px rgba(108, 43, 217, .25);
}

/* Verna - Blue */
.car-card:nth-child(2) .details-btn {
  background: linear-gradient(135deg, #2563EB, #38BDF8);
  box-shadow: 0 7px 18px rgba(37, 99, 235, .25);
}

/* Hector - Orange */
.car-card:nth-child(3) .details-btn {
  background: linear-gradient(135deg, #EA580C, #F97316);
  box-shadow: 0 7px 18px rgba(234, 88, 12, .25);
}

/* Ertiga - Green */
.car-card:nth-child(4) .details-btn,
.car-card:nth-child(5) .details-btn,
.car-card:nth-child(6) .details-btn {
  background: linear-gradient(135deg, #059669, #10B981);
  box-shadow: 0 7px 18px rgba(5, 150, 105, .25);
}


/* =========================================
   DIFFERENT CARD BORDER COLORS
========================================= */

/* Swift */
.car-card:nth-child(1) {
  border-color: rgba(108, 43, 217, .30);
}

/* Verna */
.car-card:nth-child(2) {
  border-color: rgba(37, 99, 235, .30);
}

/* Hector */
.car-card:nth-child(3) {
  border-color: rgba(234, 88, 12, .30);
}

/* Ertiga */
.car-card:nth-child(4),
.car-card:nth-child(5),
.car-card:nth-child(6) {
  border-color: rgba(5, 150, 105, .30);
}


/* =========================================
   BUTTON SHINE
========================================= */

.details-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,.35);
  transform: skewX(-25deg);
  transition: left .6s ease;
}

.details-btn:hover::before {
  left: 140%;
}

.details-btn span,
.details-btn i {
  position: relative;
  z-index: 2;
}
.car-card:nth-child(4) .details-btn {
  background: linear-gradient(135deg, #059669, #10B981);
}

.car-card:nth-child(5) .details-btn {
  background: linear-gradient(135deg, #0891B2, #22D3EE);
}

.car-card:nth-child(6) .details-btn {
  background: linear-gradient(135deg, #DC2626, #F87171);
}
/* =====================================
   ABOUT PAGE
===================================== */

/* =================================
   ABOUT PAGE
================================= */

.about-main {
  background: #faf9ff;
  padding: 70px 0 80px;
}


/* Header */

.about-title {
  max-width: 750px;
  margin: 0 auto 60px;
}

  .about-title > span,
  .about-small-title {
    color: #8527c7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
  }

  .about-title h1 {
    margin: 12px 0;
    color: #19162d;
    font-size: 46px;
    font-weight: 800;
  }

    .about-title h1 strong {
      color: #a426bd;
    }

  .about-title p {
    color: #777;
    font-size: 14px;
  }


/* Story */

.about-story {
  background: #fff;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 8px 30px rgba(80,30,130,.07);
  margin-bottom: 50px;
}

.about-image-box {
  height: 330px;
  border-radius: 18px;
  background: linear-gradient( 135deg, #eee1ff, #fff );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

  .about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

.about-story h2,
.owner-section h2,
.why-section h2 {
  color: #19162d;
  font-size: 34px;
  font-weight: 800;
  margin: 12px 0 20px;
}

  .about-story h2 span,
  .owner-section h2 span,
  .why-section h2 span {
    color: #8527c7;
  }

.about-story p,
.owner-section p,
.why-section > div > p {
  color: #777;
  font-size: 13px;
  line-height: 1.8;
}


/* Button */

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 11px 19px;
  border-radius: 8px;
  background: linear-gradient( 90deg, #7625c7, #c2268a );
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: .3s;
}

  .about-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(118,37,199,.22);
  }


/* Owner */

.owner-section {
  background: #fff;
  border-radius: 22px;
  padding: 35px;
  margin-bottom: 70px;
  box-shadow: 0 8px 30px rgba(80,30,130,.06);
}

/*.owner-photo-box {
  height: 350px;
  max-width: 320px;
  margin: auto;
  overflow: hidden;
  border-radius: 18px;
  background: #f2e9ff;
}*/

/*  .owner-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }*/


/* Owner highlight */

.owner-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 13px 16px;
  width: fit-content;
  border-radius: 10px;
  background: #f7f0ff;
}

  .owner-highlight > i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #8527c7;
    color: #fff;
  }

  .owner-highlight strong,
  .owner-highlight small {
    display: block;
  }

  .owner-highlight strong {
    color: #29233a;
    font-size: 12px;
  }

  .owner-highlight small {
    color: #777;
    font-size: 9px;
    margin-top: 3px;
  }


/* Why */

.why-section {
  margin-bottom: 65px;
}

.why-card {
  height: 100%;
  padding: 25px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  transition: .3s;
}

  .why-card:hover {
    transform: translateY(-5px);
    border-color: #dcc4ee;
    box-shadow: 0 12px 25px rgba(80,30,130,.09);
  }

.why-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f2e6ff;
  color: #8527c7;
  font-size: 20px;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #19162d;
}

.why-card p {
  color: #777;
  font-size: 11px;
  line-height: 1.6;
}


/* CTA */

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 40px;
  border-radius: 20px;
  background: linear-gradient( 135deg, #f1e5ff, #fff1f8 );
}

  .about-cta > div > span {
    color: #8527c7;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .about-cta h2 {
    margin: 7px 0;
    color: #19162d;
    font-size: 27px;
    font-weight: 800;
  }

  .about-cta p {
    margin: 0;
    color: #777;
    font-size: 12px;
  }


/* Mobile */

@media(max-width: 768px) {

  .about-main {
    padding: 45px 0;
  }

  .about-title h1 {
    font-size: 34px;
  }

  .about-story,
  .owner-section {
    padding: 22px;
  }

  .about-image-box {
    height: 240px;
    margin-bottom: 30px;
  }

/*  .owner-photo-box {
    height: 280px;
    margin-bottom: 30px;
  }*/

  .about-story h2,
  .owner-section h2,
  .why-section h2 {
    font-size: 28px;
  }

  .about-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }
}
.founder-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
/* =========================
   FOUNDER CIRCLE
========================= */
/*.owner-photo .founder-img {
  max-width: none;
  max-height: none;
}*/

.owner-photo {
  width: 250px !important;
  height: 250px !important;
  background: red !important;
  border-radius: 50% !important;
  overflow: hidden !important;
}

  .owner-photo .founder-img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
  }


/* Premium Nandas79Travels Highlight */
/*.brand-highlight {
  position: relative;
  display: inline-block;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient( 90deg, #6C2BD9, #E879F9, #F8D57E );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;*/
  /* Premium animation */
  /*animation: premiumHighlight 3s ease-in-out infinite;
}*/


/* Soft premium pulse */
/*@keyframes premiumHighlight {

  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(108, 43, 217, 0));
  }

  50% {
    transform: scale(1.035);
    filter: drop-shadow(0 0 8px rgba(108, 43, 217, 0.45)) drop-shadow(0 0 18px rgba(232, 121, 249, 0.25));
  }
}*/


/* Optional hover effect */
.brand-highlight:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 10px rgba(108, 43, 217, 0.55)) drop-shadow(0 0 22px rgba(232, 121, 249, 0.35));
  transition: all 0.3s ease;
}
.brand-highlight {
  display: inline-block;
  background: linear-gradient( 90deg, #6C2BD9, #E879F9, #F8D57E );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowBreathing 2.8s ease-in-out infinite;
}

@keyframes glowBreathing {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(108, 43, 217, 0.2));
  }

  50% {
    filter: drop-shadow(0 0 8px rgba(108, 43, 217, 0.6)) drop-shadow(0 0 16px rgba(232, 121, 249, 0.3));
  }
}


/* =========================================
   STATIC PREMIUM FOOTER
========================================= */

.premium-footer {
  position: relative !important;
  width: 100%;
  margin-top: 4px;
  /* reduced height */
  padding: 35px 0 15px;
  background: #11101a;
  color: #d7d3e5;
  overflow: hidden;
}


/* Remove any fixed/sticky behavior */

.premium-footer {
  position: relative !important;
  margin-top: 4px;
}


/* Footer background glow */

.footer-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #6c2bd9;
  filter: blur(140px);
  opacity: .12;
  pointer-events: none;
}


/* Brand */

.footer-brand {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
}

  .footer-brand span {
    background: linear-gradient( 90deg, #a855f7, #e879f9, #f8d57e );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


/* Description */

.footer-description {
  max-width: 430px;
  margin: 10px 0 14px;
  color: #9692a4;
  font-size: 12px;
  line-height: 1.5;
}

.premium-footer h5 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}


/* Links */

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

  .footer-links li {
    margin-bottom: 6px;
  }

  .footer-links a {
    color: #9692a4;
    text-decoration: none;
    font-size: 11px;
    transition: .3s ease;
  }

    .footer-links a:hover {
      color: #c084fc;
      padding-left: 4px;
    }


/* Social icons */

.footer-social {
  display: flex;
  gap: 10px;
}

  .footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #aaa5b9;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
    transition: .3s ease;
  }

    .footer-social a:hover {
      color: #ffffff;
      background: #6c2bd9;
      border-color: #6c2bd9;
      transform: translateY(-3px);
    }


/* Contact */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

  .footer-contact div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9692a4;
    font-size: 11px;
  }
  .footer-contact i {
    width: 26px;
    height: 26px;
  }

.footer-divider {
  margin: 25px 0 14px;
}

.footer-bottom {
  font-size: 10px;
}
.cars-page {
  margin-bottom: 60px;
}
  /*.footer-contact i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #c084fc;
    background: rgba(108,43,217,.12);
  }*/


/* Divider */

/*.footer-divider {
  height: 1px;
  margin: 40px 0 20px;
  background: rgba(255,255,255,.1);
}*/


/* Bottom */

/*.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777384;
  font-size: 11px;
}*/

  .footer-bottom strong {
    color: #aaa4b7;
  }


/* Developer */

.developer-credit {
  display: flex;
  align-items: center;
  gap: 6px;
}

.developer-name {
  color: #c084fc;
  font-weight: 700;
}

.developer-credit i {
  color: #a855f7;
}


/* Mobile */

@media (max-width: 768px) {

  .premium-footer {
    padding: 50px 20px 22px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.footer-logo-column {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-logo-img {
  width: 230px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(108, 43, 217, 0.18));
}
@media (max-width: 768px) {

  .footer-logo-column {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-logo-img {
    width: 200px;
  }
}
.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 42px;
  padding: 0 17px;
  border: 1px solid #6C2BD9;
  border-radius: 10px;
  background: #fff;
  color: #6C2BD9 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

  .login-btn i {
    font-size: 14px;
  }

  .login-btn:hover {
    background: linear-gradient(90deg, #6C2BD9, #A855F7);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(108,43,217,.25);
  }
/* =========================================
   FESTIVE OFFER BAR
========================================= */

.festive-offer-bar {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  background: linear-gradient( 135deg, #6C2BD9, #9D4EDD );
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 9999;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}


/* LEFT LABEL */

.festive-label {
  height: 100%;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(0,0,0,0.18);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 2;
}

  .festive-label i {
    font-size: 15px;
  }


/* SCROLL AREA */

.festive-scroll-wrapper {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}


/* MOVING TEXT */

.festive-scroll {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: festiveScroll 25s linear infinite;
}


  .festive-scroll span {
    font-size: 12px;
    font-weight: 500;
  }

    .festive-scroll span i {
      margin-right: 5px;
    }


  .festive-scroll strong {
    color: #ffe082;
    font-weight: 800;
  }


  .festive-scroll b {
    color: rgba(255,255,255,0.6);
  }
.offer-separator {
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  opacity: 0.7;
}

/* BOOK BUTTON */

.festive-book-btn {
  height: 30px;
  margin-right: 10px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: #6C2BD9;
  border-radius: 6px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 2;
  transition: 0.3s;
}


  .festive-book-btn:hover {
    background: #1E293B;
    color: #fff;
  }


/* SCROLL ANIMATION */

@keyframes festiveScroll {

  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}


/* MOBILE */

@media (max-width: 768px) {

  .festive-offer-bar {
    height: 42px;
  }

  .festive-label {
    min-width: 110px;
    font-size: 9px;
  }

  .festive-scroll span {
    font-size: 10px;
  }

  .festive-book-btn {
    display: none;
  }
}
/* ===============================
   MOBILE NAVBAR - SOLID BACKGROUND
   =============================== */

@media (max-width: 991px) {

  .premium-navbar {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
  }

    .premium-navbar .navbar-collapse {
      background: #ffffff !important;
      background-color: #ffffff !important;
      opacity: 1 !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      border-radius: 18px;
      margin-top: 10px;
      padding: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      position: relative;
      z-index: 9999;
    }

    .premium-navbar .navbar-nav {
      background: #ffffff !important;
    }

    .premium-navbar .nav-item {
      background: #ffffff !important;
    }

    .premium-navbar .nav-link {
      background: transparent;
      color: #1E293B !important;
    }

      .premium-navbar .nav-link:hover,
      .premium-navbar .nav-link.active {
        background: #f3eaff !important;
        color: #6C2BD9 !important;
      }

    .premium-navbar .navbar-actions {
      background: #ffffff !important;
      margin-top: 10px;
      padding-top: 10px;
    }

    .premium-navbar .navbar-phone {
      background: #f8f3ff !important;
    }

    .premium-navbar .navbar-buttons {
      background: #ffffff !important;
    }
}

/* =========================================================
   FINAL RESPONSIVE NAVBAR + CAR MOBILE DESIGN
   ========================================================= */


/* =========================================================
   NAVBAR - DESKTOP
   ========================================================= */

.premium-navbar {
  min-height: 82px;
  background: #ffffff !important;
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}

  .premium-navbar .container {
    min-height: 82px;
    display: flex;
    align-items: center;
  }

  /* Logo */

  .premium-navbar .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
  }

  .premium-navbar .logo-img {
    width: 190px !important;
    height: 78px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
  }


  /* Menu */

  .premium-navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .premium-navbar .nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 13px !important;
    color: #1E293B !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    transition: all .3s ease;
  }

    .premium-navbar .nav-link i {
      font-size: 14px;
    }

    .premium-navbar .nav-link:hover {
      color: #6C2BD9 !important;
      background: #f5efff;
    }

    .premium-navbar .nav-link.active {
      color: #6C2BD9 !important;
      background: #f5efff;
    }


      /* Remove old underline */

      .premium-navbar .nav-link.active::after {
        display: none !important;
      }


  /* Phone */

  .premium-navbar .navbar-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #1E293B;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
  }

    .premium-navbar .navbar-phone i {
      color: #6C2BD9;
    }


  /* Actions */

  .premium-navbar .navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .premium-navbar .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
  }


  /* Login */

  .premium-navbar .navbar-login {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 14px;
    border: 1px solid #6C2BD9;
    border-radius: 9px;
    background: #ffffff;
    color: #6C2BD9 !important;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s ease;
  }

    .premium-navbar .navbar-login:hover {
      background: #6C2BD9;
      color: #ffffff !important;
    }


  /* Book Now */

  .premium-navbar .navbar-book {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 17px;
    border-radius: 9px;
    background: linear-gradient( 135deg, #6C2BD9, #A855F7 );
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 7px 18px rgba(108,43,217,.25);
    transition: all .3s ease;
  }

    .premium-navbar .navbar-book:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(108,43,217,.35);
    }


/* Hamburger */

.premium-toggler {
  width: 44px;
  height: 40px;
  border: none !important;
  border-radius: 10px;
  background: #f3eaff !important;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: none !important;
}

  .premium-toggler span {
    width: 22px;
    height: 2px;
    background: #6C2BD9;
    border-radius: 10px;
    display: block;
  }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

  .premium-navbar .nav-link {
    padding: 9px 9px !important;
    font-size: 12px;
  }

  .premium-navbar .navbar-phone {
    font-size: 11px;
  }

  .premium-navbar .navbar-book,
  .premium-navbar .navbar-login {
    padding-left: 11px;
    padding-right: 11px;
  }
}


/* =========================================================
   MOBILE NAVBAR
   ========================================================= */

@media (max-width: 991px) {

  /* Main navbar */

  .premium-navbar {
    min-height: 75px !important;
    background: #ffffff !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 4px 18px rgba(0,0,0,.10);
  }


    .premium-navbar .container {
      min-height: 75px;
      padding-left: 15px;
      padding-right: 15px;
    }


    /* Logo */

    .premium-navbar .logo-img {
      width: 155px !important;
      height: 65px !important;
      max-width: none !important;
      max-height: none !important;
      object-fit: contain !important;
    }


  /* Show hamburger */

  .premium-toggler {
    display: flex !important;
    margin-left: auto;
  }


  /* =====================================================
       MOBILE MENU - GREEN BACKGROUND
       ===================================================== */

  .premium-navbar .navbar-collapse {
    position: absolute;
    top: 75px;
    left: 12px;
    right: 12px;
    width: auto;
    padding: 15px;
    background: #EAF8EF !important;
    background-color: #EAF8EF !important;
    border: 1px solid #B7E4C7;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 99999;
  }


  /* Menu list */

  .premium-navbar .navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    background: transparent !important;
  }


  .premium-navbar .nav-item {
    width: 100%;
    background: transparent !important;
  }


  .premium-navbar .nav-link {
    width: 100%;
    min-height: 45px;
    display: flex;
    align-items: center;
    padding: 10px 14px !important;
    border-radius: 11px;
    color: #164A2A !important;
    background: transparent !important;
    font-size: 13px;
    font-weight: 600;
  }


    .premium-navbar .nav-link i {
      width: 24px;
      font-size: 15px;
      color: #16803C;
    }


    /* Hover / Active */

    .premium-navbar .nav-link:hover,
    .premium-navbar .nav-link.active {
      color: #ffffff !important;
      background: #16803C !important;
    }


      .premium-navbar .nav-link:hover i,
      .premium-navbar .nav-link.active i {
        color: #ffffff !important;
      }


  .premium-navbar .d-flex.align-items-center {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #D8BFFF;
  }

  /* Phone number */
  .premium-navbar .phone-number {
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #4B1FA8;
    margin: 0 !important;
    padding: 8px 0;
  }

    .premium-navbar .phone-number i {
      color: #6C2BD9;
      margin-right: 5px;
    }

  /* Login + Book Now */
  .premium-navbar .book-btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 15px !important;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    margin: 0 !important;
  }

    /* Login */
    .premium-navbar .book-btn:first-of-type {
      background: white;
      color: #6C2BD9 !important;
      border: 1px solid #6C2BD9;
    }

    /* Book Now */
    .premium-navbar .book-btn:last-of-type {
      background: #6C2BD9;
      color: white !important;
      border: 1px solid #6C2BD9;
    }

  /* Hamburger */
  .premium-navbar .navbar-toggler {
    border: 1px solid #6C2BD9 !important;
    padding: 6px 9px;
  }

    .premium-navbar .navbar-toggler:focus {
      box-shadow: 0 0 0 2px rgba(108, 43, 217, 0.2);
    }

  /* =====================================================
       MAIN CONTENT SPACE
       ===================================================== */

  main {
    margin-top: 75px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 576px) {

  .premium-navbar .logo-img {
    width: 140px !important;
    height: 62px !important;
  }


  .premium-navbar .navbar-collapse {
    top: 75px;
    left: 8px;
    right: 8px;
    padding: 12px;
    border-radius: 16px;
  }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

  .premium-navbar .logo-img {
    width: 125px !important;
    height: 58px !important;
  }

  .premium-toggler {
    width: 40px;
    height: 38px;
  }
}


/* =========================================================
   CAR CARDS - MOBILE GREEN DESIGN
   ========================================================= */

@media (max-width: 991px) {

  .car-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -6px;
    margin-right: -6px;
  }


    .car-row > div {
      padding-left: 6px;
      padding-right: 6px;
      margin-bottom: 14px;
    }


  .car-card {
    background: #F1FBF4 !important;
    border: 1.5px solid #B7E4C7 !important;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(22,128,60,.10);
    top: 0;
    transition: all .3s ease;
  }


    .car-card:hover {
      transform: translateY(-4px);
      border-color: #4CAF70 !important;
      box-shadow: 0 14px 30px rgba(22,128,60,.16);
    }


  /* Car image */

  .car-image {
    height: 135px;
    background: linear-gradient( 135deg, #E5F7EA, #F8FFF9 ) !important;
    padding: 8px;
  }


    .car-image img {
      height: 115px;
      object-fit: contain;
    }


  /* Content */

  .car-content {
    padding: 12px;
  }


    .car-content h3 {
      color: #164A2A;
      font-size: 13px;
      margin-bottom: 8px;
    }


  /* Specs */

  .car-specs {
    color: #527060;
    font-size: 9px;
    gap: 6px;
  }


    .car-specs i {
      color: #16803C !important;
      font-size: 10px;
    }


  /* Bottom */

  .car-bottom {
    border-top: 1px solid #CDE8D5;
    padding-top: 9px;
  }


  /* Price */

  .car-price {
    color: #16803C !important;
    font-size: 13px;
  }


    .car-price small {
      color: #64806D;
    }


  /* =========================================================
   FINAL MOBILE NAVBAR - GREEN MENU CARD
   ========================================================= */

  @media (max-width: 991px) {

    /* Top navbar stays WHITE */
    nav.premium-navbar {
      background: #ffffff !important;
      background-color: #ffffff !important;
      min-height: 75px !important;
      height: 75px !important;
      opacity: 1 !important;
      box-shadow: 0 4px 18px rgba(0,0,0,0.10) !important;
    }

      /* Logo */
      nav.premium-navbar .logo-img {
        width: 140px !important;
        height: 62px !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain !important;
      }

      /* Hamburger */
      nav.premium-navbar .premium-toggler {
        display: flex !important;
        width: 44px !important;
        height: 40px !important;
        background: #EAF8EF !important;
        border: 1px solid #B7E4C7 !important;
        border-radius: 9px !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
      }

        nav.premium-navbar .premium-toggler span {
          display: block !important;
          width: 22px !important;
          height: 2px !important;
          background: #16803C !important;
          border-radius: 5px;
        }


      /* =====================================================
       THIS IS THE GREEN CARD THAT OPENS
       ===================================================== */

      nav.premium-navbar .navbar-collapse {
        position: absolute !important;
        top: 75px !important;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        padding: 15px !important;
        background: #EAF8EF !important;
        background-color: #EAF8EF !important;
        border: 1px solid #B7E4C7 !important;
        border-radius: 18px !important;
        box-shadow: 0 15px 35px rgba(22,128,60,0.18) !important;
        opacity: 1 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: 999999 !important;
      }


      /* Menu */
      nav.premium-navbar .navbar-nav {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        background: transparent !important;
      }

      nav.premium-navbar .nav-item {
        width: 100% !important;
        background: transparent !important;
      }


      /* Menu links */
      nav.premium-navbar .nav-link {
        width: 100% !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        padding: 10px 14px !important;
        border-radius: 10px !important;
        background: transparent !important;
        color: #164A2A !important;
        font-size: 13px !important;
        font-weight: 600 !important;
      }

        nav.premium-navbar .nav-link i {
          width: 25px !important;
          color: #16803C !important;
          font-size: 15px !important;
        }


        /* Active / Hover */
        nav.premium-navbar .nav-link:hover,
        nav.premium-navbar .nav-link.active {
          background: #16803C !important;
          color: #ffffff !important;
        }

          nav.premium-navbar .nav-link:hover i,
          nav.premium-navbar .nav-link.active i {
            color: #ffffff !important;
          }


      /* Phone section */
      nav.premium-navbar .navbar-actions {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 12px !important;
        padding-top: 12px !important;
        border-top: 1px solid #B7E4C7 !important;
        background: transparent !important;
      }


      /* Phone */
      nav.premium-navbar .navbar-phone {
        width: 100% !important;
        min-height: 42px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #D7F3DF !important;
        color: #14532D !important;
        border-radius: 10px !important;
      }

        nav.premium-navbar .navbar-phone i {
          color: #16803C !important;
        }


      /* Buttons */
      nav.premium-navbar .navbar-buttons {
        width: 100% !important;
        display: flex !important;
        gap: 8px !important;
        background: transparent !important;
      }

      nav.premium-navbar .navbar-login,
      nav.premium-navbar .navbar-book {
        flex: 1 !important;
        height: 42px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 10px !important;
      }


      /* Login */
      nav.premium-navbar .navbar-login {
        background: #ffffff !important;
        border: 1px solid #16803C !important;
        color: #16803C !important;
      }


      /* Book Now */
      nav.premium-navbar .navbar-book {
        background: linear-gradient( 135deg, #16803C, #22A052 ) !important;
        color: #ffffff !important;
      }
  }


  /* =========================================================
   MOBILE CARDS - GREEN
   ========================================================= */

  @media (max-width: 991px) {

    .car-card {
      background: #F1FBF4 !important;
      border: 1.5px solid #B7E4C7 !important;
      border-radius: 18px !important;
      box-shadow: 0 8px 22px rgba(22,128,60,0.10) !important;
    }

    .car-image {
      background: linear-gradient( 135deg, #E5F7EA, #F8FFF9 ) !important;
    }

    .car-content h3 {
      color: #164A2A !important;
    }

    .car-specs {
      color: #527060 !important;
    }

      .car-specs i {
        color: #16803C !important;
      }

    .car-price {
      color: #16803C !important;
    }

    .car-bottom {
      border-top: 1px solid #CDE8D5 !important;
    }

    .car-card .details-btn {
      background: linear-gradient( 135deg, #16803C, #22A052 ) !important;
      color: #ffffff !important;
      border: none !important;
    }

    .popular-badge {
      background: linear-gradient( 135deg, #16803C, #22A052 ) !important;
    }

    .heart-btn {
      border-color: #B7E4C7 !important;
      color: #16803C !important;
    }
  }


  /* =========================================================
   2 CARDS PER ROW
   ========================================================= */

  @media (max-width: 576px) {

    .car-row {
      display: flex !important;
      flex-wrap: wrap !important;
    }

      .car-row > div {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
      }
  }
  /* =========================================
   HOME PAGE - MOBILE RESPONSIVE
   ========================================= */

  @media (max-width: 991px) {

    /* HERO */
    .hero-section {
      min-height: auto !important;
      padding: 110px 15px 40px !important;
    }

      .hero-section .row {
        flex-direction: column;
      }

    .hero-content {
      text-align: center;
      width: 100%;
    }

      .hero-content h1 {
        font-size: 34px !important;
        line-height: 1.2;
      }

      .hero-content p {
        font-size: 15px;
        line-height: 1.6;
      }

    .hero-tag {
      font-size: 13px;
    }

    .hero-car {
      width: 90%;
      max-width: 420px;
      margin-top: 25px;
    }


    /* HERO FEATURES */
    .hero-features {
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }


    /* BOOKING CARD */
    .booking-wrapper {
      position: relative !important;
      margin-top: 25px !important;
      padding: 0 10px;
    }

    .booking-card {
      padding: 20px !important;
      border-radius: 18px;
    }

      .booking-card .row {
        display: block;
      }

    .booking-item {
      width: 100% !important;
      margin-bottom: 15px;
    }

      .booking-item label {
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
      }

    .booking-input {
      width: 100%;
    }

      .booking-input input {
        width: 100%;
        min-height: 46px;
      }

    .booking-card .search-btn {
      width: 100%;
      margin-top: 5px;
      min-height: 48px;
    }
  }
  /* =========================================
   CARS - RESPONSIVE
   ========================================= */

  @media (max-width: 991px) {

    .cars-page {
      padding: 30px 10px;
    }

    .car-row {
      margin-left: -6px;
      margin-right: -6px;
    }

      .car-row > div {
        padding-left: 6px;
        padding-right: 6px;
        margin-bottom: 12px;
      }

    .car-card {
      height: 100%;
    }

    .car-content {
      padding: 12px !important;
    }

      .car-content h3 {
        font-size: 17px !important;
      }

    .car-specs {
      gap: 5px;
    }

      .car-specs span {
        font-size: 11px;
      }

    .car-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 5px;
    }

    .car-price {
      font-size: 18px;
    }

    .details-btn {
      padding: 8px 10px;
      font-size: 12px;
    }
  }


  @media (max-width: 576px) {

    .car-row > div {
      flex: 0 0 50%;
      max-width: 50%;
    }

    .car-content h3 {
      font-size: 15px !important;
    }

    .car-specs {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }

      .car-specs span {
        font-size: 10px;
      }

    .car-price {
      font-size: 15px;
    }

      .car-price small {
        font-size: 10px;
      }

    .details-btn {
      padding: 7px 8px;
      font-size: 11px;
    }
  }
  @media (max-width: 991px) {

    .premium-navbar .navbar-collapse {
      background: #F4EEFF !important;
      border-radius: 15px;
      margin-top: 5px;
      padding: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
  }
  @media (max-width: 991px) {
    .navbar .navbar-brand img.logo-img {
      width: 140px !important;
      height: 65px !important;
      max-width: 140px !important;
      max-height: 65px !important;
    }
  }
  @media (max-width: 991px) {
    .hero-car {
      display: none !important;
    }
  }
}
