:root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --dark-gradient: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
            --danger-gradient: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            --accent-blue: #4f46e5;
            --accent-purple: #7c3aed;
            --text-light: #8b949e;
            --text-dark: #0d1117;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --shadow-soft: 0 10px 40px rgba(0,0,0,0.1);
            --shadow-strong: 0 25px 60px rgba(0,0,0,0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Heebo', Arial, sans-serif;
            direction: rtl;
            text-align: right;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Loading Animation */
        .loading-dots {
            display: inline-block;
            width: 80px;
            height: 80px;
        }
        .loading-dots div {
            position: absolute;
            top: 33px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: var(--accent-blue);
            animation-timing-function: cubic-bezier(0, 1, 1, 0);
        }
        .loading-dots div:nth-child(1) {
            left: 8px;
            animation: loading1 0.6s infinite;
        }
        .loading-dots div:nth-child(2) {
            left: 8px;
            animation: loading2 0.6s infinite;
        }
        .loading-dots div:nth-child(3) {
            left: 32px;
            animation: loading2 0.6s infinite;
        }
        .loading-dots div:nth-child(4) {
            left: 56px;
            animation: loading3 0.6s infinite;
        }
        
        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            position: relative;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -1px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
            margin: 0;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--accent-blue);
        }
        
        .header-cta {
            background: var(--primary-gradient);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }
        
        .header-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .header-cta:hover::before {
            left: 100%;
        }
        
        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-strong);
        }

        /* НОВЫЕ СТИЛИ ДЛЯ МОБИЛЬНОГО МЕНЮ */
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            font-size: 24px;
            color: var(--text-dark);
            padding: 12px; /* УВЕЛИЧЕНО: с 8px до 12px */
            cursor: pointer;
            z-index: 1001;
            flex-direction: column;
            justify-content: space-around;
            width: 60px; /* УВЕЛИЧЕНО: с 30px до 60px */
            height: 60px; /* УВЕЛИЧЕНО: с 30px до 60px */
        }

        .hamburger span {
            display: block;
            height: 4px; /* УВЕЛИЧЕНО: с 3px до 4px */
            width: 100%;
            background: var(--text-dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Mobile Menu Styles */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: absolute;
                top: 100%;
                right: -100%;
                width: 100%;
                height: auto;
                background: white;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                gap: 0;
                transition: right 0.3s ease;
                padding: 0.5rem 0; /* УВЕЛИЧЕНО: с 0.25rem до 0.5rem для лучшего баланса */
                box-shadow: 0 4px 20px rgba(0,0,0,0.1);
                border-radius: 15px; /* ИЗМЕНЕНО: с "0 0 15px 15px" на полное закругление */
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #e5e7eb;
            }

            .nav-menu li:first-child .nav-link {
                padding-top: 1rem; /* УВЕЛИЧЕНО: с 0.5rem до 1rem для соответствия отступам между элементами */
            }

            .nav-menu li:last-child {
                border-bottom: none;
            }

            .nav-link {
                display: block;
                padding: 0.5rem 2rem; /* ЕЩЕ УМЕНЬШЕНО: с 0.75rem до 0.5rem (8px) */
                font-size: 1rem;
                width: 100%;
            }

            .nav-link::after {
                display: none;
            }

            .header-cta {
                display: none;
            }
        }

        /* Hero Section */
        .hero {
            background: var(--dark-gradient);
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 20%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(103, 126, 234, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text .highlight {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        .hero-cta {
            background: var(--primary-gradient);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-strong);
            position: relative;
            overflow: hidden;
        }

        .hero-visual {
            position: relative;
        }

        .tech-illustration {
            width: 100%;
            height: 400px;
            background: var(--primary-gradient);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            box-shadow: var(--shadow-strong);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .floating-card {
            position: absolute;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1rem;
            color: white;
            animation: float 4s ease-in-out infinite;
        }

        .floating-card:nth-child(1) {
            top: 20%;
            right: -10%;
            animation-delay: -1s;
        }

        .floating-card:nth-child(2) {
            bottom: 30%;
            left: -15%;
            animation-delay: -3s;
        }
        
        /* Services Section */
        .services {
            padding: 6rem 0;
            background: var(--gray-50);
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
            border-color: transparent;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--primary-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .service-card p {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 6rem 0;
            background: white;
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .feature {
            text-align: center;
            position: relative;
        }

        .feature-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            position: relative;
            transition: all 0.3s ease;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid transparent;
            border-radius: 50%;
            background: var(--primary-gradient);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature:hover .feature-icon::after {
            opacity: 0.2;
        }

        .feature h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .feature p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats {
            padding: 4rem 0;
            background: var(--dark-gradient);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
        }

        .stat-card .number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-card .label {
            font-size: 1.1rem;
            color: var(--text-light);
        }
        
        /* Contact Section */
        .contact {
            padding: 6rem 0;
            background: var(--dark-gradient);
            color: white;
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .contact-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .contact h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .contact p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: var(--text-light);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto 4rem;
            background: rgba(255,255,255,0.05);
            padding: 3rem;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            text-align: right;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1.2rem;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            background: rgba(255,255,255,0.05);
            color: white;
            font-family: 'Heebo', Arial, sans-serif;
            font-size: 1rem;
            direction: rtl;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.6);
        }
        
        .form-submit {
            background: var(--primary-gradient);
            color: white;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Heebo', Arial, sans-serif;
            width: 100%;
        }
        
        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-strong);
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .contact-item {
            text-align: center;
            background: rgba(255,255,255,0.05);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.1);
        }

        .contact-item i {
            font-size: 2rem;
            margin-bottom: 1rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .contact-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .contact-item p {
            font-size: 1.1rem;
            margin: 0;
            color: var(--text-light);
        }
        
        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 70px;
            height: 70px;
            bottom: 30px;
            left: 30px;
            background: linear-gradient(135deg, #25d366, #20c95a);
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, #25d366, #20c95a);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            animation: pulse 2s infinite;
        }
        
        /* Footer */
        .footer {
            background: #0d1117;
            color: white;
            padding: 3rem 0;
            text-align: center;
            border-top: 1px solid #30363d;
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0% { opacity: 0; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(1.2); }
            100% { opacity: 0; transform: scale(1.4); }
        }

        @keyframes loading1 {
            0% { transform: scale(0); }
            100% { transform: scale(1); }
        }

        @keyframes loading3 {
            0% { transform: scale(1); }
            100% { transform: scale(0); }
        }

        @keyframes loading2 {
            0% { transform: translate(0, 0); }
            100% { transform: translate(24px, 0); }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-text div[style*="display: flex"] {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-float {
                width: 60px;
                height: 60px;
                bottom: 20px;
                left: 20px;
                font-size: 25px;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* Styles extracted from support.html */
:root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --danger-gradient: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
            --warning-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            --dark-gradient: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
            --text-light: #8b949e;
            --text-dark: #0d1117;
            --white: #ffffff;
            --gray-50: #f9fafb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Heebo', Arial, sans-serif;
            direction: rtl;
            text-align: right;
            line-height: 1.7;
            color: var(--text-dark);
            background: var(--gray-50);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: white;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: #4f46e5;
        }

        .back-btn {
            background: var(--primary-gradient);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.3s ease;
        }

        .back-btn:hover {
            transform: translateY(-2px);
        }

        /* Hero */
        .support-hero {
            background: var(--dark-gradient);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .support-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .support-hero p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        /* Emergency Contact */
        .emergency-contact {
            background: rgba(239, 68, 68, 0.1);
            border: 2px solid #ef4444;
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem auto;
            max-width: 800px;
            text-align: center;
        }

        .emergency-contact h3 {
            color: #ef4444;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .emergency-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .emergency-btn {
            background: var(--danger-gradient);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .emergency-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
        }

        /* Main Content */
        .main-content {
            padding: 4rem 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .ticket-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-subtitle {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* Forms */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-family: 'Heebo', Arial, sans-serif;
            font-size: 1rem;
            direction: rtl;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        .form-group select option {
            background: white;
            color: var(--text-dark);
        }

        .priority-selector {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .priority-option {
            position: relative;
        }

        .priority-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }

        .priority-label {
            display: block;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .priority-option input[type="radio"]:checked + .priority-label {
            border-color: #4f46e5;
            background: rgba(79, 70, 229, 0.1);
        }

        .priority-high .priority-label {
            border-color: #ef4444;
            color: #ef4444;
        }

        .priority-high input[type="radio"]:checked + .priority-label {
            background: rgba(239, 68, 68, 0.1);
            border-color: #ef4444;
        }

        .priority-medium .priority-label {
            border-color: #f59e0b;
            color: #f59e0b;
        }

        .priority-medium input[type="radio"]:checked + .priority-label {
            background: rgba(245, 158, 11, 0.1);
            border-color: #f59e0b;
        }

        .priority-low .priority-label {
            border-color: #10b981;
            color: #10b981;
        }

        .priority-low input[type="radio"]:checked + .priority-label {
            background: rgba(16, 185, 129, 0.1);
            border-color: #10b981;
        }

        .submit-btn {
            background: var(--primary-gradient);
            color: white;
            padding: 1.2rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Heebo', Arial, sans-serif;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
        }

        /* FAQ Section */
        .faq-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            background: #f8fafc;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #f1f5f9;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 200px;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Status Section */
        .status-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-top: 3rem;
        }

        .status-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .status-card {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .status-card:hover {
            transform: translateY(-5px);
        }

        .status-operational {
            border-color: #10b981;
            background: rgba(16, 185, 129, 0.05);
        }

        .status-warning {
            border-color: #f59e0b;
            background: rgba(245, 158, 11, 0.05);
        }

        .status-error {
            border-color: #ef4444;
            background: rgba(239, 68, 68, 0.05);
        }

        .status-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .operational { color: #10b981; }
        .warning { color: #f59e0b; }
        .error { color: #ef4444; }

        /* Mobile */
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .form-row,
            .priority-selector {
                grid-template-columns: 1fr;
            }

            .emergency-buttons {
                flex-direction: column;
                align-items: center;
            }

            .support-hero h1 {
                font-size: 2rem;
            }
        }

/* === Mobile/tablet responsive additions === */
@media (max-width: 768px) {
  .container {
    width: 95% !important;
  }

  .hero h1, .support-hero h1 {
    font-size: 1.5rem !important;
  }

  .hero p, .support-hero p {
    font-size: 1rem !important;
  }

  .priority-selector {
    flex-direction: column !important;
  }

  .form-row {
    flex-direction: column !important;
  }

  .faq-question {
    font-size: 1rem !important;
  }

  .whatsapp-float {
    bottom: 20px !important;
    right: 20px !important;
  }
}
.btn{
  min-height: 44px;
}

.hero h1{
  font-size: clamp(22px, 4.5vw, 40px);
}


/* === Mobile menu tightening (<=480px) === */
@media (max-width: 480px) {
  /* Compact header and nav links */
  header .container { padding: 8px 12px; }
  .topbar { padding: 8px 0; }
  nav a { font-size: 14px; padding: 6px 0; line-height: 1.4; display: inline-block; }

  /* CTA button in nav (if present) */
  .btn.nav-cta { font-size: 14px; padding: 8px 12px; min-height: 36px; }

  /* Brand text a bit smaller to save space */
  .brand .name { font-size: 16px; }

  /* Reduce vertical spacing in hero after a tall nav */
  .hero { padding: 24px 0; }
}