.header{
  background-color: #111214;
}
.navbar{
  background-color: #81879b;
}

/* .hero-section {
  background: url('../images/cars/suzuki_spresso.jpg') center center no-repeat;
  background-size: cover;
  height: 100vh;
   display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-image-text {
  z-index: 2;
} */

.hero-section {
  position: relative;
  background: url('../images/backgrounds/backcarblue.png') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1112145e; /* Adjust opacity as needed */
  z-index: 0;
}
.hero-section > .container {
  position: relative;
  z-index: 2;
}

.booking-form {
  background: #111214d8;
}

/* input field style */
.form-group select,
.form-group input {
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    min-width: 150px;
}

.selectinput-place{
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1rem;
  min-width: 150px;
}


/* Fade transition for showing/hiding the return field */
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.3s ease;
}
.fade-enter-from, .fade-leave-to {
  opacity: 0;
}

.selectinput-place div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px; /* adjust as needed */
  display: inline-block;
  vertical-align: middle;
}

.dropdown-item {
  cursor: pointer;
  transition: background-color 0.2s ease;
}


/* .booking-box {
  background-color: #f6c000;
  max-width: 350px;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 2;
  margin-right: 5vw;
} */

/* .booking-box label {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.booking-box .form-control {
  border-radius: 3px;
  border: none;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
}

.booking-box .form-check-input {
  margin-right: 0.5rem;
}

.booking-box .btn {
  font-size: 1rem;
  border-radius: 3px;
} */

.search-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #b91c1c;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap:10px;
    width: 100%;
    max-width: 800px;
    margin-top: 2rem;
}

.step {  
     background: rgba(19, 19, 19, 0.863);
    text-align: center;
    flex: 1;
    padding-top: 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.step-number {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
}

.content-section {
    background: white;
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.vehicle-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.vehicle-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.vehicle-card:hover {
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.vehicle-card.selected {
    border-color: #dc2626;
    background: #fef2f2;
}

.selected-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vehicle-image {
    width: 120px;
    height: 80px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.vehicle-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.vehicle-details {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.vehicle-features {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.extras-section {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 10px;
}

.extras-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.extra-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #dc2626;
}

.extra-item label {
    font-size: 1rem;
    color: #333;
    cursor: pointer;
}

.booking-summary {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.summary-total {
    border-top: 2px solid #e5e7eb;
    padding-top: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.continue-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: background 0.3s;
}

.continue-btn:hover {
    background: #b91c1c;
}

.vehicle-specs {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .booking-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
    }
    
    .vehicle-card {
        flex-direction: column;
        text-align: center;
    }
    
    .steps {
        flex-direction: column;
        gap: 1rem;
    }
}
/*#region       car rental       */
  /* Car Cards */
  
  /* Featured Cars Section */
  .featured-section {
    padding: 4rem 0;
    background: white;
  }

  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(66, 66, 66);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }

  .car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }

  .car-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
  }

  .car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
  }

  .car-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
  }

  .car-image {
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .car-card:hover .car-image img {
    transform: scale(1.05);
  }

  .car-placeholder {
    font-size: 4rem;
    color: rgba(255,255,255,0.8);
  }

  .car-info {
    padding: 1.5rem;
  }

  .car-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
  }

  .car-title {
    font-size: 1.3rem;
    font-weight: 700;
    color:#026f88 ;
    margin-bottom: 0.5rem;
  }

  .car-subtitle {
    font-size: 0.9rem;
    color: var(--light-gray);
  }

  .car-price {
    text-align: right;
  }

  .price-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
  }

  .price-period {
    font-size: 0.9rem;
    color: var(--light-gray);
  }

  .car-specs {
    display: grid;
    color: rgb(29, 29, 29);
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1.5rem 0;
  }

  .spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-gray);
  }

  .spec-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
  }

  .car-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
  }
/*#endregion car rental */

/*#region        Why choose us   */
.why-choose-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  padding: 0 15px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.feature-icon i {
  font-size: 2.2rem;
  color: white;
}

.feature-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.feature-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
      margin-bottom: 40px;
  }
  
  .feature-item {
      margin-bottom: 40px;
  }
  
  .feature-icon {
      width: 60px;
      height: 60px;
      margin-right: 20px;
  }
  
  .feature-icon i {
      font-size: 1.8rem;
  }
  
  .feature-content h3 {
      font-size: 1.2rem;
  }
}
/*#endregion     why choose  us  */
