/* assets/css/style.css */

:root {
    --primary-color: #ffc107; /* Màu vàng Taxi */
    --secondary-color: #343a40; /* Màu đen đậm */
    --text-color: #333;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-color);
}

/* --- Hero Section (Phần nền ảnh to) --- */
.hero-section {
    position: relative;
    /* Bạn hãy thay file bg-taxi.jpg bằng ảnh thật của bạn trong folder images */
    background: url('../images/bg-taxi.jpg') no-repeat center center/cover;
    min-height: 100vh; /* Full màn hình */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px; /* Tránh header che mất */
}

/* Lớp phủ mờ để text dễ đọc hơn nếu cần */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* --- Booking Card (Form đặt xe) --- */
.booking-card {
    position: relative;
    z-index: 2; /* Nổi lên trên lớp phủ */
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.95); /* Trắng hơi trong suốt */
    overflow: hidden;
}

.booking-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #e0a800;
}

/* Tùy chỉnh Input */
.form-control, .form-select {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    font-size: 14px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Icon trong input group */
.input-group-text {
    background-color: #fff;
    border-right: none;
    border-radius: 8px 0 0 8px;
}
.input-group .form-control {
    border-left: none;
}

/* Nút bấm */
.btn-primary-taxi {
    background-color: var(--primary-color);
    color: #000;
    font-weight: bold;
    border: none;
    transition: all 0.3s;
}

.btn-primary-taxi:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

/* --- Map Preview --- */
#map_canvas {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-top: 15px;
    border: 2px solid #ddd;
}

/* --- Hiển thị giá tiền --- */
#price_result {
    border-left: 5px solid var(--primary-color);
}

/* Loading Spinner Overlay */
.loading-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
    display: none; /* Mặc định ẩn */
    justify-content: center;
    align-items: center;
    flex-direction: column;
}