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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f9 100%);
}

/* المحتوى الرئيسي */
.main-content {
    width: 100%;
    max-width: 540px;
    margin-top: 10px;
}

/* قسم معلومات الشركة */
.company-section {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(61, 35, 99, 0.1);
    border-top: 6px solid #3d2363;
    text-align: center;
}

/* شعار الشركة الكبير */
.company-logo-container {
    width: 220px;
    height: 220px;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(61, 35, 99, 0.15);
    border: 8px solid #f8f9fa;
}

.company-logo-main {
    width: 100%;
    height: auto;
    max-width: 180px;
    object-fit: contain;
}

/* معلومات الاتصال على سطر واحد */
.company-contact-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-row-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    color: #555;
    font-size: 17px;
    padding: 14px 20px;
    background-color: #f8f9ff;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid #e6e2ea;
}

.contact-row-item:hover {
    background-color: #f0f2ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(61, 35, 99, 0.12);
    border-color: #f58322;
}

.contact-row-icon {
    color: #f58322;
    width: 24px;
    text-align: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-row-text {
    font-weight: 500;
    color: #3d2363;
    flex-grow: 1;
}

/* قسم Mission & Vision */
.mission-vision-section {
    background-color: #f8f9ff;
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid #3d2363;
    text-align: left;
}

.section-subtitle {
    font-size: 22px;
    color: #3d2363;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #f58322, #3d2363);
    border-radius: 2px;
}

.mission-vision-item {
    margin-bottom: 25px;
}

.mission-vision-item:last-child {
    margin-bottom: 0;
}

.mv-title {
    font-size: 18px;
    color: #f58322;
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-title::before {
    content: '✓';
    background-color: #3d2363;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mv-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    padding-left: 10px;
    border-left: 3px solid #e6e2ea;
    padding-left: 15px;
}

/* قسم روابط السوشيال ميديا */
.links-section {
    width: 100%;
}

.section-title {
    font-size: 22px;
    color: #3d2363;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #f58322, #3d2363);
    border-radius: 2px;
}

.link-item {
    margin-bottom: 18px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background-color: white;
    border-radius: 14px;
    text-decoration: none;
    color: #3d2363;
    transition: all 0.3s ease;
    border: 2px solid #e6e2ea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-4px);
    border-color: #f58322;
    box-shadow: 0 10px 25px rgba(245, 131, 34, 0.15);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

/* ألوان منصات السوشيال ميديا */
.instagram-bg {
    background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C);
}

.facebook-bg {
    background-color: #1877F2;
}

.tiktok-bg {
    background-color: #000000;
}

.snapchat-bg {
    background-color: #FFFC00;
    color: #000000;
}

.youtube-bg {
    background-color: #FF0000;
}

.linkedin-bg {
    background-color: #0A66C2;
}

.x-bg {
    background-color: #000000;
    padding: 10px;
}

.website-bg {
    background: linear-gradient(135deg, #3d2363, #5a3a8a);
}

/* تنسيق صورة X */
.x-image {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.social-text {
    flex-grow: 1;
    font-size: 18px;
    font-weight: 600;
}

.social-link .arrow {
    color: #d1c9e0;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-link:hover .arrow {
    color: #f58322;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .company-section {
        padding: 30px 20px 25px;
    }
    
    .company-logo-container {
        width: 200px;
        height: 200px;
        margin-bottom: 25px;
    }
    
    .company-logo-main {
        max-width: 160px;
    }
    
    .contact-row-item {
        font-size: 16px;
        padding: 12px 18px;
    }
    
    .mission-vision-section {
        padding: 20px;
    }
    
    .social-link {
        padding: 18px 20px;
    }
    
    .x-image {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }
    
    .company-section {
        padding: 25px 18px 20px;
        margin-bottom: 30px;
    }
    
    .company-logo-container {
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
    }
    
    .company-logo-main {
        max-width: 140px;
    }
    
    .contact-row-item {
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .contact-row-icon {
        font-size: 18px;
        width: 20px;
    }
    
    .mission-vision-section {
        padding: 18px;
    }
    
    .mv-title {
        font-size: 17px;
    }
    
    .mv-text {
        font-size: 14px;
    }
    
    .social-link {
        padding: 16px 18px;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
        margin-right: 16px;
        font-size: 20px;
    }
    
    .social-text {
        font-size: 16px;
    }
    
    .x-image {
        width: 24px;
        height: 24px;
    }
    
    .section-title, .section-subtitle {
        font-size: 20px;
        margin-bottom: 25px;
    }
}