/* ========================================
   ANA LIMO - Customer Portal Styles
   Clean • Modern • Professional
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f7;
    --medium-gray: #e8e8ed;
    --dark-gray: #1d1d1f;
    --text-dark: #1d1d1f;
    --text-light: #86868b;
    --gold: #C9A962;
    --blue: #0071e3;
    --green: #34c759;
    --yellow: #ff9f0a;
    --red: #ff3b30;
    --purple: #af52de;
    --sidebar-width: 260px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light-gray);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   AUTH PAGES (Login/Signup)
   ======================================== */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    padding: 2rem;
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header .logo {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
}

.auth-header .logo-text {
    color: var(--black);
}

.auth-header .logo-accent {
    color: #C9A962;
    font-weight: 400;
}

.auth-subtitle {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--text-light);
}

.social-auth {
    margin-bottom: 1.5rem;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-google:hover {
    background: var(--light-gray);
    border-color: var(--text-light);
}

.btn-google svg {
    width: 20px;
    height: 20px;
}

.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--medium-gray);
}

.divider span {
    font-size: 0.8125rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.auth-form .form-row .form-group {
    min-width: 0;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.auth-form label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.auth-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--light-gray);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--black);
    background: var(--white);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--medium-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-container input:checked ~ .checkmark {
    background: var(--black);
    border-color: var(--black);
}

.checkbox-container input:checked ~ .checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-container a {
    color: var(--black);
    text-decoration: underline;
}

.forgot-link {
    color: var(--text-light);
    transition: color 0.2s ease;
}

.forgot-link:hover {
    color: var(--black);
}

