/* Reset وإعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
    direction: rtl;
    text-align: right;
}

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

/* الألوان الأساسية للشركة */
:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #ccfbf1;
    --secondary: #d97706;
    --secondary-dark: #b45309;
    --dark: #1f2937;
    --gray: #6b7280;
    --light: #f3f4f6;
    --white: #ffffff;
}

/* شريط التنقل */
nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 2.5rem;
    color: var(--primary);
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* القسم الرئيسي Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1600');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 4rem 0;
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* أزرار */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* قسم الرؤية والرسالة */
.vision-mission {
    padding: 5rem 0;
    background: var(--white);
}

.vision-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-card {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vision-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* رأس القسم */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* الخدمات */
.featured-services {
    padding: 5rem 0;
    background: var(--light);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover i {
    transform: translateX(-5px);
}

.read-more i {
    transition: transform 0.3s;
}

/* المشاريع */
.projects-preview {
    padding: 5rem 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1rem;
    color: white;
    font-weight: 600;
}

.project-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.2rem;
}

.project-card p {
    padding: 0 1rem 1rem;
    color: var(--gray);
}

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

/* الشركاء */
.partners {
    padding: 4rem 0;
    background: var(--light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.partner-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.partner-logo i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.partner-logo span {
    display: block;
    font-weight: 500;
}

/* قسم التواصل السريع */
.quick-contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.contact-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-banner .cta-button {
    background: var(--white);
    color: var(--primary);
}

.contact-banner .cta-button:hover {
    background: var(--secondary);
    color: var(--white);
}

/* التذييل */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary);
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
}

.footer-logo small {
    font-size: 0.7rem;
    opacity: 0.8;
}

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

.social-links a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-services li,
.footer-contact li {
    margin-bottom: 0.7rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary);
    padding-right: 5px;
}

.footer-contact li i {
    width: 25px;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* صفحة من نحن */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-story {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team {
    padding: 5rem 0;
    background: var(--light);
}

.team h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.team-card {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.team-card p {
    color: var(--primary);
    font-weight: 500;
}

/* التجاوب مع الجوال */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* تأثيرات الحركة */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
/* تنسيقات صفحة الاتصال */

/* بطاقات الاتصال */
.contact-info-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: var(--white);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-card-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 0.3rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--secondary);
}

.contact-card small {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
    margin-top: 0.5rem;
}

/* نموذج الاتصال */
.contact-form-section {
    padding: 5rem 0;
    background: var(--light);
}

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

.contact-form-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.text-right {
    text-align: right;
}

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

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

.contact-form label i {
    color: var(--primary);
    margin-left: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-message {
    margin-top: 1rem;
}

.alert {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* الخريطة */
.contact-map-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.map-container h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.3rem;
}

.map-wrapper {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-detail i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.location-detail strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.location-detail p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* الأسئلة الشائعة */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-question i:first-child {
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-question h4 {
    flex: 1;
    font-size: 1rem;
    margin: 0;
}

.faq-question .fa-chevron-down {
    transition: transform 0.3s;
    color: var(--gray);
}

.faq-answer {
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid #e2e8f0;
    color: var(--gray);
    line-height: 1.8;
}

/* أزرار التواصل السريع */
.quick-contact-footer {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 250px;
}

.quick-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.quick-btn i {
    font-size: 2rem;
}

.quick-btn small {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
}

.quick-btn span {
    font-weight: 600;
    color: var(--dark);
}

.phone-btn i { color: var(--primary); }
.whatsapp-btn i { color: #25D366; }
.email-btn i { color: #EA4335; }

/* تجاوب الجوال */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}
/* تنسيقات صفحة المشاريع */

/* المشروع الرئيسي */
.main-project {
    padding: 5rem 0;
    background: var(--white);
}

.main-project-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--secondary), #b45309);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.main-project-header {
    text-align: center;
    margin-bottom: 2rem;
}

.main-project-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.project-location {
    color: var(--primary);
    font-size: 1.1rem;
}

.project-location i {
    margin-left: 0.3rem;
}

.main-project-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.main-project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.main-project-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--gray);
    line-height: 1.8;
}

.main-project-description p {
    margin-bottom: 1rem;
}

/* مكونات المشروع */
.project-components {
    margin: 3rem 0;
}

.project-components h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
}

.project-components h3 i {
    color: var(--primary);
    margin-left: 0.5rem;
}

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

.component-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.component-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.component-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.component-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.component-card p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.component-features {
    list-style: none;
}

.component-features li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.component-features li i {
    color: var(--primary);
    margin-left: 0.5rem;
}

/* إحصائيات المشروع */
.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.project-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    color: white;
}

.project-stats .stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

/* معرض الصور */
.project-gallery {
    padding: 5rem 0;
    background: var(--light);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
    transition: bottom 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay i {
    font-size: 1.2rem;
}

/* مميزات المجمع */
.project-features {
    padding: 5rem 0;
    background: var(--white);
}

.features-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
}

.features-text {
    padding: 2rem;
}

.features-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.features-text ul {
    list-style: none;
}

.features-text li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features-text li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.features-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.features-cta h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.features-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* مشاريع أخرى */
.other-projects {
    padding: 5rem 0;
    background: var(--light);
}

.other-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.other-project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.other-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.other-project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.other-project-info {
    padding: 1rem;
    position: relative;
}

.other-project-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.other-project-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.project-year {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* خريطة الموقع */
.project-location-map {
    padding: 5rem 0;
    background: var(--white);
}

.location-map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.location-address {
    display: flex;
    gap: 1rem;
    background: var(--light);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.location-address i {
    font-size: 1.5rem;
    color: var(--primary);
}

.distance-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray);
}

