.transport-container {
    background: #f8f9fa;
    padding: 2rem 0;
}

.transport-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-5px);
}

.transport-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
}

.transport-icon.plane {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.transport-icon.train {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.transport-icon.bus {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.transport-icon.car {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.transport-icon.metro {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.route-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #007bff;
}

.route-step {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.route-step i {
    width: 20px;
    color: #007bff;
}

.map-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-placeholder {
    background: #e9ecef;
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.2rem;
}

.contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    width: 30px;
    font-size: 1.2rem;
}

.weather-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.weather-card {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.weather-temp {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.accommodation {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hotel-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.hotel-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 8px rgba(0,123,255,0.1);
}

.hotel-rating {
    color: #ffc107;
}

.distance-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.emergency-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.emergency-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.emergency-item i {
    width: 25px;
    color: #856404;
}

.tabs-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-pills .nav-link {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

@media (max-width: 768px) {
    .transport-card {
        padding: 1.5rem;
    }
    
    .transport-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .weather-temp {
        font-size: 2rem;
    }
}