.btn-auth {
    width: 100%;
    padding: 1rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.auth-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.auth-link a {
    color: var(--black);
    font-weight: 600;
}

.admin-link {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

.admin-link a {
    font-size: 0.8125rem;
    color: var(--text-light);
    transition: color 0.2s;
}

.admin-link a:hover {
    color: var(--black);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
}

.auth-footer p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   DASHBOARD LAYOUT
   ======================================== */

body:not(.auth-page) {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: var(--sidebar-width);
    background: var(--black);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: center;
}

.sidebar-header .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.sidebar-header .logo-text {
    color: var(--white);
}

.sidebar-header .logo-accent {
    color: #C9A962;
    font-weight: 400;
}

.sidebar-nav {
    flex: 1;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.nav-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-item:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
    color: #C9A962;
    background: rgba(255, 255, 255, 0.15);
}

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item.logout:hover {
    color: var(--red);
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

/* ========================================
   TOP BAR
   ======================================== */

.top-bar {
    background: var(--white);
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--medium-gray);
    position: sticky;
    top: 0;
    z-index: 50;
}

.page-title h1 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.page-title p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-book-now {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-book-now svg {
    width: 18px;
    height: 18px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.user-menu:hover {
    background: var(--medium-gray);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 500;
}

.chevron {
    width: 16px;
    height: 16px;
    stroke: var(--text-light);
    transition: transform 0.2s ease;
}

.user-menu:has(.user-dropdown.active) .chevron {
    transform: rotate(180deg);
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    overflow: hidden;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--light-gray);
}

.dropdown-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-light);
}

.dropdown-item:hover svg {
    stroke: var(--text-dark);
}

.dropdown-item.logout {
    color: var(--red);
}

.dropdown-item.logout svg {
    stroke: var(--red);
}

.dropdown-item.logout:hover {
    background: rgba(255, 59, 48, 0.1);
}

.dropdown-divider {
    height: 1px;
    background: var(--medium-gray);
    margin: 0.25rem 0;
}

/* ========================================
   DASHBOARD CONTENT
   ======================================== */

.dashboard-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Quick Actions Grid */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.quick-action-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.quick-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quick-action-card.primary {
    background: var(--black);
    color: var(--white);
}

.quick-action-card.primary .action-icon {
    background: rgba(255, 255, 255, 0.15);
}

.quick-action-card.primary .action-icon svg {
    stroke: var(--white);
}

.quick-action-card.primary .action-content p {
    color: rgba(255, 255, 255, 0.7);
}

.quick-action-card.primary .action-arrow {
    stroke: var(--white);
}

.action-icon {
    width: 48px;
    height: 48px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
}

.action-content {
    flex: 1;
}

.action-content h3 {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.125rem;
}

.action-content p {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.action-arrow {
    width: 20px;
    height: 20px;
    stroke: var(--text-light);
    flex-shrink: 0;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
}

.stat-icon.blue { background: rgba(0, 113, 227, 0.1); }
.stat-icon.blue svg { stroke: var(--blue); }
.stat-icon.yellow { background: rgba(255, 159, 10, 0.1); }
.stat-icon.yellow svg { stroke: var(--yellow); }
.stat-icon.green { background: rgba(52, 199, 89, 0.1); }
.stat-icon.green svg { stroke: var(--green); }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Content Cards */
.content-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
}

.content-card.full-width {
    grid-column: span 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.card-header h2 {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.view-all {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--blue);
}

.btn-add-small {
    padding: 0.375rem 0.75rem;
    background: var(--light-gray);
    border: none;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-small:hover {
    background: var(--medium-gray);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 2rem;
}

.empty-state svg {
    width: 48px;
    height: 48px;
    stroke: var(--medium-gray);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.empty-state.large {
    padding: 4rem 2rem;
}

.empty-state.large svg {
    width: 64px;
    height: 64px;
}

.empty-state.large h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-small:hover {
    transform: translateY(-2px);
}

/* Reservation Items */
.reservations-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reservation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.reservation-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: var(--white);
    border-radius: 8px;
    min-width: 50px;
}

.date-day {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.6875rem;
    text-transform: uppercase;
    color: var(--text-light);
}

.reservation-info {
    flex: 1;
}

.reservation-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.reservation-info p {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.reservation-info .time {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Location Items */
.locations-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-dark);
}

.location-info {
    flex: 1;
}

.location-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.location-info p {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.btn-icon-small {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-icon-small svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-light);
}

.btn-icon-small:hover {
    background: var(--medium-gray);
}

.btn-icon-small:hover svg {
    stroke: var(--red);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
}

.status-badge.pending {
    background: rgba(255, 159, 10, 0.1);
    color: var(--yellow);
}

.status-badge.confirmed {
    background: rgba(52, 199, 89, 0.1);
    color: var(--green);
}

.status-badge.completed {
    background: rgba(0, 113, 227, 0.1);
    color: var(--blue);
}

.status-badge.cancelled {
    background: rgba(255, 59, 48, 0.1);
    color: var(--red);
}

.status-badge.large {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* ========================================
   RESERVATIONS PAGE
   ======================================== */

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.625rem 1.25rem;
    background: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-tab:hover {
    color: var(--text-dark);
}

.filter-tab.active {
    background: var(--black);
    color: var(--white);
}

.reservations-full-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reservation-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    background: var(--light-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.reservation-card:hover {
    background: var(--medium-gray);
}

.reservation-card-left {
    flex-shrink: 0;
}

.reservation-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 10px;
    min-width: 60px;
}

.reservation-date-block .date-day {
    font-size: 1.5rem;
}

.reservation-date-block .date-year {
    font-size: 0.625rem;
    color: var(--text-light);
}

.reservation-card-center {
    flex: 1;
}

.reservation-main-info h3 {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.vehicle-type {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.reservation-route {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-point {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.route-point svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-light);
}

.route-line {
    width: 40px;
    height: 1px;
    background: var(--medium-gray);
}

.reservation-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    min-width: 170px;
    text-align: right;
}

.reservation-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.reservation-price.muted {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.reservation-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    /* Default/quote-sent: gold */
    color: #8a6a24;
    background: rgba(201, 169, 98, 0.18);
    border: 1px solid rgba(201, 169, 98, 0.35);
}

.reservation-status-pill.pending {
    color: #b45309;
    background: rgba(255, 159, 10, 0.15);
    border-color: rgba(255, 159, 10, 0.35);
}

.reservation-status-pill.confirmed {
    color: #15803d;
    background: rgba(52, 199, 89, 0.15);
    border-color: rgba(52, 199, 89, 0.35);
}

.reservation-status-pill.completed {
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
}

.reservation-status-pill.cancelled {
    color: #dc2626;
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.35);
}

.reservation-time-inline {
    margin-top: 0.6rem;
    margin-left: 1.05rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-light);
}

/* ========================================
   NEW BOOKING PAGE
   ======================================== */

.booking-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.booking-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section:last-of-type {
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.service-option {
    flex: 1;
}

.service-option input {
    display: none;
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem;
    padding: 1.1rem 1.25rem;
    background: linear-gradient(135deg, #f7f7f9 0%, #ffffff 100%);
    border: 1px solid var(--medium-gray);
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-dark);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.service-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

.service-option input:checked + .service-card {
    border-color: #C9A962;
    box-shadow: 0 12px 28px rgba(201, 169, 98, 0.2);
    background: #ffffff;
}

.service-option input:checked + .service-card .service-icon {
    box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.45);
}

/* Vehicle Options */
.vehicle-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.vehicle-option {
    flex: 1;
    text-align: center;
}

.vehicle-option input {
    display: none;
}

.vehicle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.2rem;
    background: #f7f7f9;
    border: 1px solid var(--medium-gray);
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    min-height: 170px;
}

.vehicle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.vehicle-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    margin: 0 auto;
}

.vehicle-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-dark);
}

