/* General Styling */
:root {
    --primary-blue-light: #E0F2F7; /* Very light sky blue */
    --primary-blue-medium: #A7D9ED; /* Medium sky blue */
    --primary-blue-dark: #3F8FB3; /* Darker blue for accents */
    --text-dark: #333;
    --text-light: #FFF;
    --background-white: #FFF;
    --background-light-grey: #F8F8F8;
    --border-color: #DDD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Almarai', 'Noto Sans Arabic', sans-serif; /* Default for Arabic */
    line-height: 1.6;
    color: var(--text-dark);
    direction: rtl; /* Default for Arabic */
    background-color: var(--background-white);
}

html[lang="en"] body {
    font-family: 'Open Sans', sans-serif; /* English font */
    direction: ltr;
}

html[lang="ku"] body {
    /* Add Kurdish font here if specific one is needed */
    direction: ltr; /* Kurdish is typically LTR */
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', 'Noto Sans Arabic', sans-serif; /* Arabic headings */
    color: var(--primary-blue-dark);
    margin-bottom: 20px;
}
html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3, html[lang="en"] h4, html[lang="en"] h5, html[lang="en"] h6 {
    font-family: 'Poppins', sans-serif; /* English headings */
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-blue-dark);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-blue-medium);
}

.btn {
    display: inline-block;
    background-color: var(--primary-blue-dark);
    color: var(--text-light) !important;
    padding: 12px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-blue-medium);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue-dark) !important;
    border: 2px solid var(--primary-blue-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-blue-light);
    color: var(--primary-blue-dark) !important;
}

/* Header */
header {
    background-color: var(--background-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 60px; /* Adjust as needed */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-weight: 700;
    font-size: 1.1em;
    padding: 5px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-blue-dark);
    bottom: -5px;
    right: 0; /* For RTL */
    transition: width 0.3s ease;
}
html[lang="en"] nav ul li a::after, html[lang="ku"] nav ul li a::after {
    left: 0; /* For LTR */
    right: auto;
}


nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.language-switcher button {
    background: var(--primary-blue-light);
    border: 1px solid var(--primary-blue-medium);
    padding: 8px 12px;
    margin-left: 5px; /* For RTL */
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-blue-dark);
    transition: background-color 0.3s ease, color 0.3s ease;
}
html[lang="en"] .language-switcher button, html[lang="ku"] .language-switcher button {
    margin-left: 0;
    margin-right: 5px;
}

.language-switcher button.active-lang {
    background-color: var(--primary-blue-dark);
    color: var(--text-light);
}
.language-switcher button:hover:not(.active-lang) {
    background-color: var(--primary-blue-medium);
    color: var(--text-light);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area */
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-blue-dark-rgb, 63, 143, 179), 0.6); /* Slightly transparent dark blue overlay */
    z-index: -1;
}

.hero-content {
    color: var(--text-light);
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* About Intro Section */
.about-intro {
    background-color: var(--background-light-grey);
    text-align: center;
}

.about-intro h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

/* Values Section */
.values-section {
    text-align: center;
}

.values-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.value-item img {
    height: 70px; /* Adjust icon size */
    margin-bottom: 20px;
    filter: invert(39%) sepia(33%) saturate(1514%) hue-rotate(167deg) brightness(97%) contrast(85%); /* To make icons primary blue */
}

.value-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--primary-blue-dark);
}

/* Page Hero (for inner pages) */
.page-hero {
    background-color: var(--primary-blue-light);
    padding: 100px 0 50px;
    text-align: center;
    border-bottom: 2px solid var(--primary-blue-medium);
}
.page-hero h1 {
    font-size: 3em;
    color: var(--primary-blue-dark);
}

/* About Page Sections */
.about-section h2 {
    font-size: 2.2em;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-blue-medium);
    padding-bottom: 10px;
    display: inline-block;
}

.about-section ul {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-section ul li {
    background-color: var(--primary-blue-light);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    position: relative;
    padding-right: 40px; /* Space for icon */
    border-right: 5px solid var(--primary-blue-dark); /* For RTL */
}
html[lang="en"] .about-section ul li, html[lang="ku"] .about-section ul li {
    padding-right: 15px;
    padding-left: 40px;
    border-right: none;
    border-left: 5px solid var(--primary-blue-dark);
}
.about-section ul li::before {
    content: '✓'; /* Checkmark or suitable icon */
    position: absolute;
    right: 15px; /* For RTL */
    color: var(--primary-blue-dark);
    font-weight: bold;
    font-size: 1.2em;
    top: 50%;
    transform: translateY(-50%);
}
html[lang="en"] .about-section ul li::before, html[lang="ku"] .about-section ul li::before {
    right: auto;
    left: 15px; /* For LTR */
}


/* Products Page */
.product-detail {
    background-color: var(--background-light-grey);
}

.product-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap; /* Allows stacking on smaller screens */
    align-items: flex-start; /* Align to top */
}

