* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background-color: #f9fafb;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 45px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center; 
  height: 100%; 
}

.nav-logo img {
  height: 50px; 
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #F36C17;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #F36C17;
  transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Cars Slider Section */
.cars-slider {
  padding: 30px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #1f2937;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #F36C17;
  margin: 10px auto 20px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: #6b7280;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.car-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.car-card:hover {
  transform: translateY(-5px);
}

.car-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.car-details {
  padding: 15px;
}

.car-details h3{
  font-size: 1.3rem
}

.car-details p{
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 15px;
}

.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 14px;
  color: #555;
  margin: 8px 0;
}

.car-specs span i {
  color: #F36C17;
}

.car-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.amenity {
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  color: #F36C17;
}

.car-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.rent-btn {
  background: #F36C17;;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.rent-btn:hover {
  background: #9f97f7;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #f9fafb;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #F36C17;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: #191919;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 10px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #F36C17;
}

.footer-section p {
  margin-bottom: 15px;
  color: #d1d5db;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer-section ul li a:hover {
  color: #F36C17;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1f2937;
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #F36C17;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* call now */
.call-now-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 1000;
}

.call-now-btn:hover {
    background: #1ebe57;
    transform: scale(1.1);
}


/* Responsive Design */
@media (max-width: 992px) {
  .slide {
    min-width: 50%;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
  position: fixed;
  left: -100%;
  top: 70px;
  flex-direction: column;
  background: #fff;
  width: 100%;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 20px 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .slide {
    min-width: 100%;
  }
    
  /* Hamburger animation into X */
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

}

/* Rental Experience */
.rental-experience {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.experience-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.experience-card h3 {
  margin-bottom: 15px;
}

.experience-card ul {
  padding-left: 20px;
  margin: 15px 0;
}

.experience-card.elite {
  border-left: 6px solid #9f97f7;
  color: #6b7280;
}

.experience-card.standard {
  border-left: 6px solid #F36C17;
  color: #6b7280;
}

.comparison-table {
  overflow-x: auto;
  margin-top: 30px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.comparison-table th {
  background: #F36C17;
  color: #fff;
  font-weight: 600;
}

/* slider css */
.car-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.car-slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Navigation buttons */
.slider .prev,
.slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.slider .prev {
  left: 10px;
}

.slider .next {
  right: 10px;
}

.slider .prev:hover,
.slider .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: white;
}

/* Search Section */
.search-item {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 20px 0;   /* space around */
}

.search-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
}

/* Input field */
.search-input {
  flex: 1;
  min-width: 150px;
  padding: 13px 15px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  outline: none;
  font-size: 16px;
}

/* Button */
.search-btn {
  background: #F36C17;
  border: none;
  color: white;
  padding: 13px 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: #9f97f7;
}

/* Why Choose Us */
.why-choose {
  padding: 30px 20px;
  background: #fff;
  text-align: center;
}

.why-choose .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.why-choose .subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-item {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.why-item i {
  font-size: 2rem;
  color: #F36C17;
  margin-bottom: 15px;
}

.why-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Membership Section */
.membership {
  padding: 30px 20px;
  background: #f9f9f9;
  text-align: center;
}

.membership .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.membership .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.membership-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.membership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.membership-card .card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.membership-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.membership-card i {
  font-size: 1.5rem;
  color: #F36C17;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #F36C17;
  margin: 15px 0;
}

.price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px;
  text-align: left;
  color: #444;
}

.benefits li {
  margin: 8px 0;
}

.btn-join {
  display: inline-block;
  padding: 10px 20px;
  background: #F36C17;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-join:hover {
  background: #9f97f7;
}

/* Highlight popular plan */
.membership-card.popular {
  border: 2px solid #F36C17;
  transform: scale(1.05);
}

.membership-card.popular .badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #9f97f7;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Referral text */
.membership-benefits {
  margin-top: 40px;
  font-size: 1rem;
  color: #333;
}


/* privacy policy */
.privacy-policy {
  background: #f9fafc;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 30px auto;
}
.privacy-policy .section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}
.policy-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
}
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-item i {
  font-size: 22px;
  color: #F36C17;
  flex-shrink: 0;
  margin-top: 5px;
}
.policy-item p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

