/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo-img {
    height: 53px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-link:hover {
    color: #1254ff;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1d;
}

.user-email {
    font-size: 14px;
    color: #666;
}

.user-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #27ae60;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.verification-badge .badge-icon {
    font-size: 14px;
}

.btn-verify {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
}

.btn-verify:hover {
    background: #c0392b;
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(231, 76, 60, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

/* Burger Menu */
.burger-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    z-index: 1001;
}

.burger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 18px;
    position: relative;
}

.burger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

.burger-menu-btn.active .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu-btn.active .burger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger-menu-btn.active .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.notification-badge-burger {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: #e74c3c;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s ease;
    overflow-y: auto;
    max-height: fit-content;
    border-radius: 0 0 0 12px;
    padding-bottom: 24px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 24px 24px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
}

.mobile-menu-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1254ff;
    margin: 0;
    letter-spacing: -0.5px;
}

.mobile-menu-user {
    padding: 32px 24px;
    border-bottom: 1px solid #e8e8e8;
    background-image: url(../images/asset_0037.png);
    background-color: #151317;
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    min-height: 140px;
}

.mobile-menu-user::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(21, 19, 23, 0.95) 0%, rgba(21, 19, 23, 0.85) 50%, rgba(21, 19, 23, 0.7) 100%);
    z-index: 0;
}

.mobile-user-info {
    position: relative;
    z-index: 1;
}

.mobile-user-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-user-email {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-menu-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #e8e8e8;
}

.stat-item {
    background: #fff;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-right: 1px solid #e8e8e8;
}

.stat-item:last-child {
    border-right: none;
}

.stat-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1d;
    letter-spacing: -0.5px;
}

.mobile-menu-actions {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
}

.btn-verify-mobile,
.btn-logout-mobile {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #1254ff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    background: #1254ff;
    color: #fff;
}

.btn-verify-mobile {
    background: #e74c3c;
    border-color: #e74c3c;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
}

.btn-verify-mobile:hover {
    background: #c0392b;
    border-color: #c0392b;
    animation: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-logout-mobile {
    background: #1254ff;
    border-color: #1254ff;
}

.btn-logout-mobile:hover {
    background: #0d42cc;
    border-color: #0d42cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(18, 84, 255, 0.2);
}

.btn-icon {
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .header-user {
        display: none !important;
    }
    
    .burger-menu-btn {
        display: flex;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .btn-register,
    .btn-signin {
        padding: 8px 16px;
        font-size: 13px;
    }
}

.btn-logout {
    background: #1254ff;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-logout:hover {
    background: #0d42cc;
}

/* Sign In Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #1254ff;
    margin-bottom: 30px;
    text-align: left;
}

.signin-options {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 4px;
}

.signin-option-btn {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 6px;
}

.signin-option-btn:hover {
    color: #1254ff;
    background: rgba(18, 84, 255, 0.05);
}

.signin-option-btn.active {
    color: #1254ff;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.signin-form {
    width: 100%;
}

.form-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.form-divider span {
    background: #fff;
    padding: 0 15px;
    position: relative;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.signin-form .form-group {
    margin-bottom: 25px;
}

.signin-form .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.signin-form .form-label .help-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    background: #1254ff;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    margin-left: 6px;
    cursor: help;
}

.password-input-wrapper {
    position: relative;
}

.password-input {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eye-icon {
    font-size: 18px;
    opacity: 0.6;
}

.password-toggle:hover .eye-icon {
    opacity: 1;
}

.signin-form .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #1254ff;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s;
}

.signin-form .form-input:focus {
    outline: none;
    border-color: #1254ff;
    box-shadow: 0 0 0 3px rgba(18, 84, 255, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.remember-checkbox input[type="checkbox"] {
    display: none;
}

.remember-checkbox .checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
}

.remember-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: #1254ff;
    border-color: #1254ff;
}

.remember-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.forgot-link {
    color: #1254ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-signin-submit {
    width: 100%;
    padding: 16px;
    background: #1254ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-signin-submit:hover {
    background: #0d42cc;
}

.signin-form .form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.register-link {
    color: #1254ff;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.register-link:hover {
    text-decoration: underline;
}

.btn-wallet {
    width: 100%;
    padding: 16px;
    background: #1d1d1d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-wallet:hover {
    background: #333;
}

.wallet-icon {
    font-size: 20px;
}

.form-error {
    background: #fee;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 24px;
    }
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-register {
    background: #1254ff;
    color: #fff;
}

.btn-signin {
    background: transparent;
    color: #1254ff;
    border: 1px solid #1254ff;
}

.btn-primary {
    background: #ffb838;
    color: #1d1d1d;
    font-weight: 700;
}

.btn-view {
    background: #1254ff;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
}

.btn-watch {
    background: transparent;
    color: #1254ff;
    border: 1px solid #1254ff;
    padding: 8px 16px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background-image: url(../images/asset_0037.png) !important;
    background-color: #151317;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(21, 19, 23, 0.92) 0%, rgba(21, 19, 23, 0.75) 50%, rgba(21, 19, 23, 0.5) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 40px;
}

.hero-title-main {
    display: block;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-title-sub {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.highlight {
    color: #ffb838;
    font-weight: 900;
    text-decoration: none;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.step-box {
    flex: 0 1 31%;
    min-width: 280px;
    max-width: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 0 8px 1px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.step-box h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: #fff;
    font-weight: 600;
    line-height: 24px;
}

.step-box p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.btn-hero {
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 16px;
}

/* Popular Vehicles Section */
.popular-vehicles {
    background: #f5f9fd;
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1254ff;
    text-align: center;
    margin-bottom: 40px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1254ff;
    color: #fff;
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
    z-index: 2;
}

.carousel-btn:hover {
    background: #0d42cc;
}

.vehicles-carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.vehicles-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
}

@media (max-width: 768px) {
    .vehicles-carousel-track {
        gap: 0;
    }
}

.vehicle-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .vehicle-card {
        flex: 0 0 calc(100% - 20px);
    }
}

