:root {
            --primary-red: #E53E3E;
            --primary-blue: #2D4A73;
            --accent-orange: #be2929;
            --dark-navy: #1A202C;
            --light-gray: #F7FAFC;
            --text-dark: #2D3748;
            --text-light: #718096;
            --white: #FFFFFF;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--light-gray);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .container {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(45, 55, 72, 0.15);
            overflow: hidden;
            max-width: 1100px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
            position: relative;
        }

        .left-section {
            padding: 60px 50px;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .right-section {
            padding: 60px 50px;
            background: var(--light-gray);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
            line-height: 1.1;
        }

        .subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 40px;
        }

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

        .form-input {
            width: 100%;
            padding: 18px 24px;
            border: 2px solid #E2E8F0;
            border-radius: 12px;
            font-size: 1rem;
            background: var(--white);
            color: var(--text-dark);
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(45, 74, 115, 0.1);
        }

        .form-input::placeholder {
            color: #CBD5E0;
        }

        .message-input {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 18px 24px;
            background: var(--primary-blue);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: var(--dark-navy);
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(45, 74, 115, 0.3);
        }

        .illustration-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 40px 0;
        }

        .illustration {
            width: 280px;
            height: 280px;
            background: var(--white);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 35px rgba(45, 55, 72, 0.1);
            position: relative;
            overflow: hidden;
        }

        .person {
            width: 80px;
            height: 120px;
            position: relative;
        }

        .person-body {
            width: 60px;
            height: 80px;
            background: var(--primary-blue);
            border-radius: 30px 30px 15px 15px;
            position: absolute;
            bottom: 0;
            left: 10px;
        }

        .person-head {
            width: 40px;
            height: 40px;
            background: #F7C59F;
            border-radius: 50%;
            position: absolute;
            top: 0;
            left: 20px;
        }

        .person-hair {
            width: 45px;
            height: 25px;
            background: var(--text-dark);
            border-radius: 25px 25px 0 0;
            position: absolute;
            top: -5px;
            left: 17.5px;
        }

        .person-arm {
            width: 30px;
            height: 15px;
            background: var(--primary-blue);
            border-radius: 15px;
            position: absolute;
            top: 55px;
            right: -5px;
            transform: rotate(-30deg);
        }

        .chat-bubbles {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
        }

        .bubble {
            background: var(--primary-blue);
            color: var(--white);
            padding: 8px 12px;
            border-radius: 15px 15px 15px 3px;
            margin-bottom: 10px;
            font-size: 12px;
            position: relative;
        }

        .bubble:nth-child(2) {
            background: #E2E8F0;
            color: var(--text-dark);
            border-radius: 15px 15px 3px 15px;
            margin-left: 20px;
        }

        .laptop {
            position: absolute;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 40px;
            background: var(--text-dark);
            border-radius: 3px 3px 8px 8px;
        }

        .laptop::before {
            content: '';
            position: absolute;
            top: -25px;
            left: 0;
            width: 60px;
            height: 25px;
            background: var(--text-dark);
            border-radius: 3px 3px 0 0;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .contact-icon {
            width: 30px;
            height: 20px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(45, 55, 72, 0.1);
            color: var(--primary-blue);
        }

        .contact-text {
            color: var(--text-dark);
            font-weight: 500;
        }

        .social-icons {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 100;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(45, 74, 115, 0.3);
        }

        .social-icon:hover {
            background: var(--accent-orange);
            transform: translateX(-5px);
        }

        .social-icon svg {
            width: 24px;
            height: 24px;
        }

        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                margin: 10px;
            }
            
            .left-section, .right-section {
                padding: 40px 30px;
            }
            
            .title {
                font-size: 2.5rem;
            }
            
            .illustration {
                width: 200px;
                height: 200px;
            }
            
            .social-icons {
                position: static;
                flex-direction: row;
                justify-content: center;
                margin-top: 30px;
                transform: none;
            }
        }

  .footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 1.5rem 0 1rem; /* أصغر */
    font-family: "Poppins", sans-serif;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
    text-align: center; /* كل الكلام في النص */
  }

  .footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
  }

  .footer-text p {
    margin: 0.4rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .footer-text i {
    color: var(--primary-red);
  }

  .footer-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 شمال و 3 يمين */
    gap: 0.8rem;
    justify-items: center; /* النصوص في النص */
  }

  .footer-services a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
  }

  .footer-services a:hover {
    color: var(--white);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid #4A5568;
    color: var(--text-light);
    font-size: 0.8rem;
}