.product-image-area {
    flex: 1;
    min-width: 300px;
    max-width: 50%; /* Adjust as needed */
    text-align: center;
}

.product-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-info-area {
    flex: 1;
    min-width: 300px;
    max-width: 45%; /* Adjust as needed */
}

.product-info-area h2 {
    font-size: 2.5em;
    color: var(--primary-blue-dark);
    margin-bottom: 10px;
}

.product-tagline {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 25px;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    background-color: var(--background-white);
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    border-right: 4px solid var(--primary-blue-medium); /* For RTL */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
html[lang="en"] .product-features li, html[lang="ku"] .product-features li {
    border-right: none;
    border-left: 4px solid var(--primary-blue-medium);
}

/* Contact Page */
.contact-section .container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info, .contact-form-area {
    flex: 1;
    min-width: 300px;
}

.contact-info h2, .contact-form-area h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primary-blue-dark);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1em;
    color: var(--text-dark);
    background-color: var(--background-white);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-blue-dark);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-blue-dark-rgb, 63, 143, 179), 0.2);
}

.contact-form textarea {
    resize: vertical;
}

.map-section {
    background-color: var(--background-light-grey);
    padding: 60px 0;
    text-align: center;
}

.map-embed {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-embed iframe {
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: var(--primary-blue-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
    text-align: right; /* Default for Arabic */
}
html[lang="en"] footer, html[lang="ku"] footer {
    text-align: left; /* For LTR */
}


footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 70px; /* Adjust as needed */
    margin-bottom: 15px;
    filter: brightness(0) invert(1); /* Makes logo white for dark background */
}

footer h3 {
    color: var(--primary-blue-light);
    margin-bottom: 20px;
    font-size: 1.4em;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: var(--text-light);
    font-size: 1em;
}

footer ul li a:hover {
    color: var(--primary-blue-light);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        flex-direction: column;
        margin-top: 15px;
    }
    nav ul li {
        margin: 5px 0;
    }
    .language-switcher {
        margin-top: 15px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-content p {
        font-size: 1em;
    }

    .values-grid, .product-grid, .contact-section .container {
        flex-direction: column;
        gap: 20px;
    }
    .product-image-area, .product-info-area, .contact-info, .contact-form-area {
        max-width: 100%;
    }

    .about-section ul li {
        padding-right: 15px; /* Adjust for smaller screens regardless of LTR/RTL for simplicity */
        border-right: 5px solid var(--primary-blue-dark);
    }
    html[lang="en"] .about-section ul li::before, html[lang="ku"] .about-section ul li::before {
        right: auto;
        left: 15px;
    }
    .about-section ul li::before {
        right: 15px; /* Keep consistent for RTL */
        left: auto;
    }
    html[lang="en"] .about-section ul li {
        border-left: 5px solid var(--primary-blue-dark);
        border-right: none;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }
    .footer-col {
        min-width: unset;
        width: 100%;
        margin-bottom: 20px;
    }
    footer ul {
        padding: 0;
    }
}


/* Products Gallery Specific Styles */
.section-heading {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block; /* To make border-bottom apply to text width */
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; /* Short line */
    height: 4px;
    background-color: var(--primary-blue-medium);
    border-radius: 2px;
}

.product-grid-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px;
    justify-content: center;
}

