/* Schurz Marketing Contact Form - Premium Design */

:root {
    --scf-primary: #ffd700;
    --scf-primary-dark: #ffb700;
    --scf-background: #000000;
    --scf-background-light: #1a1a1a;
    --sc/* Budget-spez/* Budget-spezifische Farben - alle goldgelb */
.scf-budget-btn[data-value="unter_1000"]:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.scf-budget-btn[data-value="unter_2000"]:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.scf-budget-btn[data-value="unter_3000"]:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.scf-budget-btn[data-value="ueber_3000"]:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}e goldgelb */
.scf-budget-btn[data-value="unter_1000"]:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.scf-budget-btn[data-value="unter_2000"]:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.scf-budget-btn[data-value="unter_3000"]:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.scf-budget-btn[data-value="ueber_3000"]:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

/* Schurz Marketing Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
    --scf-shadow: rgba(255, 215, 0, 0.1);
    --scf-shadow-dark: rgba(0, 0, 0, 0.3);
    --scf-border-radius: 12px;
    --scf-border-radius-small: 8px;
    --scf-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --scf-transition-fast: all 0.2s ease;
}

/* Schurz Marketing Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.scf-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--scf-background) 0%, var(--scf-background-light) 100%);
    color: var(--scf-text-primary);
    border-radius: var(--scf-border-radius);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px var(--scf-shadow-dark),
        0 0 0 1px var(--scf-border),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

/* Schurz Marketing Logo/Branding Area */
.scf-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--scf-primary) 0%, var(--scf-primary-dark) 50%, var(--scf-primary) 100%);
}

.scf-branding {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--scf-border);
}

.scf-branding h2 {
    color: var(--scf-primary);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.scf-branding p {
    color: var(--scf-text-secondary);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

/* Progress und Step Counter entfernt */

.scf-multi-step-form {
    position: relative;
    min-height: 500px;
}

.scf-step {
    display: none;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px) scale(0.98);
    transition: var(--scf-transition);
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--scf-border-radius-small);
}

.scf-step.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    background: transparent;
}

.scf-step.previous {
    opacity: 0.5;
    position: relative;
    transform: translateY(-20px) scale(0.95);
    pointer-events: none;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--scf-border);
    border-radius: var(--scf-border-radius-small);
    transition: var(--scf-transition);
}

.scf-step.previous:hover {
    opacity: 0.8;
    transform: translateY(-20px) scale(0.98);
    cursor: pointer;
    pointer-events: all;
}

.scf-step h3 {
    color: var(--scf-text-primary);
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.scf-step-description {
    text-align: center;
    color: var(--scf-text-secondary);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
}

/* Premium Choice Buttons */
.scf-choice-buttons,
.scf-budget-choices {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.scf-choice-btn,
.scf-budget-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffd700;
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scf-choice-btn::before,
.scf-budget-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: var(--scf-transition);
}

.scf-choice-btn:hover::before,
.scf-budget-btn:hover::before {
    left: 100%;
}

.scf-choice-btn:hover,
.scf-budget-btn:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.scf-choice-btn.selected,
.scf-budget-btn.selected {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border-color: #ffd700;
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

/* Budget-spezifische Farben */
.scf-budget-btn[data-value="unter_1000"]:hover {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.scf-budget-btn[data-value="unter_2000"]:hover {
    border-color: #feca57;
    background: rgba(254, 202, 87, 0.1);
}

.scf-budget-btn[data-value="unter_3000"]:hover {
    border-color: #48dbfb;
    background: rgba(72, 219, 251, 0.1);
}

.scf-budget-btn[data-value="ueber_3000"]:hover {
    border-color: #1dd1a1;
    background: rgba(29, 209, 161, 0.1);
}

/* Premium Input Fields */
.scf-step input[type="text"],
.scf-step input[type="email"],
.scf-step input[type="tel"],
.scf-step input[type="url"],
.scf-step textarea,
.scf-step select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--scf-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--scf-text-primary);
    border-radius: var(--scf-border-radius-small);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
    transition: var(--scf-transition);
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    font-family: inherit;
}

.scf-step input::placeholder,
.scf-step textarea::placeholder {
    color: var(--scf-text-muted);
    font-weight: 400;
}

.scf-step input:focus,
.scf-step textarea:focus,
.scf-step select:focus {
    outline: none;
    border-color: var(--scf-primary);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
    transform: translateY(-1px);
}

.scf-step textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* Radio Buttons */
.scf-radio-group {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.scf-radio-option {
    position: relative;
}

.scf-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.scf-radio-option label {
    display: block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--scf-border);
    border-radius: var(--scf-border-radius-small);
    cursor: pointer;
    transition: var(--scf-transition);
    position: relative;
    font-weight: 500;
}

.scf-radio-option label:hover {
    border-color: var(--scf-primary);
    background: rgba(255, 215, 0, 0.05);
}

.scf-radio-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, var(--scf-primary) 0%, var(--scf-primary-dark) 100%);
    color: var(--scf-background);
    border-color: var(--scf-primary);
}

