/**
 * Interaktives Bewerbungsformular
 * Modern, mehrstufig, Instagram-freundlich
 */

.logo-eike-interactive-bewerbung {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f0ff 100%);
    position: relative;
    overflow-x: hidden;
}

/* Hero Section */
.bewerbung-hero {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    margin-bottom: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
}

/* Benefits Section */
.bewerbung-benefits {
    padding: 4rem 2rem;
    background: #fff;
    margin: 0 auto;
    max-width: 1200px;
}

/* Form Section */
.bewerbung-form-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f0ff 100%);
}

.form-section-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
}

.form-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.benefits-container {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 3rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f0ff 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
    border-color: #007bff;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    color: #007bff;
    font-weight: 600;
}

.benefit-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Progress Bar */
.progress-container {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.5);
}

.progress-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: #007bff;
    width: 30px;
    border-radius: 5px;
}

.progress-dot.completed {
    background: #28a745;
}

/* Steps */
.bewerbung-steps {
    position: relative;
    padding: 2rem 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.step-question {
    font-size: 1.8rem;
    font-weight: 700;
    color: #007bff;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    text-align: center;
}

.step-subtitle {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin: 0 0 2rem 0;
}

.step-content {
    margin: 2rem 0;
}

/* Welcome Message */
.welcome-message {
    text-align: center;
    color: #333;
    line-height: 1.8;
}

.welcome-message p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Radio Options */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.radio-option:hover {
    border-color: #007bff;
    background: #f0f7ff;
    transform: translateX(5px);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #007bff;
    background: #007bff;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
}

.radio-text {
    flex: 1;
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
}

/* Slider */
.slider-container {
    padding: 2rem 0;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.spass-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
    margin: 1.5rem 0;
}

.spass-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
}

.spass-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.6);
}

.spass-slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.4);
}

.slider-numbers {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #999;
}

.slider-value {
    text-align: center;
    margin-top: 1.5rem;
}

.slider-value span {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
    min-width: 60px;
}

/* Form Fields */
.contact-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px dashed #007bff;
    border-radius: 8px;
    background: #f0f7ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background: #e0f0ff;
    border-color: #0056b3;
}

.file-upload-icon {
    font-size: 2rem;
}

.file-upload-text {
    flex: 1;
    color: #007bff;
    font-weight: 500;
}

.file-info {
    display: block;
    margin-top: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
}

.privacy-check {
    margin: 2rem 0 1.5rem 0;
}

.privacy-check label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    cursor: pointer;
}

.privacy-check input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
    cursor: pointer;
}

.privacy-check a {
    color: #007bff;
    text-decoration: underline;
}

/* Buttons */
.step-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    width: 100%;
}

.step-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.step-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.step-actions .step-button {
    flex: 1;
}

.step-button.back-step {
    background: #f0f0f0;
    color: #333;
    box-shadow: none;
}

.step-button.back-step:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Success Card */
.success-card {
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-message {
    margin: 2rem 0;
    color: #333;
    line-height: 1.8;
}

.success-message p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .bewerbung-hero {
        padding: 3rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .bewerbung-benefits {
        padding: 3rem 1rem;
    }
    
    .benefits-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .bewerbung-form-section {
        padding: 2rem 1rem;
    }
    
    .form-section-title {
        font-size: 1.6rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .step-question {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .step-actions {
        flex-direction: column;
    }
}

/* Background Decoration */
.logo-eike-interactive-bewerbung::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.logo-eike-interactive-bewerbung::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

