/* Service-specific styles */
.service-type-badge {
    margin-bottom: 15px;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Seat Map Styles */
.bus-layout, .flight-layout {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.bus-front, .bus-back, .flight-cockpit, .flight-exit {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.seat-map {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.seat {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4caf50;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
}

.seat:hover {
    transform: scale(1.05);
}

.seat.available {
    background: #4caf50;
}

.seat.selected {
    background: #ff9800;
}

.seat.booked {
    background: #f44336;
    cursor: not-allowed;
}

.seat.exit {
    background: #2196f3;
}

.flight-seats {
    flex-direction: column;
}

.seat-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Room Grid */
.room-grid, .vehicle-grid, .car-grid, .cabin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.room-card, .vehicle-card, .car-card, .cabin-card {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.room-card:hover, .vehicle-card:hover, .car-card:hover, .cabin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.room-card.selected, .vehicle-card.selected, .car-card.selected, .cabin-card.selected {
    border-color: #4caf50;
    background: #e8f5e9;
}

.room-card img, .vehicle-card img, .car-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.room-features {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    font-size: 0.85rem;
}

.room-price, .vehicle-price, .car-price, .cabin-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #667eea;
    margin: 10px 0;
}

.btn-select {
    width: 100%;
    padding: 10px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Passenger Forms */
.passenger-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.passenger-form h4 {
    margin-bottom: 15px;
    color: #667eea;
}

/* Seat Legend */
.seat-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.seat-legend .seat {
    width: 30px;
    height: 30px;
    font-size: 0;
    display: inline-block;
}

/* Options List */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-item {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s;
}

.option-item:hover {
    background: #f8f9fa;
}

.option-item label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.option-item input[type="checkbox"] {
    margin-top: 3px;
}

.option-content {
    flex: 1;
}

.option-content h4 {
    margin: 0 0 5px 0;
}

.option-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.option-price {
    color: #667eea;
    font-weight: bold;
}

/* Summary Sections */
.summary-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.summary-section h4 {
    margin-bottom: 10px;
    color: #667eea;
}
/* Shuttle-specific styles */
.shuttle-info {
    margin-bottom: 20px;
}

.info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
}

.info-card h4 {
    margin: 0 0 10px 0;
}

.info-card p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.shuttle-layout {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.shuttle-front, .shuttle-back {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #333;
    color: white;
    border-radius: 8px;
    margin-bottom: 15px;
}

.driver-area, .door, .emergency-exit, .restroom {
    padding: 5px 10px;
    background: #555;
    border-radius: 5px;
    font-size: 0.8rem;
}

.shuttle-seats {
    margin: 20px 0;
}

.seat-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.row-label {
    width: 50px;
    font-weight: bold;
    color: #666;
}

.aisle-indicator {
    width: 30px;
    text-align: center;
    color: #999;
}

.seat.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.seat.women {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.seat.emergency {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
}

.seat.window::before {
    content: "🪟";
    font-size: 10px;
    margin-right: 3px;
}

.seat.aisle::after {
    content: "🚶";
    font-size: 10px;
    margin-left: 3px;
}

.selected-seats-summary {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #e0e0e0;
}

.summary-details {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.seat-preferences {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.preference-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.preference-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-item .seat {
    width: 30px;
    height: 30px;
    margin: 0;
}

/* Responsive shuttle layout */
@media (max-width: 768px) {
    .seat-row {
        flex-wrap: wrap;
    }
    
    .row-label {
        width: 40px;
        font-size: 0.8rem;
    }
    
    .seat {
        width: 40px;
        height: 40px;
        font-size: 10px;
    }
    
    .preference-options {
        grid-template-columns: 1fr;
    }
}