/* Select Dropdown */
.scf-step select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 50px;
}

/* Premium Action Buttons */
.scf-next-btn,
.scf-submit-btn {
    background: linear-gradient(135deg, var(--scf-primary) 0%, var(--scf-primary-dark) 100%);
    color: var(--scf-background);
    border: none;
    padding: 18px 40px;
    border-radius: var(--scf-border-radius-small);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--scf-transition);
    display: block;
    margin: 30px auto 0;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.scf-next-btn::before,
.scf-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--scf-transition);
}

.scf-next-btn:hover::before,
.scf-submit-btn:hover::before {
    left: 100%;
}

.scf-next-btn:hover,
.scf-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--scf-primary-dark) 0%, var(--scf-primary) 100%);
}

.scf-next-btn:active,
.scf-submit-btn:active {
    transform: translateY(-1px);
}

.scf-next-btn:disabled,
.scf-submit-btn:disabled {
    background: var(--scf-border);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Privacy Checkbox */
.scf-privacy-checkbox {
    margin-bottom: 40px;
    text-align: center;
}

.scf-privacy-checkbox label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
    color: var(--scf-text-secondary);
    font-weight: 400;
}

.scf-privacy-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--scf-primary);
    border-radius: 4px;
}

.scf-privacy-checkbox a {
    color: var(--scf-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--scf-transition-fast);
}

.scf-privacy-checkbox a:hover {
    text-decoration: underline;
    color: var(--scf-primary-dark);
}

/* Loading Animation */
.scf-loading {
    text-align: center;
    padding: 60px 20px;
}

