/* ========================================
   Booking Options Page
   ======================================== */

.brq-options-page {
    min-height: 100vh;
    padding: 60px 24px;
}

.brq-options-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Header */
.brq-options-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out;
}

.brq-options-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--brq-white);
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.brq-options-title {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px;
    line-height: 1.2;
}

.brq-options-subtitle {
    font-size: 18px;
    color: var(--brq-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Car Types Grid */
.brq-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

/* Car Card */
.brq-car-card {
    background: var(--brq-white);
    border: 2px solid var(--brq-border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.brq-car-card:nth-child(1) {
    animation-delay: 0.1s;
}

.brq-car-card:nth-child(2) {
    animation-delay: 0.2s;
}

.brq-car-card:nth-child(3) {
    animation-delay: 0.3s;
}

.brq-car-card:nth-child(4) {
    animation-delay: 0.4s;
}

.brq-car-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brq-primary);
}

.brq-car-card::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
    transition: opacity 0.3s ease;
}

.brq-car-card:hover::before {
    opacity: 0.1;
}

/* Card Header */
.brq-card-header {
    margin-bottom: 24px;
    text-align: right;
}

.brq-card-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

/* Card Image */
.brq-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid var(--brq-border);
    background: linear-gradient(135deg, rgba(0, 108, 53, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.brq-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brq-car-card:hover .brq-card-image img {
    transform: scale(1.05);
}

/* Card Body */
.brq-card-body {
    margin-bottom: 24px;
    text-align: right;
}

.brq-card-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--brq-primary);
    margin: 0 0 12px;
}

.brq-card-description {
    font-size: 15px;
    color: var(--brq-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Card Services */
.brq-card-services {
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 108, 53, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid var(--brq-border);
    margin-bottom: 24px;
}

.brq-services-label {
    font-weight: 700;
    font-size: 14px;
    color: var(--brq-text);
    margin-bottom: 12px;
}

.brq-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brq-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--gradient-primary);
    color: var(--brq-white);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.brq-service-badge svg {
    width: 16px;
    height: 16px;
}

.brq-service-badge.brq-no-service {
    background: #e5e7eb;
    color: #6b7280;
    box-shadow: none;
}

/* Card Footer */
.brq-card-footer {
    margin-top: 24px;
}

.brq-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: var(--gradient-primary);
    color: var(--brq-white);
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brq-book-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.brq-book-btn:hover::before {
    width: 300px;
    height: 300px;
}

.brq-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.brq-book-btn svg {
    transition: transform 0.3s ease;
}

.brq-book-btn:hover svg {
    transform: translateX(-4px);
}

/* Decorative Corner */
.brq-card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    opacity: 0.1;
    border-radius: 0 20px 0 100%;
}

/* Empty State */
.brq-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 108, 53, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-radius: 20px;
    border: 2px dashed var(--brq-border);
    margin-bottom: 60px;
}

.brq-empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.brq-empty-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--brq-text);
    margin: 0 0 12px;
}

.brq-empty-text {
    font-size: 16px;
    color: var(--brq-text-light);
    margin: 0;
}

/* Info Banner */
.brq-info-banner {
    background: linear-gradient(135deg, rgba(0, 108, 53, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 2px solid var(--brq-border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-md);
}

.brq-banner-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.brq-banner-content {
    flex: 1;
    text-align: right;
}

.brq-banner-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--brq-primary);
    margin: 0 0 8px;
}

.brq-banner-text {
    font-size: 15px;
    color: var(--brq-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .brq-options-page {
        padding: 40px 16px;
    }

    .brq-options-header {
        margin-bottom: 40px;
    }

    .brq-options-title {
        font-size: 32px;
    }

    .brq-options-subtitle {
        font-size: 16px;
    }

    .brq-options-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .brq-car-card {
        padding: 24px;
    }

    .brq-card-title {
        font-size: 24px;
    }

    .brq-info-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .brq-banner-content {
        text-align: center;
    }

    .brq-banner-icon {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .brq-options-title {
        font-size: 28px;
    }

    .brq-card-icon {
        font-size: 40px;
    }

    .brq-book-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}