        /*========================= تنسيقات خاصة بصفحة اتصل بنا =========================*/
        .contact-hero {
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 55, 72, 0.9) 100%),
                url('/assets/images/pg1.jpg') center/cover;
            color: white;
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="%23ffffff" fill-opacity="0.05"/></svg>');
            background-size: cover;
        }

        .contact-hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .contact-hero-description {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }

        .contact-section {
            padding: var(--section-padding);
        }

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

        /*========================= معلومات الاتصال =========================*/
        .contact-info {
            background: var(--bg-white);
            padding: 2.5rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            height: fit-content;
        }

        .contact-info-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }

        .contact-info-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--bg-light);
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
            border-right: 4px solid var(--primary-color);
        }

        .contact-method:hover {
            background: var(--bg-white);
            transform: translateX(-5px);
            box-shadow: var(--shadow);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-method:hover .contact-icon {
            background: var(--secondary-color);
            transform: scale(1.1);
        }

        .contact-details {
            flex: 1;
        }

        .contact-type {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }

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

        .contact-description {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 0.25rem;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        /*========================= نموذج الاتصال =========================*/
        .contact-form-container {
            background: var(--bg-white);
            padding: 2.5rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .contact-form-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }

        .contact-form-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }

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

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-control {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--bg-white);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
        }

        .form-control.error {
            border-color: var(--secondary-color);
        }

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

        .error-message {
            color: var(--secondary-color);
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: var(--shadow);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

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

        .submit-btn:disabled {
            background: var(--text-muted);
            cursor: not-allowed;
            transform: none;
        }

        /*========================= ساعات العمل =========================*/
        .working-hours {
            background: var(--bg-white);
            padding: 2.5rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            margin-bottom: 3rem;
        }

        .hours-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }

        .hours-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }

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

        .hour-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem;
            background: var(--bg-light);
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
        }

        .hour-item:hover {
            background: var(--primary-color);
            color: white;
        }

        .hour-item:hover .day,
        .hour-item:hover .time {
            color: white;
        }

        .day {
            font-weight: 600;
            color: var(--text-dark);
        }

        .time {
            color: var(--secondary-color);
            font-weight: 600;
        }

        /*========================= الخريطة =========================*/
        /* ========================= تنسيقات خاصة لقسم الخريطة فقط ========================= */
        /* هذه التنسيقات لن تؤثر على أي أقسام أخرى */

        .map-section {
            margin-bottom: 4rem;
            width: 100%;
        }

        .map-section .map-container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            background: var(--bg-white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            display: flex;
        }

        .map-section .split-map-container {
            display: flex;
            width: 100%;
            height: 450px;
        }

        .map-section .map-info-side {
            flex: 0 0 40%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            order: 2;
        }

        .map-section .map-visual-side {
            flex: 0 0 60%;
            background: var(--bg-white);
            order: 1;
        }

        .map-section .map-frame {
            width: 100%;
            height: 100%;
        }

        .map-section .map-frame iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* تنسيقات محتوى المعلومات */
        .map-section .map-info-content {
            color: white;
            text-align: center;
            width: 100%;
            padding: 1rem;
        }

        .map-section .map-info-header {
            margin-bottom: 1.5rem;
        }

        .map-section .map-info-header i {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 0.75rem;
            opacity: 0.9;
        }

        .map-section .map-info-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .map-section .map-info-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .map-section .address-details {
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            padding: 1.25rem;
            margin-bottom: 1.5rem;
            text-align: right;
        }

        .map-section .address-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
            text-align: right;
        }

        .map-section .address-item i {
            color: white;
            font-size: 1.1rem;
            margin-top: 0.15rem;
            opacity: 0.9;
            flex-shrink: 0;
        }

        .map-section .address-label {
            font-weight: 600;
            display: block;
            margin-bottom: 0.25rem;
            font-size: 0.9rem;
        }

        .map-section .address-text {
            opacity: 0.9;
            line-height: 1.5;
            margin: 0;
            font-size: 0.85rem;
        }

        .map-section .map-action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: white;
            color: var(--primary-color);
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            border-radius: var(--border-radius);
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            width: 100%;
            margin: 0 auto 0.5rem;
            border: none;
            cursor: pointer;
        }

        .map-section .map-action-btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--primary-dark);
        }

        .map-section .map-note {
            font-size: 0.75rem;
            opacity: 0.8;
            margin-top: 0.5rem;
            text-align: center;
        }

        /* التجاوب للشاشات المختلفة - خاص بقسم الخريطة فقط */
        @media (max-width: 1200px) {
            .map-section .split-map-container {
                height: 400px;
            }
        }

        @media (max-width: 992px) {
            .map-section .split-map-container {
                flex-direction: column;
                height: auto;
                min-height: 800px;
            }

            .map-section .map-info-side,
            .map-section .map-visual-side {
                flex: 0 0 50%;
                min-height: 400px;
            }

            .map-section .map-info-side {
                order: 2;
            }

            .map-section .map-visual-side {
                order: 1;
            }
        }

        @media (max-width: 768px) {
            .map-section .split-map-container {
                min-height: 700px;
            }

            .map-section .map-info-side,
            .map-section .map-visual-side {
                min-height: 350px;
            }

            .map-section .map-info-side {
                padding: 1.5rem;
            }

            .map-section .map-info-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .map-section .split-map-container {
                min-height: 600px;
            }

            .map-section .map-info-side,
            .map-section .map-visual-side {
                min-height: 300px;
            }

            .map-section .map-info-title {
                font-size: 1.25rem;
            }

            .map-section .address-details {
                padding: 1rem;
            }

            .map-section .map-action-btn {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }
        }

        /*========================= رسائل التنبيه =========================*/
        .alert {
            padding: 1.25rem;
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
            display: none;
            align-items: center;
            gap: 0.75rem;
            box-shadow: var(--shadow);
        }

        .alert-success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }

        .alert-error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fecaca;
        }

        .alert i {
            font-size: 1.5rem;
        }

        /*========================= التحميل =========================*/
        .loading {
            display: none;
            text-align: center;
            padding: 2rem;
            background: var(--bg-light);
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(26, 54, 93, 0.2);
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /*========================= RESPONSIVE DESIGN =========================*/
        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-hero-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .contact-hero {
                padding: 5rem 0 3rem;
            }

            .contact-hero-title {
                font-size: 2rem;
            }

            .contact-hero-description {
                font-size: 1.125rem;
            }

            .contact-info,
            .contact-form-container,
            .working-hours {
                padding: 2rem;
            }

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

            .map-placeholder {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .contact-hero-title {
                font-size: 1.75rem;
            }

            .contact-method {
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }

            .contact-icon {
                align-self: center;
            }

            .contact-info,
            .contact-form-container,
            .working-hours {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .contact-hero {
                padding: 4rem 0 2.5rem;
            }

            .contact-section {
                padding: 3rem 0;
            }

            .contact-hero-title {
                font-size: 1.5rem;
            }

            .contact-info-title,
            .contact-form-title,
            .hours-title {
                font-size: 1.5rem;
            }
        }