.scf-spinner {
    border: 4px solid var(--scf-border);
    border-top: 4px solid var(--scf-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: scfSpin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes scfSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.scf-loading p {
    color: var(--scf-text-secondary);
    font-size: 16px;
    font-weight: 500;
}

/* Success Message */
.scf-success-message {
    text-align: center;
    padding: 60px 20px;
}

.scf-success-message h3 {
    color: var(--scf-success);
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

.scf-success-message p {
    color: var(--scf-text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* Error Styling */
.scf-error {
    border-color: var(--scf-error) !important;
    background: rgba(255, 71, 87, 0.05) !important;
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.1) !important;
}

.scf-error-message {
    color: var(--scf-error);
    font-size: 14px;
    margin-top: -20px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    padding: 10px;
    background: rgba(255, 71, 87, 0.1);
    border-radius: var(--scf-border-radius-small);
    border: 1px solid rgba(255, 71, 87, 0.2);
}

/* Valid Field Styling */
.scf-valid {
    border-color: var(--scf-success) !important;
    background: rgba(29, 209, 161, 0.05) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scf-form-container {
        margin: 10px;
        padding: 25px;
    }
    
    .scf-step h3 {
        font-size: 22px;
    }
    
    .scf-step-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .scf-choice-btn,
    .scf-budget-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .scf-step input,
    .scf-step textarea,
    .scf-step select {
        padding: 16px;
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
    
    .scf-next-btn,
    .scf-submit-btn {
        padding: 16px 30px;
        font-size: 15px;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .scf-form-container {
        padding: 20px;
        margin: 5px;
    }
    
    .scf-branding h2 {
        font-size: 24px;
    }
    
    .scf-step h3 {
        font-size: 20px;
    }
}

/* Budget-Buttons Responsive Grid */
@media (min-width: 600px) {
    .scf-budget-choices {
        grid-template-columns: 1fr 1fr;
    }
}

/* Scroll-Effekte */
.scf-step.scroll-out {
    opacity: 0.2;
    transform: scale(0.92) translateY(-10px);
    transition: var(--scf-transition);
}

.scf-step.scroll-in {
    opacity: 0.5;
    transform: scale(0.95) translateY(-20px);
    transition: var(--scf-transition);
}

/* Dark Theme Enhancements */
@media (prefers-color-scheme: dark) {
    .scf-form-container {
        box-shadow: 
            0 25px 80px rgba(0, 0, 0, 0.6),
            0 0 0 1px var(--scf-border),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.scf-step:focus-within {
    outline: 2px solid var(--scf-primary);
    outline-offset: 4px;
    border-radius: var(--scf-border-radius-small);
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --scf-border: #666666;
        --scf-border-light: #888888;
    }
}

/* Print Styles */
@media print {
    .scf-form-container {
        background: white;
        color: black;
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .scf-step.previous,
    .scf-step:not(.active) {
        display: none;
    }
}

.scf-multi-step-form {
    position: relative;
    min-height: 400px;
}

.scf-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
    padding: 20px 0;
}

.scf-step.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.scf-step.previous {
    opacity: 0.5;
    position: relative;
    transform: translateY(-10px);
    pointer-events: none;
    margin-bottom: 20px;
}

.scf-step h3 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    line-height: 1.4;
}

/* Auswahl-Buttons */
.scf-choice-buttons,
.scf-budget-choices {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.scf-choice-btn,
.scf-budget-btn {
    background: transparent;
    border: 2px solid #333;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
}

.scf-choice-btn:hover,
.scf-budget-btn:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.scf-choice-btn.selected,
.scf-budget-btn.selected {
    background: #ffd700;
    color: #000;
    border-color: #ffd700;
}

/* Input-Felder */
.scf-step input[type="text"],
.scf-step input[type="email"],
.scf-step input[type="tel"],
.scf-step input[type="url"],
.scf-step textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    background: transparent;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.scf-step input::placeholder,
.scf-step textarea::placeholder {
    color: #999;
}

.scf-step input:focus,
.scf-step textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.scf-step textarea {
    min-height: 120px;
    resize: vertical;
}

/* Weiter-Button */
.scf-next-btn,
.scf-submit-btn {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto 0;
    min-width: 120px;
}

.scf-next-btn:hover,
.scf-submit-btn:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}

.scf-next-btn:disabled,
.scf-submit-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

/* Datenschutz-Checkbox */
.scf-privacy-checkbox {
    margin-bottom: 30px;
    text-align: center;
}

.scf-privacy-checkbox label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.scf-privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ffd700;
}

.scf-privacy-checkbox a {
    color: #ffd700;
    text-decoration: none;
}

.scf-privacy-checkbox a:hover {
    text-decoration: underline;
}

/* Loading-Animation */
.scf-loading {
    text-align: center;
    padding: 40px 20px;
}

.scf-spinner {
    border: 3px solid #333;
    border-top: 3px solid #ffd700;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Erfolgs-Nachricht */
.scf-success-message {
    text-align: center;
    padding: 40px 20px;
}

.scf-success-message h3 {
    color: #ffd700;
    margin-bottom: 20px;
}

/* Fehler-Styling */
.scf-error {
    border-color: #ff4757 !important;
}

.scf-error-message {
    color: #ff4757;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scf-form-container {
        margin: 10px;
        padding: 15px;
    }
    
    .scf-step h3 {
        font-size: 20px;
    }
    
    .scf-choice-btn,
    .scf-budget-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .scf-step input,
    .scf-step textarea {
        padding: 12px;
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
}

/* Scroll-Effekte */
.scf-step.scroll-out {
    opacity: 0.3;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.scf-step.scroll-in {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

/* Budget-Buttons in zwei Spalten für größere Bildschirme */
@media (min-width: 480px) {
    .scf-budget-choices {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

/* Form-Validierung */
.scf-step input:valid,
.scf-step textarea:valid {
    border-color: #28a745;
}

.scf-step input:invalid:not(:placeholder-shown),
.scf-step textarea:invalid:not(:placeholder-shown) {
    border-color: #ff4757;
}

/* Smooth Transitions für alle Elemente */
* {
    box-sizing: border-box;
}

.scf-form-container * {
    transition: all 0.3s ease;
}
