/* استایل‌های عمومی */
.mapna-company-single {
    line-height: 1.6;
    color: #333;
}

.mapna-company-single .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2c5aa0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #2c5aa0;
}

/* هدر شرکت */
.company-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6b 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.company-header-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.company-logo {
    flex: 0 0 200px;
}

.company-logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.company-basic-info {
    flex: 1;
    min-width: 300px;
}

.company-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.company-excerpt {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
}

/* اطلاعات تماس */
.company-contact-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-content h3 {
    color: #2c5aa0;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-text {
    margin: 5px 0;
    color: #666;
}

.contact-link {
    color: #2c5aa0;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* معرفی جامع */
.company-full-intro {
    padding: 60px 0;
}

.intro-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.8;
    font-size: 16px;
}

/* دستاوردها */
.company-achievements {
    padding: 60px 0;
    background: #f8f9fa;
}

.achievements-list {
    display: grid;
    gap: 15px;
}

.achievement-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(10px);
}

.achievement-item i {
    color: #28a745;
    font-size: 18px;
}

/* استانداردها */
.company-standards {
    padding: 60px 0;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.standard-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.standard-item:hover {
    transform: translateY(-5px);
}

.standard-image {
    margin-bottom: 20px;
}

.standard-image img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
}

.standard-title {
    color: #2c5aa0;
    font-size: 16px;
    line-height: 1.5;
}

/* پروژه‌ها */
.company-projects {
    padding: 60px 0;
    background: #f8f9fa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 20px;
}

.project-title {
    margin-bottom: 10px;
}

.project-title a {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 18px;
}

.project-title a:hover {
    color: #1e3a6b;
}

.project-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* گالری */
.company-gallery {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .company-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .company-logo {
        flex: 0 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .company-title {
        font-size: 28px;
    }
}