.vehicle-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vehicle-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1d1d1d;
}

.vehicle-details {
    margin-bottom: 15px;
    flex: 1;
}

.lot-number {
    font-weight: 600;
    margin-bottom: 8px;
}

.current-bid {
    font-weight: 600;
    margin-bottom: 8px;
}

.bid-amount {
    color: #1254ff;
}

.cta-link {
    color: #1254ff;
    text-decoration: none;
    font-weight: 600;
}

.location {
    font-size: 14px;
    color: #666;
}

.vehicle-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
}

/* Membership Section */
.membership {
    padding: 60px 0;
    background: #fff;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.membership-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.membership-highlights span {
    font-weight: 600;
    color: #333;
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tier-card {
    background: #f5f9fd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.tier-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1d1d1d;
}

.tier-price {
    font-size: 32px;
    font-weight: 700;
    color: #1254ff;
    margin-bottom: 15px;
}

.currency {
    font-size: 16px;
}

.tier-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.tier-features {
    list-style: none;
    text-align: left;
}

.tier-features li {
    padding: 8px 0;
    color: #333;
}

.membership-cta {
    text-align: center;
}

/* About Section */
.about {
    background: #151317;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.about p {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
    font-size: 16px;
}

.about .btn-primary {
    margin-top: 30px;
}

/* Categories Section */
.categories {
    background: #f5f9fd;
    padding: 60px 0;
}

.categories h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #1d1d1d;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card h3 {
    min-height: 48px;
    display: flex;
    align-items: center;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1d1d1d;
}

.category-link {
    display: inline-block;
    color: #1254ff;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
}

.category-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
}

.category-links li {
    min-height: 24px;
    display: flex;
    align-items: center;
}

.category-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    display: block;
}

.category-links a:hover {
    color: #1254ff;
}

