/* ============================================
   BLITZKRAFT - MOBILE OPTIMIERUNG KOMPLETT
   ============================================ */

/* TABLET */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .hero h1 { font-size: 2.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .area-content { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* MOBILE */
@media (max-width: 768px) {
    /* NAV */
    .navbar { padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
    .navbar .container { padding: 0 15px; }
    .navbar .logo img { height: 40px; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 85%; max-width: 320px;
        height: 100vh; background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-dark) 100%);
        flex-direction: column; padding: 100px 30px 40px; transition: right 0.4s ease;
        z-index: 999; box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .nav-menu.active { right: 0; }
    .nav-menu li { margin: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-menu a { display: flex; align-items: center; padding: 18px 0; font-size: 1.1rem; font-weight: 600; color: white; }
    .nav-cta { display: none; }
    
    .mobile-menu-btn {
        display: flex; flex-direction: column; justify-content: center; align-items: center;
        width: 44px; height: 44px; cursor: pointer; z-index: 1001;
        background: var(--gray-100); border: none; padding: 10px;
    }
    .mobile-menu-btn span { display: block; width: 24px; height: 3px; background: var(--secondary); margin: 2px 0; transition: 0.3s ease; }
    .mobile-menu-btn.active { background: var(--secondary); }
    .mobile-menu-btn.active span { background: white; }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    /* HERO */
    .hero { padding: 100px 0 60px; min-height: auto; text-align: center; }
    .hero h1 { font-size: 1.9rem; line-height: 1.15; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-badge { font-size: 11px; padding: 10px 20px; }
    .hero-cta { flex-direction: column; gap: 12px; }
    .hero-cta .btn { width: 100%; justify-content: center; padding: 16px 24px; }
    .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 2rem; }
    .hero-stats .stat { text-align: center; }
    .hero-stats .stat-number { font-size: 1.6rem; }
    .hero-stats .stat-label { font-size: 0.7rem; }
    .hero-image { display: none; }

    /* SECTIONS */
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: 1.6rem; line-height: 1.2; }
    .section-header p { font-size: 0.95rem; }
    
    .services, .why-us, .service-area, .testimonials, .contact { padding: 2.5rem 0; }
    .services-grid { grid-template-columns: 1fr; gap: 15px; }
    .service-card { padding: 1.5rem; text-align: center; }
    .service-icon { width: 60px; height: 60px; margin: 0 auto 1rem; }
    .service-card h3 { font-size: 1.1rem; }
    .service-card .btn { width: 100%; }
    
    .services-featured { grid-template-columns: 1fr; }
    .small-tiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .small-tile { padding: 1.25rem 1rem; }
    .small-tile span { font-size: 0.8rem; }
    
    .features-grid { grid-template-columns: 1fr; gap: 15px; }
    .feature-card { padding: 1.5rem; display: flex; flex-direction: row; align-items: center; text-align: left; gap: 1rem; }
    .feature-icon { width: 50px; height: 50px; margin: 0; flex-shrink: 0; }
    .feature-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
    .feature-card p { font-size: 0.85rem; }
    
    .testimonials-grid { grid-template-columns: 1fr; gap: 15px; }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-text { font-size: 0.9rem; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-info { order: 2; }
    .contact-form { order: 1; }
    .contact-item { padding: 1.25rem; }
    .form-row { flex-direction: column; gap: 0; }
    .form-group { margin-bottom: 1rem; }
    .form-group input, .form-group select, .form-group textarea { padding: 14px 12px; font-size: 16px; }
    .btn-full { padding: 16px; font-size: 1rem; }

    /* FOOTER */
    .footer { padding: 2.5rem 0 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-logo { height: 50px; margin: 0 auto 1rem; }
    .footer-links h4 { font-size: 1rem; margin-bottom: 1rem; }
    .footer-links ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; }
    .footer-links a { font-size: 0.9rem; }
    .social-links { justify-content: center; }
    .footer-bottom { margin-top: 2rem; font-size: 0.8rem; text-align: center; }
    
    .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero { padding: 90px 0 50px; }
    .hero h1 { font-size: 1.6rem; }
    .hero-stats .stat-number { font-size: 1.4rem; }
    .section-header h2 { font-size: 1.4rem; }
    .small-tiles { grid-template-columns: 1fr; }
    .whatsapp-float { bottom: 15px; right: 15px; width: 50px; height: 50px; }
}

/* SERVICE PAGES */
@media (max-width: 768px) {
    .service-hero { padding: 100px 0 50px; }
    .service-hero h1 { font-size: 1.7rem; line-height: 1.2; }
    .service-hero-content { flex-direction: column; text-align: center; }
    .service-hero-icon { display: none; }
    .breadcrumb { justify-content: center; font-size: 0.8rem; flex-wrap: wrap; }
    .service-badge { font-size: 0.7rem; padding: 0.5rem 1rem; }
    .service-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
    .service-stats .stat-number { font-size: 1.5rem; }
    .service-stats .stat-label { font-size: 0.7rem; }
    
    .service-content { padding: 2rem 0; }
    .service-grid { grid-template-columns: 1fr; gap: 0; }
    .service-sidebar { order: -1; margin-bottom: 2rem; }
    
    .sidebar-form-card { margin: 0 -15px; border-left: none; border-right: none; }
    .sidebar-form-card h3 { padding: 1.25rem; font-size: 1.1rem; text-align: center; }
    .service-form { padding: 1.25rem; }
    
    .form-steps-indicator { gap: 5px; padding: 1rem 8px; }
    .step-dot { width: 34px; height: 34px; }
    .step-dot svg { width: 14px; height: 14px; }
    .step-line { width: 18px; }
    .step-title { font-size: 1rem; text-align: center; justify-content: center; }
    
    .service-main { padding: 0; border: none; }
    .service-main h2 { font-size: 1.4rem; text-align: center; }
    .service-main h3 { font-size: 1.2rem; text-align: center; justify-content: center; }
    .service-main h3::before { display: none; }
    .service-main .lead { text-align: center; font-size: 0.95rem; }
    
    .service-features-grid { grid-template-columns: 1fr; gap: 12px; }
    .feature-box { padding: 1.25rem; text-align: center; }
    .feature-box .feature-icon { margin: 0 auto 1rem; width: 50px; height: 50px; }
    .feature-box h4 { font-size: 1rem; }
    
    .process-step { flex-direction: column; text-align: center; gap: 1rem; padding: 1.25rem; }
    .step-number { margin: 0 auto; width: 45px; height: 45px; }
    
    .form-row-2 { grid-template-columns: 1fr; }
    .form-navigation { flex-direction: column; gap: 10px; }
    .form-navigation .btn { width: 100%; padding: 16px; font-size: 1rem; }
    .btn-prev { order: 2; }
    
    .radio-options { flex-direction: column; gap: 8px; }
    .radio-option { width: 100%; padding: 14px; min-height: 50px; }
    .furniture-checklist, .services-checklist { grid-template-columns: 1fr; gap: 8px; }
    .checkbox-item { padding: 14px; min-height: 50px; }
    
    .sidebar-contact { margin: 0 -15px; padding: 1.5rem; text-align: center; }
    .phone-link, .whatsapp-link { padding: 14px; font-size: 1rem; min-height: 54px; }
    .sidebar-info { margin: 1rem -15px; padding: 1.25rem; border-left: none; border-right: none; }
    .sidebar-info-item { flex-direction: column; text-align: center; gap: 8px; }
    .sidebar-info-icon { margin: 0 auto; }
    
    .other-services { padding: 2.5rem 0; }
    .other-services h2 { font-size: 1.4rem; }
    .services-mini-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .service-mini-card { padding: 1.25rem 1rem; }
    .service-mini-card span { font-size: 0.8rem; }
    
    .faq-question { padding: 1rem; font-size: 0.95rem; }
    .faq-answer p { padding: 1rem; font-size: 0.9rem; }
}

@media (max-width: 400px) {
    .service-hero h1 { font-size: 1.45rem; }
    .step-dot { width: 28px; height: 28px; }
    .step-line { width: 12px; }
    .services-mini-grid { grid-template-columns: 1fr; }
    .service-mini-card { flex-direction: row; justify-content: flex-start; gap: 1rem; }
}

/* LEGAL PAGES */
@media (max-width: 768px) {
    .legal-hero { padding: 100px 0 50px; }
    .legal-hero h1 { font-size: 1.7rem; }
    .legal-content { padding: 2rem 0; }
    .legal-card { padding: 1.5rem; margin: 0 -15px; border-left: none; border-right: none; }
    .legal-grid { grid-template-columns: 1fr; }
}

/* TOUCH */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-menu a, .checkbox-item, .radio-option { min-height: 48px; }
    .form-group input, .form-group select, .form-group textarea { min-height: 48px; }
    .service-card:hover, .btn:hover, .feature-box:hover, .service-mini-card:hover { transform: none; }
}

/* LANDSCAPE */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { padding: 70px 0 40px; }
    .hero h1 { font-size: 1.7rem; }
    .nav-menu { padding-top: 60px; }
    .service-hero { padding: 70px 0 30px; }
}

/* PRINT */
@media print {
    .navbar, .whatsapp-float, .mobile-menu-btn, .sidebar-contact, .other-services { display: none !important; }
}
