/* ============================================
   SERVICE PAGES STYLES - MODERN REDESIGN
   ============================================ */

/* Service Hero - Dark gradient with accent */
.service-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, #2a3a52 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 130, 31, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--gray-50), transparent);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--gray-400);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--gray-500);
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.service-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.service-hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.service-hero-text > p {
    color: var(--gray-300);
    font-size: 1.15rem;
    max-width: 520px;
    line-height: 1.7;
}

.service-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.service-stats .stat {
    text-align: left;
}

.service-stats .stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.service-stats .stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.service-hero-icon {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 130, 31, 0.2) 0%, rgba(245, 130, 31, 0.05) 100%);
    border: 3px solid rgba(245, 130, 31, 0.3);
    color: var(--primary);
    animation: float-icon 4s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Service Content */
.service-content {
    padding: 5rem 0;
    background: var(--gray-50);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
}

.service-main {
    background: var(--white);
    padding: 3rem;
    border: 3px solid var(--gray-200);
}

.service-main h2 {
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
}

.service-main h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-main h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary);
}

.service-main .lead {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Feature Grid - Card Style */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.feature-box {
    padding: 1.75rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-box:hover::before {
    transform: scaleY(1);
}

.feature-box .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(245, 130, 31, 0.3);
}

.feature-box h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 1.1rem;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Process Steps - Timeline Style */
.process-steps {
    position: relative;
    padding-left: 0;
}

.process-step {
    position: relative;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.process-step:not(:last-child) {
    margin-bottom: -2px;
}

.process-step:hover {
    border-color: var(--primary);
    z-index: 1;
}

.step-number {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--primary);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin-bottom: 0.35rem;
    color: var(--secondary);
    font-size: 1.05rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   SIDEBAR & CONTACT FORM - MODERN STYLE
   ============================================ */

.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-form-card {
    background: var(--white);
    border: 3px solid var(--secondary);
    padding: 0;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.sidebar-form-card h3 {
    background: var(--secondary);
    color: var(--white);
    padding: 1.5rem;
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-form-card h3::before {
    content: '';
    width: 40px;
    height: 40px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.sidebar-form-card > p {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 1.25rem 1.5rem 0;
    margin: 0;
}

.service-form {
    padding: 1.5rem;
}

.service-form .form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.service-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.service-form label svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--gray-200);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-50);
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 130, 31, 0.1);
}

.service-form input::placeholder,
.service-form textarea::placeholder {
    color: var(--gray-400);
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

/* Sidebar Contact Cards */
.sidebar-contact {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 1.75rem;
}

.sidebar-contact h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-contact h4::before {
    content: '';
    width: 32px;
    height: 32px;
    background: var(--primary);
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.phone-link,
.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.phone-link {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.phone-link:hover {
    background: transparent;
    color: var(--primary);
}

.whatsapp-link {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
}

.whatsapp-link:hover {
    background: transparent;
    color: #25D366;
}

/* Contact Info Card */
.sidebar-info {
    background: var(--white);
    border: 3px solid var(--gray-200);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.sidebar-info h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-info-item:last-child {
    border-bottom: none;
}

.sidebar-info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--primary);
    flex-shrink: 0;
}

.sidebar-info-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.sidebar-info-item strong {
    display: block;
    color: var(--secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

/* Other Services */
.other-services {
    padding: 5rem 0;
    background: var(--white);
}

.other-services h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 3px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-mini-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-mini-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-mini-card:hover::before {
    transform: scaleX(1);
}

.service-mini-card svg {
    color: var(--primary);
    transition: var(--transition);
}

.service-mini-card:hover svg {
    transform: scale(1.15);
}

.service-mini-card span {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1) rotate(10deg);
}

/* FAQ on service pages */
.service-main .faq-list {
    max-width: 100%;
}

.service-main .faq-item {
    margin-bottom: 0;
    border: 2px solid var(--gray-200);
}

.service-main .faq-item:not(:last-child) {
    margin-bottom: -2px;
}

.service-main .faq-item.active {
    border-color: var(--primary);
    z-index: 1;
    position: relative;
}

.service-main .faq-question {
    padding: 1.25rem 1.5rem;
    background: var(--gray-50);
}

.service-main .faq-answer {
    background: var(--white);
}

.service-main .faq-answer p {
    padding: 1.25rem 1.5rem;
}

/* ============================================
   MULTI-STEP FORM STYLES - ENHANCED
   ============================================ */

/* Step Progress Indicator */
.form-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.75rem;
    padding: 1.25rem 0;
    background: var(--gray-50);
    margin: -1.5rem -1.5rem 1.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.step-dot {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    color: var(--gray-500);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.step-dot svg {
    width: 18px;
    height: 18px;
}

.step-dot.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(245, 130, 31, 0.4);
}

.step-dot.completed {
    background: var(--secondary);
    color: var(--white);
}

.step-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-title svg {
    color: var(--primary);
    flex-shrink: 0;
}

.step-line {
    width: 50px;
    height: 3px;
    background: var(--gray-200);
}

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

.form-step.active {
    display: block;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-title {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Form Row */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Radio Options */
.radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 0.65rem 1rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.radio-option:hover {
    border-color: var(--primary);
    background: rgba(245, 130, 31, 0.05);
}

.radio-option input {
    width: auto;
    margin-right: 0.5rem;
    accent-color: var(--primary);
}

.radio-option input:checked + span {
    color: var(--primary);
    font-weight: 600;
}

/* Checkbox Items */
.furniture-checklist,
.services-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    background: var(--gray-50);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.checkbox-item:hover {
    background: rgba(245, 130, 31, 0.05);
    border-color: var(--primary);
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.checkbox-item span {
    color: var(--gray-700);
}

/* Service Options with description */
.service-option {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    background: var(--white);
}

.service-option:hover {
    border-color: var(--primary);
    background: rgba(245, 130, 31, 0.03);
}

.service-option input:checked ~ span strong {
    color: var(--primary);
}

.service-option span {
    display: flex;
    flex-direction: column;
}

.service-option strong {
    color: var(--secondary);
    font-size: 0.9rem;
}

.service-option small {
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-top: 2px;
}

/* Privacy Checkbox */
.privacy-check {
    margin-top: 1.25rem;
    padding: 1rem;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-left: 4px solid var(--primary);
}

.privacy-check a {
    color: var(--primary);
    text-decoration: underline;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--gray-200);
}

.form-navigation .btn {
    flex: 1;
    padding: 0.9rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-navigation .btn-prev {
    flex: 0.6;
    background: var(--gray-100);
    border-color: var(--gray-200);
    color: var(--secondary);
}

.form-navigation .btn-prev:hover {
    background: var(--gray-200);
}

.form-navigation .btn-next,
.form-navigation .btn-submit {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.form-navigation .btn-next:hover,
.form-navigation .btn-submit:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Input Error State */
.input-error {
    border-color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.05) !important;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Icon in form labels */
.label-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    margin-right: 6px;
}

/* ============================================
   MOBILE OPTIMIERUNG - SERVICE SEITEN
   ============================================ */

/* TABLET */
@media (max-width: 1024px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .service-hero-icon { display: none; }
    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-sidebar { 
        order: -1;
        position: static;
    }
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-hero-text > p {
        margin: 0 auto;
        max-width: 600px;
    }
    .service-stats {
        justify-content: center;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    /* === HERO === */
    .service-hero {
        padding: 90px 0 40px;
        background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    }
    .service-hero::after {
        height: 60px;
    }
    .service-hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    .service-hero-text > p {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0 10px;
    }
    .service-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.75rem;
    }
    .service-badge::before {
        width: 6px;
        height: 6px;
    }
    .breadcrumb {
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        margin-bottom: 1.25rem;
    }
    .service-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    .service-stats .stat {
        text-align: center;
        min-width: 70px;
    }
    .service-stats .stat-number {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }
    .service-stats .stat-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* === CONTENT === */
    .service-content {
        padding: 1.5rem 0;
        background: var(--white);
    }
    .service-grid {
        gap: 0;
    }
    .service-sidebar {
        margin-bottom: 1.5rem;
    }

    /* === SIDEBAR FORM === */
    .sidebar-form-card {
        margin: 0 -15px;
        border: none;
        border-top: 4px solid var(--primary);
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    .sidebar-form-card h3 {
        padding: 1.25rem;
        font-size: 1.1rem;
        text-align: center;
        background: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .sidebar-form-card h3::before {
        width: 28px;
        height: 28px;
        background-size: 16px;
    }
    .sidebar-form-card > p {
        text-align: center;
        padding: 1rem 1rem 0;
        font-size: 0.85rem;
        color: var(--gray-600);
    }
    .service-form {
        padding: 1rem 1.25rem 1.5rem;
    }

    /* === STEP INDICATOR === */
    .form-steps-indicator {
        gap: 4px;
        padding: 1rem 0.5rem;
        margin: 0 -1.25rem 1.25rem;
        background: var(--gray-100);
        border-bottom: 2px solid var(--gray-200);
    }
    .step-dot {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    .step-dot svg {
        width: 12px;
        height: 12px;
    }
    .step-dot.active {
        box-shadow: 0 2px 8px rgba(245, 130, 31, 0.4);
    }
    .step-line {
        width: 12px;
        height: 2px;
    }
    .step-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom-width: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .step-title svg {
        width: 18px;
        height: 18px;
    }

    /* === FORM ELEMENTS === */
    .form-group {
        margin-bottom: 0.9rem;
    }
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
        color: var(--secondary);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
        border-width: 2px;
        background: var(--white);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(245, 130, 31, 0.1);
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* === CHECKBOXES & RADIOS === */
    .furniture-checklist,
    .services-checklist {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .checkbox-item {
        padding: 12px 14px;
        font-size: 0.9rem;
        background: var(--gray-50);
        border: 2px solid transparent;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    .checkbox-item:active {
        background: rgba(245, 130, 31, 0.1);
        border-color: var(--primary);
    }
    .checkbox-item input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    .radio-options {
        flex-direction: column;
        gap: 6px;
    }
    .radio-option {
        width: 100%;
        padding: 12px 14px;
        min-height: 48px;
        font-size: 0.9rem;
    }
    .privacy-check {
        padding: 1rem;
        margin-top: 1rem;
        font-size: 0.8rem;
        border-left-width: 3px;
    }

    /* === FORM NAVIGATION === */
    .form-navigation {
        flex-direction: column;
        gap: 8px;
        margin-top: 1.25rem;
        padding-top: 1rem;
        border-top-width: 2px;
    }
    .form-navigation .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
        font-weight: 700;
        min-height: 52px;
    }
    .form-navigation .btn svg {
        width: 18px;
        height: 18px;
    }
    .form-navigation .btn-prev {
        order: 2;
        background: var(--gray-100);
        flex: none;
    }
    .form-navigation .btn-next,
    .form-navigation .btn-submit {
        flex: none;
    }
    .form-note {
        font-size: 0.75rem;
        margin-top: 1rem;
        padding-top: 0.75rem;
        color: var(--gray-500);
    }

    /* === SIDEBAR CONTACT === */
    .sidebar-contact {
        margin: 0 -15px;
        padding: 1.25rem;
        text-align: center;
    }
    .sidebar-contact h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .sidebar-contact h4::before {
        width: 28px;
        height: 28px;
        background-size: 14px;
    }
    .phone-link,
    .whatsapp-link {
        padding: 14px 16px;
        font-size: 0.95rem;
        font-weight: 700;
        min-height: 52px;
        margin-bottom: 8px;
    }
    .phone-link svg,
    .whatsapp-link svg {
        width: 20px;
        height: 20px;
    }

    /* === SIDEBAR INFO === */
    .sidebar-info {
        margin: 1rem -15px 0;
        padding: 1.25rem;
        border: none;
        border-top: 3px solid var(--gray-200);
    }
    .sidebar-info h4 {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    .sidebar-info-item {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 0.75rem 0;
    }
    .sidebar-info-icon {
        margin: 0 auto;
        width: 32px;
        height: 32px;
    }
    .sidebar-info-item p {
        font-size: 0.85rem;
    }
    .sidebar-info-item strong {
        font-size: 0.7rem;
    }

    /* === MAIN CONTENT === */
    .service-main {
        padding: 1.5rem 0;
        border: none;
        background: transparent;
    }
    .service-main h2 {
        font-size: 1.35rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    .service-main h3 {
        font-size: 1.15rem;
        text-align: center;
        justify-content: center;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .service-main h3::before {
        display: none;
    }
    .service-main .lead {
        text-align: center;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    /* === FEATURES GRID === */
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .feature-box {
        padding: 1.25rem;
        text-align: center;
        border-width: 2px;
    }
    .feature-box::before {
        display: none;
    }
    .feature-box .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.75rem;
    }
    .feature-box .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    .feature-box h4 {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
    }
    .feature-box p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* === PROCESS STEPS === */
    .process-steps {
        margin-top: 1rem;
    }
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem;
        border-width: 2px;
    }
    .step-number {
        margin: 0 auto;
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    .step-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* === FAQ === */
    .service-main .faq-list {
        margin-top: 1rem;
    }
    .service-main .faq-item {
        border-width: 2px;
    }
    .service-main .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    .service-main .faq-question svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    .service-main .faq-answer p {
        padding: 0.75rem 1rem 1rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* === OTHER SERVICES === */
    .other-services {
        padding: 2rem 0;
        background: var(--gray-50);
    }
    .other-services h2 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    .services-mini-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .service-mini-card {
        padding: 1rem 0.75rem;
        gap: 0.5rem;
        border-width: 2px;
    }
    .service-mini-card::before {
        height: 3px;
    }
    .service-mini-card svg {
        width: 26px;
        height: 26px;
    }
    .service-mini-card span {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    /* === WHATSAPP FLOAT === */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* SEHR KLEINE HANDYS */
@media (max-width: 380px) {
    .service-hero h1 {
        font-size: 1.4rem;
    }
    .service-hero-text > p {
        font-size: 0.85rem;
    }
    .service-stats {
        gap: 1rem;
    }
    .service-stats .stat-number {
        font-size: 1.2rem;
    }
    .step-dot {
        width: 26px;
        height: 26px;
    }
    .step-dot svg {
        width: 10px;
        height: 10px;
    }
    .step-line {
        width: 8px;
    }
    .services-mini-grid {
        grid-template-columns: 1fr;
    }
    .service-mini-card {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 1rem;
        gap: 0.75rem;
    }
    .service-mini-card svg {
        flex-shrink: 0;
    }
    .form-navigation .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* TOUCH GERÄTE */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .checkbox-item,
    .radio-option,
    .phone-link,
    .whatsapp-link,
    .service-mini-card,
    .faq-question {
        min-height: 48px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
    }
    .feature-box:hover,
    .service-mini-card:hover,
    .process-step:hover,
    .btn:hover {
        transform: none;
    }
    .checkbox-item:active,
    .radio-option:active,
    .btn:active {
        opacity: 0.9;
    }
}

/* LANDSCAPE */
@media (max-height: 500px) and (orientation: landscape) {
    .service-hero {
        padding: 70px 0 30px;
    }
    .service-hero h1 {
        font-size: 1.4rem;
    }
    .service-stats {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }
}

/* ============================================
   KONTAKT & STANDORT - MOBILE OPTIMIERUNG
   ============================================ */
@media (max-width: 768px) {
    /* Sidebar Info - Kontakt & Standort */
    .sidebar-info {
        margin: 0 -15px;
        padding: 1.5rem 1.25rem;
        background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
        border: none;
        border-top: 4px solid var(--secondary);
    }
    
    .sidebar-info h4 {
        font-size: 1.1rem;
        color: var(--secondary);
        text-align: center;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid var(--gray-200);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .sidebar-info h4::before {
        content: '';
        width: 24px;
        height: 24px;
        background: var(--primary);
        display: inline-block;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .sidebar-info-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 12px;
        padding: 1rem;
        margin-bottom: 8px;
        background: var(--white);
        border: 2px solid var(--gray-200);
        transition: all 0.2s ease;
    }
    
    .sidebar-info-item:last-child {
        margin-bottom: 0;
    }
    
    .sidebar-info-item:active {
        border-color: var(--primary);
        background: rgba(245, 130, 31, 0.05);
    }
    
    .sidebar-info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--white);
        margin: 0;
    }
    
    .sidebar-info-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .sidebar-info-item p {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .sidebar-info-item strong {
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--gray-500);
        margin-bottom: 2px;
    }
    
    .sidebar-info-item a {
        color: var(--primary);
        font-weight: 600;
    }
}

/* ============================================
   WEITERE LEISTUNGEN - MOBILE OPTIMIERUNG
   ============================================ */
@media (max-width: 768px) {
    .other-services {
        padding: 2.5rem 0;
        background: var(--secondary);
    }
    
    .other-services h2 {
        font-size: 1.4rem;
        color: var(--white);
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .other-services h2 .highlight {
        color: var(--primary);
    }
    
    .services-mini-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .service-mini-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 1.25rem 0.75rem;
        background: var(--white);
        border: none;
        text-align: center;
        min-height: 100px;
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
    }
    
    .service-mini-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--primary);
        transform: scaleX(0);
        transition: transform 0.2s ease;
    }
    
    .service-mini-card:active {
        transform: scale(0.98);
    }
    
    .service-mini-card:active::before {
        transform: scaleX(1);
    }
    
    .service-mini-card svg {
        width: 32px;
        height: 32px;
        color: var(--primary);
    }
    
    .service-mini-card span {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--secondary);
        line-height: 1.2;
    }
}

@media (max-width: 380px) {
    .services-mini-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .service-mini-card {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 1rem 1.25rem;
        gap: 1rem;
        min-height: auto;
    }
    
    .service-mini-card svg {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }
    
    .service-mini-card span {
        font-size: 0.9rem;
    }
    
    .sidebar-info-item {
        padding: 0.85rem;
    }
    
    .sidebar-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .sidebar-info-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Sidebar Contact - Direkt anrufen */
@media (max-width: 768px) {
    .sidebar-contact {
        margin: 0 -15px;
        padding: 1.5rem 1.25rem;
        background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
        text-align: center;
    }
    
    .sidebar-contact h4 {
        font-size: 1rem;
        color: var(--white);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .sidebar-contact h4::before {
        width: 32px;
        height: 32px;
        background: var(--primary);
    }
    
    .phone-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 20px;
        background: var(--primary);
        color: var(--white);
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 10px;
        border: 2px solid var(--primary);
        min-height: 56px;
    }
    
    .phone-link:active {
        background: var(--primary-dark);
        transform: scale(0.98);
    }
    
    .phone-link svg {
        width: 22px;
        height: 22px;
    }
    
    .whatsapp-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 20px;
        background: #25D366;
        color: var(--white);
        font-size: 1rem;
        font-weight: 700;
        border: 2px solid #25D366;
        min-height: 56px;
    }
    
    .whatsapp-link:active {
        background: #128C7E;
        transform: scale(0.98);
    }
    
    .whatsapp-link svg {
        width: 22px;
        height: 22px;
    }
}