.distance-item i {
    width: 25px;
    color: var(--primary);
}

/* دعوة للاستثمار */
.invest-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.invest-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    color: white;
}

.invest-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.invest-text p {
    opacity: 0.8;
}

/* نافذة عرض الصور المنبثقة */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.modal-content p {
    text-align: center;
    color: white;
    margin-top: 1rem;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* تجاوب الجوال */
@media (max-width: 768px) {
    .components-grid {
        grid-template-columns: 1fr;
    }
    
    .features-highlight {
        grid-template-columns: 1fr;
    }
    
    .location-map-content {
        grid-template-columns: 1fr;
    }
    
    .main-project-header h2 {
        font-size: 1.8rem;
    }
    
    .project-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }
    
    .invest-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
    }
}
/* تنسيقات صفحة الخدمات */

/* مقدمة الخدمات */
.services-intro {
    padding: 4rem 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.intro-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.intro-stats {
    display: flex;
    gap: 2rem;
    background: var(--light);
    padding: 1.5rem;
    border-radius: 20px;
}

.stat-box {
    text-align: center;
    min-width: 80px;
}

.stat-box .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-box .stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

/* بطاقات الخدمات الرئيسية */
.services-main {
    padding: 5rem 0;
    background: var(--light);
}

.services-grid-full {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-full-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-full-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-full-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-full-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-full-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.service-full-content > p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* لماذا نحن */
.why-us {
    padding: 5rem 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* شهادات العملاء */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-light), var(--white));
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.testimonial-card i.fa-quote-right {
    font-size: 2rem;
    color: var(--primary-light);
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.5;
}

.testimonial-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h4 {
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--primary);
}

/* أسئلة شائعة للخدمات */
.services-faq {
    padding: 5rem 0;
    background: var(--white);
}

.faq-services-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-service-item {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
}

.faq-service-item .faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-service-item .faq-question:hover {
    background: var(--primary-light);
}

.faq-service-item .faq-question i:first-child {
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-service-item .faq-question span {
    flex: 1;
    font-weight: 500;
}

.faq-service-item .faq-question .fa-chevron-down {
    transition: transform 0.3s;
    color: var(--gray);
}

.faq-service-item .faq-answer {
    padding: 0 1.5rem 1rem 1.5rem;
    color: var(--gray);
    line-height: 1.6;
    border-top: 1px solid #e2e8f0;
    background: var(--white);
}

/* قسم الدعوة للتواصل */
.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--white);
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary-call {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.3s;
}

.btn-secondary-call:hover {
    background: var(--white);
    color: var(--primary);
}

/* تجاوب الجوال */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .intro-stats {
        justify-content: center;
    }
    
    .service-full-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-full-icon {
        margin: 0 auto;
    }
    
    .service-features-list {
        grid-template-columns: 1fr;
        text-align: right;
    }
    
    .feature-item {
        justify-content: flex-start;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}
/* تنسيقات صفحة من نحن */

/* قصتنا */
.our-story {
    padding: 5rem 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-tag-small {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.story-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.story-stat {
    text-align: center;
}

.story-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.story-stat .stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* الرؤية والرسالة والقيم */
.vision-mission-values {
    padding: 5rem 0;
    background: var(--light);
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vmv-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.3s;
}

.vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.vmv-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.vmv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vmv-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* الجدول الزمني */
.journey {
    padding: 5rem 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-light);
    transform: translateX(50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.timeline-item:nth-child(even) {
    margin-right: auto;
    margin-left: 0;
    justify-content: flex-start;
}

.timeline-dot {
    position: absolute;
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    top: 10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -8px;
}

.timeline-year {
    position: absolute;
    right: -80px;
    top: 0;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

.timeline-item:nth-child(even) .timeline-year {
    right: auto;
    left: -80px;
}

.timeline-content {
    background: var(--light);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    width: 80%;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* فريق القيادة */
.leadership-team {
    padding: 5rem 0;
    background: var(--light);
}

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

.team-member {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transition: bottom 0.3s;
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.member-social a:hover {
    background: var(--primary);
    color: white;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

.member-title {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.member-bio {
    padding: 0 1rem 1rem;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* الإنجازات */
.achievements {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.achievements .section-header h2,
.achievements .section-header p {
    color: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.3rem;
}

.achievement-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* الشركاء */
.partners-about {
    padding: 5rem 0;
    background: var(--white);
}

.partners-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: var(--light);
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.partner-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.partner-card span {
    font-weight: 500;
    color: var(--dark);
}

/* الشهادات */
.certifications {
    padding: 3rem 0;
    background: var(--light);
}

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

.cert-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
}

.cert-card i {
    font-size: 2rem;
    color: var(--primary);
}

.cert-card h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.cert-card p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* لماذا تختارنا */
.why-choose-us {
    padding: 5rem 0;
    background: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-choose-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.why-choose-text li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.why-choose-text li i {
    color: var(--primary);
}

.why-choose-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.why-choose-video img {
    width: 100%;
    height: auto;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-icon i {
    font-size: 1.5rem;
    color: white;
}

.play-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* دعوة للانضمام */
.join-us {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-light), var(--white));
}

.join-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.join-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.join-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.join-text p {
    color: var(--gray);
}

/* تجاوب الجوال */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .vmv-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        right: 20px;
    }
    
    .timeline-item {
        width: 100%;
        justify-content: flex-start;
        padding-right: 50px;
    }
    
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }
    
    .timeline-dot {
        right: 12px;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        right: 12px;
        left: auto;
    }
    
    .timeline-year {
        position: static;
        margin-bottom: 0.3rem;
        display: inline-block;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        position: static;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
    }
    
    .join-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
}