.product-item {
    background-color: var(--background-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push button to bottom */
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-thumbnail {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: contain; /* Ensures entire image is visible */
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: var(--background-light-grey); /* Light background for images */
}

.product-item h3 {
    font-size: 1.6em;
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
}

.product-item p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1; /* Allow description to take available space */
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.9em;
    width: fit-content;
    margin: 0 auto; /* Center button */
}

/* Quality Assurance Section */
.quality-assurance-section {
    background-color: var(--primary-blue-light);
    text-align: center;
}

.quality-assurance-section h2 {
    font-size: 2.5em;
    color: var(--primary-blue-dark);
}




/* في ملف css/style.css */

.product-grid-display {
    display: flex; /* استخدام Flexbox لتخطيط العناصر */
    flex-wrap: wrap; /* السماح للعناصر بالانتقال إلى السطر التالي عند الحاجة */
    gap: 20px; /* المسافة بين كروت المنتجات (يمكنك تعديل هذه القيمة حسب تصميمك) */
    
    /* هذه الخاصية هي المفتاح لتوسيط العناصر في الصف (بما في ذلك الصف الأخير غير المكتمل) */
    justify-content: center; 
    
    /* يمكنك إضافة بعض الحشو إذا أردت مسافة حول شبكة المنتجات بأكملها */
    /* padding: 10px; */ 
}

.product-item {
    /* حدد عرضًا أساسيًا أو عرضًا ثابتًا لعناصر المنتج */
    /* إذا كنت تريد 3 أعمدة بشكل عام على الشاشات الأكبر: */
    width: calc(33.333% - 20px); /* حاول حساب العرض لثلاثة أعمدة مع مراعاة الـ gap */
                                  /* مثال: (100% / 3) ثم اطرح قيمة مناسبة للـ gap */
                                  /* أو استخدم عرضًا ثابتًا إذا كان ذلك يناسب تصميمك بشكل أفضل مع justify-content: center */
    /* width: 300px; */ /* مثال على عرض ثابت، قم بتعديله حسب الحاجة */

    min-width: 280px; /* أقل عرض للمنتج قبل أن يصبح أصغر أو ينتقل لعمود واحد */
    /* max-width: 350px; */ /* أقصى عرض للمنتج، مفيد مع justify-content: center */
    
    flex-grow: 0;   /* تمنع العناصر من التمدد لملء الفراغ بشكل غير متناسق */
    flex-shrink: 1; /* تسمح للعناصر بالانكماش إذا لزم الأمر */

    box-sizing: border-box; /* مهم جدًا إذا كان لديك padding أو border على عناصر المنتج */
                            /* يضمن أن الـ padding والـ border لا يضيفان إلى العرض الكلي للعنصر */
}

/* لجعل التصميم متجاوبًا مع الشاشات المختلفة */
@media (max-width: 992px) { /* شاشات متوسطة كالأجهزة اللوحية */
    .product-item {
        width: calc(50% - 15px); /* عرض مناسب لعمودين, عدل القيمة حسب الـ gap */
        /* min-width: 260px; */
    }
}

@media (max-width: 768px) { /* شاشات صغيرة كالهواتف */
    .product-item {
        width: 100%; /* عرض كامل لعمود واحد */
        /* min-width: unset; */ /* أو min-width: 250px; حسب ما تفضل */
        /* max-width: 450px; */ /* يمكنك وضع حد أقصى للعرض على الهواتف إذا أردت */
    }
    /* .product-grid-display {
        justify-content: flex-start; /* يمكنك تغيير هذا إذا أردت سلوكًا مختلفًا على الهواتف */
    /* } */
}


/* في ملف css/style.css */

.section-heading {
    text-align: center;  /* هذا هو الأمر الأساسي لتوسيط النص داخل العنصر */
    width: 100%;         /* يضمن أن عنصر العنوان يأخذ العرض الكامل لمحتواه الأب، مما يسمح بتوسيط النص بشكل صحيح */
    
    /* الخصائص التالية اختيارية وقد تساعد في بعض الحالات المعقدة أو لتجاوز أنماط أخرى */
    margin-left: auto;   /* يساعد في توسيط العنصر ككتلة إذا كان له عرض محدد أصغر من حاويته */
    margin-right: auto;  /* يساعد في توسيط العنصر ككتلة */
    
    /* تأكد من إزالة أي خصائص float قد تؤثر على التموضع */
    /* float: none; */ 
    
    /* إذا كنت تشك في وجود مشاكل في الـ position، يمكنك تجربة إعادة تعيينها */
    /* position: static; */ /* أو relative حسب الحاجة */

    /* يمكنك الاحتفاظ ببقية أنماطك الحالية لـ .section-heading هنا، مثل: */
    /* margin-bottom: 30px; */
    /* font-size: 2.5rem; */ /* أو أي حجم خط تستخدمه */
    /* color: #333; */   /* أو أي لون تستخدمه */
}





/* ================================================ */
/* --- إصلاح قائمة التنقل على شاشة الهاتف --- */
/* ================================================ */

/* --- (الخطوة 1: الأنماط الافتراضية للشاشات الكبيرة - سطح المكتب) --- */

/* تأكد من أن زر الهمبرغر مخفي على الشاشات الكبيرة */
.menu-toggle {
    display: none;
    font-size: 28px; /* حجم أيقونة الهمبرغر */
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333; /* لون الأيقونة */
}

/* تأكد من أن تخطيط الهيدر أفقي */
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 15px; /* المسافة بين مبدل اللغة وزر الهمبرغر */
}

