 /* محتوى الصفحة */
        .contact-page {
            padding-top: 90px;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .page-title {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .page-description {
            color: #555;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        /* تخطيط صفحة التواصل */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        
        /* معلومات التواصل */
        .contact-information {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--box-shadow);
            height: fit-content;
        }
        
        .section-title {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--light-blue);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: 0;
            width: 60px;
            height: 2px;
            background: var(--primary-red);
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
            color: var(--primary-blue);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .info-content {
            flex: 1;
        }
        
        .info-title {
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 0.3rem;
        }
        
        .info-text {
            color: #555;
        }
        
        .info-text a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .info-text a:hover {
            color: var(--primary-red);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-link:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        
        /* نموذج التواصل */
        .contact-form {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--box-shadow);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--primary-blue);
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(20, 44, 84, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-note {
            font-size: 0.9rem;
            color: #777;
            margin-top: 0.3rem;
        }
        
        /* أزرار الإرسال */
        .submit-options {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
            font-size: 1rem;
            gap: 0.5rem;
        }
        
        .btn-whatsapp {
            background: #25D366;
            color: white;
            flex: 1;
        }
        
        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }
        
        .btn-email {
            background: var(--primary-blue);
            color: white;
            flex: 1;
        }
        
        .btn-email:hover {
            background: #0f2447;
            transform: translateY(-2px);
        }
        
        /* خريطة */
        .map-container {
            margin-top: 3rem;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            height: 350px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* وسائط الاستجابة */
        @media (max-width: 992px) {
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .page-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                padding: 0 1rem;
            }
            
            .logo-text h1 {
                font-size: 1.5rem;
            }
            
            .contact-page {
                padding: 2rem 0;
            }
            
            .page-title {
                font-size: 1.8rem;
            }
            
            .contact-info, .contact-form {
                padding: 1.5rem;
            }
            
            .submit-options {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .logo-icon {
                width: 40px;
                height: 40px;
            }
            
            .logo-text h1 {
                font-size: 1.3rem;
            }
            
            .info-item {
                flex-direction: column;
                text-align: center;
            }
            
            .info-icon {
                margin-left: 0;
                margin-bottom: 1rem;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .page-title {
                font-size: 1.6rem;
            }
            
            .section-title {
                font-size: 1.3rem;
            }
        }
        
        /* تأثيرات للتفاعل */
        .form-control:focus {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .btn {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .btn:hover {
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .alert {
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 1.5rem;
            display: none;
        }
        
        .alert-success {
            background: rgba(40, 167, 69, 0.15);
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .alert-error {
            background: rgba(220, 53, 69, 0.15);
            color: #721c24;
            border: 1px solid #f5c6cb;
        }