        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #0e9eff;
            --primary-dark: #0077cc;
            --text-dark: #1a1a1a;
            --text-gray: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 2px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(14, 158, 255, 0.15);
            --gradient: linear-gradient(135deg, #0e9eff 0%, #0077cc 100%);
            --success: #00c853;
            --error: #ff4757;
        }

        body {
            font-family: 'Cairo', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: var(--gradient);
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .hero p {
            font-size: 22px;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Section */
        .section {
            padding: 90px 0;
        }

        .section-light {
            background: var(--bg-light);
        }

        /* Contact Section */
        .contact-section {
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: flex-start;
        }

        /* Contact Form */
        .contact-form {
            background: var(--white);
            padding: 50px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        .contact-form h2 {
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .contact-form p {
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 35px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Cairo', sans-serif;
            transition: all 0.3s;
            background: var(--white);
            color: var(--text-dark);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(14, 158, 255, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--gradient);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Cairo', sans-serif;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(14, 158, 255, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .form-message {
            margin-top: 20px;
            padding: 15px;
            border-radius: 12px;
            font-weight: 600;
            text-align: center;
            display: none;
        }

        .form-message.success {
            background: rgba(0, 200, 83, 0.1);
            color: var(--success);
            border: 2px solid var(--success);
        }

        .form-message.error {
            background: rgba(255, 71, 87, 0.1);
            color: var(--error);
            border: 2px solid var(--error);
        }

        /* Contact Info */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card {
            background: var(--white);
            padding: 35px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            display: flex;
            gap: 25px;
            align-items: flex-start;
            transition: all 0.3s;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .info-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            flex-shrink: 0;
        }

        .info-content h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .info-content p {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .info-content a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .info-content a:hover {
            color: var(--primary-dark);
        }

        .phone-link {
            display: inline-block;
            direction: ltr;
            text-align: left;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: 0.5px;
            margin-top: 8px;
        }

        /* Map Section */
        .map-section {
            background: var(--bg-light);
        }

        .map-container {
            width: 100%;
            height: 450px;
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: var(--text-gray);
        }

        /* FAQ Section */
        .faq-section {
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 42px;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 15px;
            border-right: 4px solid var(--primary-color);
        }

        .faq-item h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .faq-item p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Working Hours */
        .hours-section {
            background: var(--gradient);
            color: white;
            padding: 80px 0;
        }

        .hours-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .hours-content h2 {
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 40px;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .hour-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .hour-item h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .hour-item p {
            font-size: 16px;
            opacity: 0.95;
        }

        /* Social Media */
        .social-section {
            background: var(--bg-light);
            padding: 60px 0;
        }

        .social-content {
            text-align: center;
        }

        .social-content h3 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 30px;
            color: var(--text-dark);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 60px;
            height: 60px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            text-decoration: none;
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }

        .social-link:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .social-link.facebook { color: #1877f2; }
        .social-link.instagram { color: #e4405f; }
        .social-link.whatsapp { color: #25d366; }
        .social-link.email { color: var(--primary-color); }

        /* Responsive */
        @media (max-width: 968px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .faq-grid,
            .hours-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 38px;
            }

            .section-header h2,
            .hours-content h2 {
                font-size: 32px;
            }

            .contact-form {
                padding: 35px;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 60px 0;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .section {
                padding: 60px 0;
            }

            .contact-form {
                padding: 25px;
            }

            .contact-form h2 {
                font-size: 26px;
            }

            .map-container {
                height: 300px;
                font-size: 60px;
            }

            .social-links {
                gap: 15px;
            }

            .social-link {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }

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

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