/* تأكد من أن قائمة التنقل أفقية على سطح المكتب */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* يجعل عناصر القائمة أفقية */
    flex-wrap: wrap;
    justify-content: center; /* يمكنك استخدام 'flex-end' لوضعها في اليمين */
    gap: 25px; /* المسافة بين الروابط */
}


/* --- (الخطوة 2: الأنماط المتجاوبة للشاشات الصغيرة - الهاتف) --- */

/* هذا الجزء سيتم تطبيقه فقط على الشاشات التي يقل عرضها عن 768 بكسل */
@media screen and (max-width: 768px) {
    
    /* أظهر زر الهمبرغر على شاشة الهاتف */
    .menu-toggle {
        display: block; /* إظهار الزر */
    }

    /* قم بإخفاء قائمة التنقل الرئيسية بشكل افتراضي على الهاتف */
    .main-nav {
        /* إخفاء القائمة مع تأثير حركة سلس */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;

        /* تموضع القائمة لتظهر كقائمة منسدلة فوق محتوى الصفحة */
        width: 100%;
        background-color: #ffffff; /* لون خلفية القائمة المنسدلة */
        position: absolute;
        /* اضبط هذه القيمة لتناسب ارتفاع الهيدر لديك */
        top: 85px; /* مثال: إذا كان ارتفاع الهيدر 85 بكسل */
        left: 0;
        z-index: 1000; /* للتأكد من أنها تظهر فوق العناصر الأخرى */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* ظل خفيف لمظهر أفضل */
    }
    
    /* عند النقر على زر الهمبرغر، يتم إضافة كلاس "active" بواسطة JavaScript، وعندها قم بإظهار القائمة */
    .main-nav.active {
        max-height: 500px; /* يجب أن تكون القيمة أكبر من ارتفاع القائمة الفعلي */
    }

    /* حول القائمة إلى قائمة عمودية */
    .main-nav ul {
        flex-direction: column; /* اجعل الروابط مكدسة عموديًا */
        align-items: center;    /* وسط الروابط */
        gap: 0;                 /* أزل المسافات الأفقية */
        width: 100%;
    }

    .main-nav ul li {
        width: 100%;
        text-align: center;
    }

    /* تعديل تصميم الروابط لتناسب القائمة العمودية */
    .main-nav ul li a {
        padding: 15px 10px; /* زيادة مساحة النقر */
        border-bottom: 1px solid #e9e9e9; /* إضافة خط فاصل بين العناصر */
        width: 100%;
        border-top: none; /* إزالة أي حدود علوية قد تكون موجودة من تصميم سطح المكتب */
    }
    
    .main-nav ul li:last-child a {
        border-bottom: none; /* إزالة الخط الفاصل من العنصر الأخير */
    }
}




/* تنسيقات قائمة وصف المنتج */
.product-description-list {
    list-style-type: disc; /* استخدام النقاط العادية للقائمة */
    margin: 15px 0;
    padding: 0;
    font-size: 15px; /* حجم الخط للوصف */
    color: #555; /* لون الخط */
    min-height: 100px; /* ارتفاع أدنى للحفاظ على تناسق الكروت */
}

/* تنسيق عناصر القائمة */
.product-description-list li {
    margin-bottom: 8px; /* مسافة بين كل نقطة */
}

/* تعديل المسافة البادئة واتجاه النص حسب اتجاه الصفحة */
[dir="rtl"] .product-description-list {
    padding-right: 20px; /* مسافة بادئة من اليمين للغة العربية والكردية */
    text-align: right;
}

[dir="ltr"] .product-description-list {
    padding-left: 20px; /* مسافة بادئة من اليسار للغة الإنجليزية */
    text-align: left;
}





/* تنسيقات صفحة تواصل معنا */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* عمودين، النموذج أعرض قليلاً */
    gap: 40px; /* مسافة بين العمودين */
    align-items: start;
}

.contact-info h2, .contact-form-area h2 {
    margin-bottom: 20px;
}

.contact-info p, .contact-info a {
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    line-height: 1.6;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-person {
    margin: 25px 0;
}

.contact-person h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
    color: #005a9c; /* لون مميز للمسمى الوظيفي */
}

.contact-person p {
    margin: 4px 0;
}

.map-section .container h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* تنسيق متجاوب لشاشات الهاتف */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* تحويل إلى عمود واحد */
    }
}