.vehicle-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    text-align: center;
}

.vehicle-info p {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.35rem;
    text-align: center;
}

.vehicle-info .capacity {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
}

.vehicle-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.vehicle-option input:checked + .vehicle-card {
    border-color: #C9A962;
    box-shadow: 0 12px 28px rgba(201, 169, 98, 0.2);
    background: #ffffff;
}

/* Form Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--light-gray);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.carseat-options {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
}

.carseat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
}

.carseat-toggle input {
    width: 16px;
    height: 16px;
    accent-color: #C9A962;
    cursor: pointer;
}

/* Airport Fields Section */
.airport-fields-section {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 1.25rem;
}

.airport-fields-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
}

.airport-fields-section .form-group input,
.airport-fields-section .form-group select {
    background: var(--white);
}

.airport-fields-section .form-group input[readonly] {
    background: var(--medium-gray);
    color: var(--text-light);
    cursor: not-allowed;
}

.airport-addon-options {
    margin-top: 0.75rem;
}

.meet-greet-options {
    margin-top: 0;
}

.meet-greet-note {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.carseat-toggle.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.carseat-toggle.disabled input {
    cursor: not-allowed;
}

/* Quick Locations */
.saved-locations-quick {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.saved-locations-quick label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.quick-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-location-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-location-btn:hover {
    background: var(--black);
    color: var(--white);
}

.quick-location-btn .loc-name {
    font-weight: 500;
}

.quick-location-btn .loc-type {
    font-size: 0.6875rem;
    color: var(--text-light);
    text-transform: capitalize;
}

.quick-location-btn:hover .loc-type {
    color: rgba(255, 255, 255, 0.7);
}

.btn-submit-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--black);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

.btn-submit-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-submit-booking svg {
    width: 20px;
    height: 20px;
}

/* Booking Summary */
.booking-summary-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    position: static;
    margin-top: 1.5rem;
}

.booking-summary-card h3 {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.summary-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
}

.summary-item .label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.summary-item .value {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
}

.summary-divider {
    height: 1px;
    background: var(--medium-gray);
    margin: 1rem 0;
}

.summary-note {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    margin-top: 1.5rem;
}

.summary-note svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-light);
    flex-shrink: 0;
}

.summary-note p {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ========================================
   PROFILE PAGE
   ======================================== */

.profile-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
}

.profile-header-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
}

.profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar-large span {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.btn-change-avatar {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: none;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 0.75rem;
    font-family: inherit;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-change-avatar:hover {
    border-color: var(--black);
    color: var(--black);
}

.btn-change-avatar svg {
    width: 14px;
    height: 14px;
}

.profile-header-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.profile-header-info p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.member-since {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    display: block;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background: var(--light-gray);
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--medium-gray);
}

/* ========================================
   SETTINGS PAGE
   ======================================== */

.settings-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
}

