

/* Hero Section */
.hero-section {
    background: linear-gradient(rgb(19 1 1 / 70%), rgb(35 26 26 / 70%)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.booking-card {
    /*background: #00000063 !important ;*/
    /*background: red;*/
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Popular Routes */
.route-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.route-card:hover {
    transform: translateY(-5px);
}

.route-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.route-info {
    padding: 20px;
    background: white;
}

/* Why Choose Us */
.feature-card {
    padding: 30px 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .features-list {
        justify-content: center;
    }
}