body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Banner Section Styles */
.banner-section {
    margin-top: -76px; /* Offset fixed navbar */
}

.banner-section img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0;
    text-align: center;
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-banner .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Ensure banner displays properly on mobile */
@media (max-width: 768px) {
    .banner-section img {
        height: 400px;
    }
    
    .hero-banner {
        height: 400px;
        padding: 100px 0;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner .lead {
        font-size: 1.2rem;
    }
}

.vehicle-card, .plan-card {
    height: 100%;
}

.vehicle-img, .plan-img {
    height: 200px;
    object-fit: cover;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: white;
}

.admin-card {
    border-left: 4px solid #007bff;
}

.alert {
    border-radius: 10px;
}

.btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Booking System Styles */
.btn-booking {
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 12px;
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.booking-options .btn-group {
    border-radius: 8px;
    overflow: hidden;
}

.booking-options .btn-group .btn {
    border-radius: 0;
    padding: 10px;
    border: 1px solid #dee2e6;
}

.booking-options .btn-group .btn:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.booking-options .btn-group .btn:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Booking Form Styles */
.booking-form .card {
    border: none;
    border-radius: 15px;
}

.booking-form .card-header {
    border-radius: 15px 15px 0 0 !important;
}

/* Success Page Styles */
.success-icon {
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.step-item {
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}