.settings-section {
    display: flex;
    flex-direction: column;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-item.clickable {
    cursor: pointer;
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
    transition: background 0.2s;
}

.setting-item.clickable:hover {
    background: var(--light-gray);
}

.setting-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.setting-info p {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.chevron-right {
    width: 20px;
    height: 20px;
    stroke: var(--text-light);
}

.chevron-right.danger {
    stroke: var(--red);
}

.setting-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.setting-badge.disabled {
    background: var(--light-gray);
    color: var(--text-light);
}

.setting-badge.enabled {
    background: rgba(52, 199, 89, 0.1);
    color: var(--green);
}

/* Toggle Switch */
.toggle {
    position: relative;
    width: 48px;
    height: 28px;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--medium-gray);
    border-radius: 28px;
    transition: all 0.3s;
}

.toggle-slider::before {
    position: absolute;
    content: '';
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle input:checked + .toggle-slider {
    background: var(--green);
}

.toggle input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

.content-card.danger .card-header h2 {
    color: var(--red);
}

.empty-state.small {
    padding: 1.5rem;
}

.empty-state.small svg {
    width: 36px;
    height: 36px;
}

/* ========================================
   MODALS
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal.modal-large {
    max-width: 600px;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.modal-header h2 {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border: none;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--medium-gray);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 60vh;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--light-gray);
}

/* Detail Sections in Modal */
.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reservation-id {
    font-size: 0.875rem;
    color: var(--text-light);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-item label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.detail-item p {
    font-size: 0.9375rem;
}

.route-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.route-point-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.point-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.point-marker.pickup {
    background: var(--black);
}

.point-marker.dropoff {
    background: var(--green);
}

.point-info label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
}

.point-info p {
    font-size: 0.9375rem;
}

.route-connector {
    width: 2px;
    height: 20px;
    background: var(--medium-gray);
    margin-left: 5px;
}

.cancellation-policy-note {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #fef3c7;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #92400e;
}

.special-requests {
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    font-size: 0.9375rem;
}

.quote-section {
    background: rgba(52, 199, 89, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.quote-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-breakdown {
    margin-top: 0.75rem;
    display: grid;
    gap: 0.5rem;
}

.quote-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.quote-breakdown-row span {
    color: var(--text-light);
}

.quote-breakdown-row strong {
    font-weight: 600;
    color: var(--text-dark);
}

.quote-breakdown-row.discount strong {
    color: #b91c1c;
}

.quote-breakdown-row.total {
    margin-top: 0.35rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(52, 199, 89, 0.2);
    font-weight: 600;
}

.quote-breakdown-row.total span,
.quote-breakdown-row.total strong {
    color: var(--green);
}

.quote-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.quote-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
}

.quote-notes {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(52, 199, 89, 0.2);
}

.btn-cancel-res {
    padding: 0.75rem 1.5rem;
    background: var(--red);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel-res:hover {
    filter: brightness(1.1);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .main-content {
        margin-left: 0;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .content-card.full-width {
        grid-column: span 1;
    }

}

@media (max-width: 900px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-summary-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .top-bar-actions {
        width: 100%;
        justify-content: space-between;
    }

    .dashboard-content {
        padding: 1rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .vehicle-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row,
    .form-row.three-col {
        grid-template-columns: 1fr;
    }

    .profile-header-card {
        flex-direction: column;
        text-align: center;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .modal-footer {
        flex-direction: column;
    }

    .modal-footer button,
    .modal-footer a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .filter-tab {
        flex-shrink: 0;
    }

    .reservation-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .reservation-card-right {
        flex-direction: column;
        width: 100%;
        min-width: 0;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .auth-form .form-row {
        grid-template-columns: 1fr;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .vehicle-options {
        grid-template-columns: 1fr;
    }

    .quick-action-card {
        flex-direction: column;
        text-align: center;
    }

    .action-arrow {
        display: none;
    }
}