/* about us page code */
.about-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  margin-top: 15px;
  margin-bottom: 25px;
}

.about-card i {
  color: #F36C17;
  margin-right: 8px;
}

.about-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F36C17;
}

/* Who We Serve - Vertical Cards */
.serve-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  margin-top: 20px;
}

.serve-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #F36C17;
}

.serve-card p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}
.verticle_card {
  display: flex;
  gap: 15px;
}

/* Icons */
.serve-icon {
  font-size: 40px;
  color: #F36C17;
  background: #e8f0ff;
  padding: 18px;
  border-radius: 50%;
}


/* ✅ Services */
.services {
  background: #f9fafc;
}
.services .row > div {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.services .row > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}
.services p {
  margin: 0;
  font-size: 1rem;
  color: #444;
}
.services strong {
  color: #F36C17;
}

/* ✅ How It Works */
.how-it-works {
  background: #f8f9fa;
}
.how-it-works ol {
  max-width: 406px;
  margin: 0 auto;
  padding-left: 20px;
}
.how-it-works li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  position: relative;
  padding-left: 10px;
}
.how-it-works li strong {
  color: #F36C17;
}

/* Hero Section Styling */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 100px 60px;
  background: url('../frederik-danko-UJzJUChv5IM-unsplash.jpg') no-repeat center center/cover;
  min-height: 500px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero-text h1 span {
  color: #fff;
}

.hero-text p {
  font-size: 22px;
  color: #ffffff;     
  font-weight: 500;    
  margin-top: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  background: rgba(0, 0, 0, 0.5); 
}

.booking-form {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: auto;
}

.booking-form h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.booking-form .form-group {
    margin-bottom: 15px;
    position: relative; /* needed for placeholder effect */
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: #9f97f7;
}

.booking-form .phone-input {
    display: flex;
    gap: 10px;
}

.booking-form .phone-input select {
    flex: 1;
}

.booking-form .phone-input input {
    flex: 3;
}

/* Date input normalization */
.booking-form input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 48px;
}

/* Fake placeholder for date */
.booking-form input[type="date"]:not(:focus):invalid::before {
    content: attr(data-placeholder);
    color: #999;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
}

/* Button styling */
.booking-form button {
    width: 100%;
    padding: 14px;
    background: #F36C17;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.booking-form button:hover {
    background: #9f97f7;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-form {
        padding: 15px;
    }

    .booking-form input,
    .booking-form select {
        font-size: 16px;
        padding: 14px 18px;
    }
}



.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(-20px);
    animation: slideIn 0.5s forwards, fadeOut 0.5s 4s forwards;
}

.toast.success {
    background: #28a745; /* Green */
}
.toast.error {
    background: #dc3545; /* Red */
}
.toast.warning {
    background: #ffc107; /* Yellow */
    color: #333;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* For mobile devices (portrait & small screens) */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 26px !important;
    text-align: center !important;
    color: #000 !important;
  }
  .hero-text h1 span {
    color: #000 !important;
  }
  .hero-text p {
    font-size: 16px;
  }
}

/* For larger mobile devices & small tablets (landscape phones, phablets) */
@media (min-width: 481px) and (max-width: 767px) {
  .hero-text h1 {
    font-size: 26px !important;
  }
}


/* Base style */
input[type="date"] {
  position: relative;
  color: transparent; /* hide default date text */
}

/* Fake placeholder */
input[type="date"]::before {
  content: attr(data-placeholder);
  position: absolute;
  left: 15px;
  color: #aaa;
}

/* On focus, still hide browser's dd-mm-yy text */
input[type="date"]:focus {
  color: transparent;
}

/* Once user selects a valid date, show it */
input[type="date"]:valid {
  color: #333;
}

/* Hide placeholder once date is selected */
input[type="date"]:valid::before {
  content: "";
}
