/* Font Family Import - Backup */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Font Family Variables */
:root {
    --font-manrope: 'Manrope', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
}

/* Vehicle Multi-Step Form Styles */
.vmf-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    font-family: var(--font-montserrat);
    box-sizing: border-box;
    width: 100%;
}

.vmf-form-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-family: var(--font-manrope);
    font-weight: 600;
}

/* Progress Bar */
.vmf-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.vmf-progress-bar::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.vmf-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.vmf-step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: var(--font-manrope);
}

.vmf-progress-step.active .vmf-step-number {
    background: #12488F;
}

.vmf-step-label {
    font-size: 12px;
    color: #666;
    text-align: center;
    font-family: var(--font-manrope);
}

/* Steps */
.vmf-step {
    display: none;
}

.vmf-step.active {
    display: block;
    background: #FBFBFB;
    padding: 50px;
}

.vmf-step h3 {
    color: #333;
    margin-bottom: 20px;
    text-align: left;
    padding-bottom: 20px;
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 16px;
}

h2 {
    text-align: center;
    font-family: var(--font-manrope);
}

/* Image Grid */
.vmf-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.vmf-image-option input[type="radio"] {
    display: none;
}

.vmf-image-option label {
    display: block;
    cursor: pointer;
    padding: 15px;
    text-align: center;
    background: #f2f2f2;
    transition: all 0.3s ease;
    font-family: var(--font-manrope);
}

.vmf-image-option input[type="radio"]:checked + label {
    border-color: #12488F;
    background: #f0f8ff;
}

.vmf-image-placeholder {
    height: 80px;
    display: none;
    background: #f8f9fa;
    border-radius: 4px;
}

.vmf-make-name {
    font-weight: 600;
    color: #333;
    font-family: var(--font-manrope);
}

/* Form Styles */
.vmf-form-group {
    margin-bottom: 20px;
}

.vmf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.vmf-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-family: var(--font-manrope);
}

.vmf-form-group input,
.vmf-form-group select,
.vmf-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: var(--font-montserrat);
    box-sizing: border-box;
}

.vmf-form-group input:focus,
.vmf-form-group select:focus,
.vmf-form-group textarea:focus {
    outline: none;
    border-color: #12488F;
}

.vmf-form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

/* Buttons */
.vmf-step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.vmf-prev-btn,
.vmf-next-btn,
.vmf-submit-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-manrope);
}

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

.vmf-next-btn,
.vmf-submit-btn {
    background: #12488F;
    color: white;
}

.vmf-prev-btn:hover {
    background: #2a5099;
}

.vmf-next-btn:hover,
.vmf-submit-btn:hover {
    background: #005a87;
}

/* Success Message */
.vmf-success-content {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #28a745;
    font-family: var(--font-montserrat);
}

.vmf-success-content h3 {
    color: #28a745;
    margin-bottom: 15px;
    font-family: var(--font-manrope);
}

/* File Upload Styles */
.vmf-file-upload-container {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.vmf-file-upload-container:hover {
    border-color: #12488F;
    background: #f0f8ff;
}

.vmf-file-upload-container.dragover {
    border-color: #12488F;
    background: #e6f3ff;
}

.vmf-upload-icon {
    font-size: 48px;
    color: #12488F;
    margin-bottom: 15px;
}

.vmf-upload-text {
    margin-bottom: 20px;
}

.vmf-upload-text h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-family: var(--font-manrope);
}

.vmf-upload-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
    font-family: var(--font-montserrat);
}

.vmf-file-input-wrapper {
    position: relative;
    display: inline-block;
}

.vmf-file-input {
    position: absolute;
    left: -9999px;
}

.vmf-file-input-label {
    display: inline-block;
    padding: 12px 24px;
    background: #12488F;
    color: white !important;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    font-family: var(--font-manrope);
}

.vmf-file-input-label:hover {
    background: #005a87;
}

.vmf-selected-files {
    margin-top: 20px;
    text-align: left;
}

.vmf-file-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vmf-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 5px;
    font-family: var(--font-montserrat);
}

.vmf-file-name {
    flex: 1;
    font-size: 14px;
}

.vmf-file-remove {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 2px 8px;
    cursor: pointer;
    font-size: 12px;
    font-family: var(--font-manrope);
}

.vmf-file-remove:hover {
    background: #c82333;
}

/* Car Image Styles */
.vmf-image-container {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.vmf-car-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f2f2f2;
}