.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex; /* Use inline-flex for better alignment */
    align-items: center;
    justify-content: center; /* Center content horizontally */
    gap: 0.5rem;
    border: none;
  }
  
  .btn-primary {
    background: var(--primary);
    color: var(--text-dark);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  
  
.secondary-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}



.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid var(--text-light);
}



.secondary-button:hover {
    background: var(--text-light);
    color: var(--text-dark);
}





.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1); /* Original background */
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
}

.feature-item a {
    color: white; /* Text color */
}

.feature-item:nth-child(1) { /* 24/7 button */
    background-color: #e6a820; /* Green */
}

.feature-item:nth-child(2) { /* Licensed Drivers button */
    background-color: #e6a820; /* Blue */
}

.feature-item:nth-child(3) { /* Fixed Prices button */
    background-color: rgba(255, 215, 0, 0.8); /* Yellow */
}

.feature-item:hover {
    background-color: rgba(3, 253, 86, 0.1); /* Add a subtle dark overlay on hover */
}
/* Location Filters */


/* Filter Button */
.filter-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: var(--gray-200);
    color: var(--gray-700);
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn.active {
    background: var(--primary);
    color: var(--text-dark);
}





.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}
label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
    color: #333;
}

input, select {
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}


.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 183, 49, 0.1);
}
/* Location Input Wrapper */


/* Clear Location Button */
.clear-location {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    padding: 0.25rem;
}




/* Message Popup */
.message-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.message-content {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* Floating Social */
.floating-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-social a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-social a:hover {
    transform: translateY(-3px);
}

.floating-social img {
    width: 30px;
    height: 30px;
}
/* Weather Info */



/* Confirmation Message */
.confirmation-message {
    text-align: center;
    padding: 30px;
}

.confirmation-message i {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 20px;
}

.confirmation-message .booking-ref {
    margin-top: 20px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 16px;
}

/* Override hero-content padding to reduce top space under header */
.hero-content {
    padding-top: calc(var(--header-height, 80px) + 4rem) !important;
}
