.bcs-simulator-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.bcs-simulator-container {
    color: #333;
}

.bcs-container {
    max-width: 100%;
    margin: 0 auto;
}

.bcs-section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    position: relative;
}

.bcs-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #c9a831;
}

.bcs-simulator-container-inner {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Step Indicator */
.bcs-step-indicator {
    display: flex;
    justify-content: center;
    position: relative;
}

.bcs-step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.bcs-step {
    background: #e9ecef;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.bcs-step.bcs-active {
    background: #c9a831;
    color: white;
}

.bcs-step.bcs-completed {
    background: #4b4b4b;
    color: white;
}

/* Step Content */
.bcs-step-content {
    position: relative;
    overflow: hidden;
    min-height: 425px;
}

.bcs-step-form {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    padding: 2rem 1rem;
}

.bcs-step-form.bcs-active {
    opacity: 1;
    transform: translateX(0);
}

.bcs-step-form.bcs-prev {
    transform: translateX(-100%);
}

.bcs-step-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 0;
    font-size: 1.8rem !important;
}

.bcs-step-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Vehicle Selection */
.bcs-vehicle-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bcs-vehicle-card {
    background: white;
    border: 3px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.bcs-vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.bcs-vehicle-card.bcs-selected {
    border-color: #c9a831;
    background: linear-gradient(135deg, #fff8e1, #ffffff);
    transform: scale(1.05);
}

.bcs-vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c9a831;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.bcs-vehicle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #2c3e50;
}

.bcs-vehicle-features {
    margin-top: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Form Elements */
.bcs-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    gap: 1rem;
}

.bcs-form-group {
    margin-bottom: 0;
}

.bcs-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.bcs-select-wrapper {
    position: relative;
}

.bcs-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.5rem;
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fff;
}

.bcs-select-wrapper select:focus {
    outline: none;
    border-color: #c9a831;
}

.bcs-select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #999;
}

.bcs-simulator-container input[type="number"],
.bcs-simulator-container input[type="text"],
.bcs-simulator-container input[type="email"],
.bcs-simulator-container input[type="tel"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fff;
}

.bcs-simulator-container input:focus {
    outline: none;
    border-color: #c9a831;
}

/* Summary */
.bcs-summary-card {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.bcs-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bcs-summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Navigation */
.bcs-step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.bcs-btn-nav {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    font-weight: 600;
}

.bcs-btn-prev {
    background: #6c757d;
    color: white;
}

.bcs-btn-next {
    background: #c9a831;
    color: white;
}

.bcs-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bcs-btn-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Loading and Notifications */
.bcs-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.bcs-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(243, 156, 18, 0.3);
    border-top: 4px solid #c9a831;
    border-radius: 50%;
    animation: bcs-spin 1s linear infinite;
    margin-bottom: 1rem;
}

.bcs-loading-text {
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

@keyframes bcs-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bcs-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    font-weight: 600;
}

.bcs-notification.bcs-active {
    opacity: 1;
    transform: translateX(0);
}

.bcs-notification.bcs-success {
    background: #27ae60;
}

.bcs-notification.bcs-error {
    background: #e74c3c;
}

/* Responsive */
@media (max-width: 768px) {

    .bcs-section-title {
        font-size: 2rem;
    }

    .bcs-step-indicator::before {
        left: 30px;
        right: 30px;
    }

    .bcs-step {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .bcs-btn-nav {
        width: 100%;
    }

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

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



    .bcs-container {
        padding: 0;
    }

    .bcs-simulator-container-inner {
        padding: 1.5rem;
        padding-left: 0;
        padding-right: 0;
    }

    .bcs-step-title {
        font-size: 18px !important;
    }

    .bcs-step-subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .bcs-vehicle-card {
        padding: 20px;
    }

    .bcs-vehicle-card h3 {
        font-size: 20px;
    }


    .bcs-vehicle-features {
        font-size: 12px;
        margin-top: 5px;
    }

    .bcs-vehicle-badge {
        bottom: 15px;
        top: unset;
        font-size: 10px;
    }

    .bcs-step-navigation {
        flex-direction: column;
        gap: 1rem;
        padding: 0 20px;
        margin-top: 20px;
    }

    .bcs-select-wrapper select,
    .bcs-form-row input {
        padding: 0 1rem 5px 1rem !important;
    }    
}