/* Bottom Banner */
.bottom-banner {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-content p {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1120px) {
    .hero {
        background-size: cover;
        background-position: center right;
    }
    
    .hero::before {
        background: linear-gradient(90deg, rgba(21, 19, 23, 0.9) 0%, rgba(21, 19, 23, 0.7) 60%, rgba(21, 19, 23, 0.4) 100%);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 40px 0;
        background-size: cover;
        background-position: center right;
    }
    
    .hero::before {
        background: rgba(21, 19, 23, 0.75);
    }
    
    .hero-title-main {
        font-size: 28px;
    }
    
    .hero-title-sub {
        font-size: 16px;
    }
    
    .steps {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .step-box {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 100%;
    }
    
    .step-box h3 {
        font-size: 18px;
    }
    
    .step-box p {
        font-size: 14px;
    }
    
    .carousel-wrapper {
        flex-direction: column;
    }
    
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
    }
    
    .carousel-btn-left {
        left: 10px;
    }
    
    .carousel-btn-right {
        right: 10px;
    }
    
    .vehicles-carousel-container {
        width: 100%;
    }
    
    .vehicle-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .vehicles-carousel-container {
        margin: 0;
        padding: 0;
    }
    
    .vehicles-carousel {
        grid-template-columns: 1fr;
    }
    
    .membership-tiers {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        flex-direction: column;
    }
}

/* Footer */
.footer-section {
    background: #1d1d1d;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    flex: 1;
}

.footer-link-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-column ul li {
    margin-bottom: 10px;
}

.footer-link-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link-column ul li a:hover {
    color: #1254ff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Verification Modal */
.verification-modal {
    max-width: 500px;
    position: relative;
}

.modal-drag-handle {
    display: none;
}

.verification-header {
    text-align: center;
    margin-bottom: 25px;
}

.verification-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-icon .license-icon {
    width: 52px;
    height: 52px;
}

.verification-modal .modal-title {
    font-size: 22px;
    text-align: center;
}

.verification-subtitle {
    color: #666;
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.5;
    text-align: center;
}

.verification-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.verification-benefits {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #1254ff;
}

.benefits-intro {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.verification-modal .form-group {
    margin-bottom: 0;
}

.verification-note {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 15px;
    margin-top: 10px;
}

.note-text {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.note-icon {
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .modal-overlay {
        align-items: flex-end;
        padding: 0;
    }
    
    .verification-modal {
        max-width: 100%;
        width: 100%;
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        margin: 0;
        padding: 0;
        transform: translateY(100%);
        animation: slideUp 0.3s ease-out forwards;
        overflow-y: auto;
        position: relative;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .modal-drag-handle {
        display: block;
        width: 40px;
        height: 4px;
        background: #ccc;
        border-radius: 2px;
        margin: 12px auto 20px;
        cursor: grab;
        transition: background 0.3s;
        touch-action: none;
        user-select: none;
        position: relative;
    }
    
    .modal-drag-handle::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 34px;
        background: transparent;
    }
    
    .modal-drag-handle:active {
        cursor: grabbing;
        background: #999;
    }
    
    .verification-modal .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        z-index: 10;
    }
    
    .verification-header {
        padding: 0 20px;
        margin-bottom: 20px;
    }
    
    .verification-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .verification-icon .license-icon {
        width: 42px;
        height: 42px;
    }
    
    .verification-modal .modal-title {
        font-size: 20px;
    }
    
    .verification-subtitle {
        font-size: 12px;
        margin-top: 8px;
    }
    
    .verification-content {
        padding: 0 20px 20px;
        gap: 18px;
    }
    
    .verification-benefits {
        padding: 18px;
    }
    
    .benefits-intro {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .benefits-list {
        gap: 10px;
    }
    
    .benefits-list li {
        font-size: 13px;
    }
    
    .benefit-icon {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
    
    .verification-note {
        padding: 12px;
        margin-top: 8px;
    }
    
    .note-text {
        font-size: 11px;
        gap: 8px;
    }
    
    .note-icon {
        font-size: 14px;
    }
    
    .btn-wallet {
        padding: 14px;
        font-size: 16px;
    }
}
