/* ============================================
   SUPERCARS-INSPIRED UI - RED & WHITE THEME
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --red: #e8192c;
    --red-dark: #c0101f;
    --red-light: #ff3347;
    --red-soft: rgba(232, 25, 44, 0.1);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --mid-gray: #f0f2f5;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --shadow-red: 0 8px 30px rgba(232, 25, 44, 0.25);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.15);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-pill: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    color: var(--text-dark);
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ---- MAIN CONTENT ---- */
.main-content { padding-top: 80px; min-height: calc(100vh - 200px); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar.glass-nav {
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(232, 25, 44, 0.12);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-dark) !important;
    letter-spacing: -0.5px;
}

.navbar-brand .brand-red { color: var(--red); }
.navbar-brand i { color: var(--red); }

.navbar .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark) !important;
    padding: 8px 14px !important;
    position: relative;
    transition: var(--transition);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

.navbar .nav-link:hover { color: var(--red) !important; }
.navbar .nav-link:hover::after { left: 14px; right: 14px; }

.navbar .btn-primary {
    background: var(--red) !important;
    border: 2px solid var(--red) !important;
    color: white !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 20px !important;
    border-radius: var(--radius-pill) !important;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.navbar .btn-primary:hover {
    background: var(--red-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232,25,44,0.4);
}

.navbar-toggler { border-color: var(--red) !important; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28232%2C25%2C44%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #fff 0%, #fef2f3 50%, #fff 100%);
    padding: 100px 0 0;
    margin-top: -80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -150px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(232,25,44,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    clip-path: ellipse(100% 100% at 100% 50%);
    z-index: 0;
}

.hero-content { position: relative; z-index: 2; padding-top: 80px; }

.hero-badge {
    display: inline-block;
    background: var(--red-soft);
    color: var(--red);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    border: 1px solid rgba(232,25,44,0.2);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-title .text-red { color: var(--red); }

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--red);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image-wrap img {
    max-width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
    animation: floatCar 4s ease-in-out infinite;
}

@keyframes floatCar {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}

/* Search Bar */
.hero-search-bar {
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 24px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-top: 40px;
    border: 1px solid rgba(232,25,44,0.1);
}

.hero-search-bar .search-field {
    flex: 1;
    min-width: 160px;
}

.hero-search-bar label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.hero-search-bar .form-control,
.hero-search-bar .form-select {
    border: 1.5px solid #e9ecef;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.9rem;
    background: white;
    color: var(--text-dark);
    transition: var(--transition);
}

.hero-search-bar .form-control:focus,
.hero-search-bar .form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(232,25,44,0.1);
    color: var(--text-dark);
    background: white;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary, .btn-red {
    background: var(--red) !important;
    border: 2px solid var(--red) !important;
    color: white !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    box-shadow: var(--shadow-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover, .btn-red:hover {
    background: var(--red-dark) !important;
    border-color: var(--red-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232,25,44,0.4);
    color: white !important;
}

.btn-outline-red, .btn-outline-primary {
    background: transparent !important;
    border: 2px solid var(--red) !important;
    color: var(--red) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 26px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline-red:hover, .btn-outline-primary:hover {
    background: var(--red) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.4) !important;
    color: white !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 26px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    background: transparent !important;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: white !important;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 7px 18px !important;
    font-size: 0.8rem !important;
}

.btn-success {
    background: #10b981 !important;
    border-color: #10b981 !important;
    border-radius: var(--radius-pill) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-danger {
    background: var(--red) !important;
    border-color: var(--red) !important;
    border-radius: var(--radius-pill) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-warning {
    background: #f59e0b !important;
    border-color: #f59e0b !important;
    border-radius: var(--radius-pill) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: white !important;
}

/* ============================================
   CARDS & PANELS
   ============================================ */
.glass-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.glass-panel {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.06);
}

.glass-alert {
    background: white;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.1);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    -webkit-text-fill-color: unset;
    background: none;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin: 12px auto 20px;
}

.section-divider-left {
    width: 50px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin: 12px 0 20px;
}

/* ============================================
   SERVICE / CATEGORY CARDS
   ============================================ */
.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border: 1.5px solid #eee;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-red);
    transform: translateY(-6px);
    color: var(--text-dark);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card .service-icon {
    width: 70px; height: 70px;
    background: var(--red-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: var(--red);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--red);
    color: white;
}

.service-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

/* category alias */
.category-card { 
    padding: 24px 16px; 
    text-align: center; 
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
}
.category-card i { font-size: 2rem; color: var(--red); }
.category-card:hover { color: var(--text-dark); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.step-card {
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px; height: 56px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-red);
}

.step-icon {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 16px;
}

/* ============================================
   CAR CARDS
   ============================================ */
.car-card {
    overflow: hidden;
    border-radius: var(--radius);
}

.car-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

.car-card:hover img { transform: scale(1.05); }

.car-card .card-body { padding: 20px; }

.car-card .badge-price {
    background: var(--red);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

.car-card .badge.bg-primary { 
    background: var(--red-soft) !important; 
    color: var(--red) !important;
    font-weight: 600;
    border: 1px solid rgba(232,25,44,0.2);
}

.car-card .badge.bg-success { background: #d1fae5 !important; color: #065f46 !important; }
.car-card .badge.bg-secondary { background: #f3f4f6 !important; color: #6b7280 !important; }

.car-card h5 { color: var(--text-dark); }
.car-card p, .car-card .text-light { color: var(--text-muted) !important; opacity: 1 !important; }

.car-card .rating-stars { color: #f59e0b; font-size: 0.85rem; }

/* ============================================
   FORMS & INPUTS
   ============================================ */
.form-control, .form-select {
    background: white;
    border: 1.5px solid #e2e8f0;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    background: white;
    border-color: var(--red);
    color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(232,25,44,0.1);
}

.form-control::placeholder { color: #adb5bd; }
.form-label { color: var(--text-dark); font-weight: 600; font-size: 0.88rem; }
.form-select option { background: white; color: var(--text-dark); }
.form-check-input:checked { background-color: var(--red); border-color: var(--red); }

/* ============================================
   AUTH CARDS
   ============================================ */
.auth-card {
    max-width: 480px;
    margin: 0 auto;
    padding: 44px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(232,25,44,0.1);
}

.auth-card h2 { color: var(--text-dark); font-size: 1.8rem; }
.auth-card .text-light { color: var(--text-muted) !important; opacity: 1 !important; }
.auth-card a { color: var(--red); text-decoration: none; font-weight: 600; }
.auth-card a:hover { color: var(--red-dark); }

.auth-hero {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.auth-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.auth-hero::after {
    content: '';
    position: absolute;
    bottom: -30%; right: -10%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

/* ============================================
   FILTER SIDEBAR
   ============================================ */
.filter-sidebar {
    position: sticky;
    top: 100px;
    padding: 24px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.06);
}

.filter-sidebar h5 { color: var(--text-dark); }
.filter-sidebar .form-label { color: var(--text-dark); font-size: 0.8rem; }

/* ============================================
   DASHBOARD & STATS
   ============================================ */
.dashboard-stat {
    padding: 28px 24px;
    text-align: center;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border-top: 4px solid var(--red);
}

.dashboard-stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red);
    font-family: 'Montserrat', sans-serif;
    background: none;
    -webkit-text-fill-color: unset;
}

.dashboard-stat p { color: var(--text-muted) !important; opacity: 1 !important; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    padding: 28px;
    background: white;
    border-radius: var(--radius);
    border-left: 4px solid var(--red);
    box-shadow: var(--shadow-card);
}

.testimonial-card p { color: var(--text-muted) !important; opacity: 1 !important; }
.testimonial-card strong { color: var(--text-dark); }
.rating-stars { color: #f59e0b; }

/* ============================================
   CAR DETAIL
   ============================================ */
.car-detail-img {
    border-radius: var(--radius);
    max-height: 420px;
    object-fit: cover;
    width: 100%;
    box-shadow: var(--shadow-card);
}

/* ============================================
   BOOKING TABLE
   ============================================ */
.table { color: var(--text-dark) !important; }
.table th { 
    background: var(--red) !important; 
    color: white !important; 
    border: none !important; 
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
}
.table td { 
    color: var(--text-dark) !important; 
    border-color: #f0f2f5 !important; 
    vertical-align: middle;
}
.table-dark { background: white !important; }
.table-hover tbody tr:hover td { background: #fef2f3 !important; }
.table-striped tbody tr:nth-of-type(odd) td { background: #fafafa !important; }

/* ============================================
   STATUS BADGES
   ============================================ */
.status-badge-pending { background: #fef3c7; color: #92400e; border-radius: var(--radius-pill); padding: 4px 12px; font-size: 0.78rem; font-weight: 600; }
.status-badge-approved { background: #d1fae5; color: #065f46; border-radius: var(--radius-pill); padding: 4px 12px; font-size: 0.78rem; font-weight: 600; }
.status-badge-rejected { background: #fee2e2; color: #991b1b; border-radius: var(--radius-pill); padding: 4px 12px; font-size: 0.78rem; font-weight: 600; }
.badge.bg-primary { background: var(--red) !important; border-radius: var(--radius-pill) !important; }
.badge.bg-success { background: #10b981 !important; border-radius: var(--radius-pill) !important; }
.badge.bg-secondary { background: #6b7280 !important; border-radius: var(--radius-pill) !important; }
.badge.bg-warning { background: #f59e0b !important; border-radius: var(--radius-pill) !important; }
.badge.bg-danger { background: var(--red) !important; border-radius: var(--radius-pill) !important; }

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.accordion-item {
    background: white;
    border-radius: var(--radius) !important;
    margin-bottom: 10px;
    border: 1.5px solid #e9ecef !important;
    overflow: hidden;
}

.accordion-button {
    background: white !important;
    color: var(--text-dark) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--red-soft) !important;
    color: var(--red) !important;
    box-shadow: none;
}

.accordion-button::after {
    filter: none;
}

.accordion-body { color: var(--text-muted); background: white; }

/* ============================================
   ALERTS
   ============================================ */
.alert-success { 
    background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; 
    border-radius: var(--radius);
}
.alert-danger { 
    background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5;
    border-radius: var(--radius);
}
.alert-warning {
    background: #fef3c7; color: #92400e; border: 1px solid #fde68a;
    border-radius: var(--radius);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-glass {
    background: var(--text-dark);
    border-top: 4px solid var(--red);
    color: white;
}

.footer-glass h5, .footer-glass h6 { color: white; }
.footer-glass p, .footer-glass .text-light { color: rgba(255,255,255,0.65) !important; opacity: 1 !important; }
.footer-glass .small { color: rgba(255,255,255,0.5) !important; }

/* ============================================
   FEATURE STRIP (why us)
   ============================================ */
.feature-strip {
    background: var(--red);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.feature-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 0L0 20L20 40L40 20z'/%3E%3C/g%3E%3C/svg%3E");
}

.feature-item { text-align: center; position: relative; z-index: 1; }
.feature-item i { font-size: 2.2rem; color: rgba(255,255,255,0.9); margin-bottom: 12px; }
.feature-item h6 { color: white; font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 6px; }
.feature-item p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin: 0; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination .page-link {
    border-radius: 8px !important;
    margin: 0 2px;
    color: var(--text-dark);
    border-color: #e2e8f0;
    font-weight: 600;
}
.pagination .page-link:hover { background: var(--red); color: white; border-color: var(--red); }
.pagination .active .page-link { background: var(--red) !important; border-color: var(--red) !important; }

/* ============================================
   RED SECTION BACKGROUND
   ============================================ */
.bg-red-section {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}
.bg-red-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

/* ============================================
   MISC UTILITY
   ============================================ */
.text-red { color: var(--red) !important; }
.text-dark-custom { color: var(--text-dark) !important; }
.text-muted-custom { color: var(--text-muted) !important; }

.border-bottom { border-color: #f0f2f5 !important; }
.opacity-75 { opacity: 0.75; }
.opacity-50 { opacity: 0.5; }
.opacity-90 { opacity: 0.9; }
hr { border-color: #e9ecef; }

code { background: var(--red-soft); color: var(--red); padding: 2px 6px; border-radius: 4px; }

/* ============================================
   INVALID FEEDBACK
   ============================================ */
.is-invalid { border-color: var(--red) !important; }
.invalid-feedback { color: var(--red); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-section::after { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-image-wrap { margin-top: 40px; }
}

@media (max-width: 768px) {
    .hero-section { padding: 100px 0 60px; }
    .filter-sidebar { position: static; margin-bottom: 20px; }
    .hero-title { font-size: 2rem; }
    .hero-search-bar { flex-direction: column; }
    .hero-stats { gap: 20px; }
    .auth-card { padding: 32px 24px; }
}
