/* استایل کلی صفحه */
.about-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* استایل کارت‌ها */
.card {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* استایل هدر */
.header-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 12px;
}

.header-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.header-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* استایل محتوا */
.content-section {
    background: white;
    border-radius: 12px;
}

.content-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
    color: #333;
}

.content-text p {
    margin-bottom: 1.2rem;
}

/* استایل نماد اعتماد */
.trust-section {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 12px;
}

.trust-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.trust-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* استایل اطلاعات تماس */
.contact-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 12px;
}

.contact-icon {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 0.8rem;
}

.contact-item {
    padding: 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    border-left: 3px solid #007bff;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* استایل شبکه‌های اجتماعی */
.social-section {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border-radius: 12px;
}

.social-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.btn-lg {
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    min-width: 110px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary,
.btn-outline-danger,
.btn-outline-success {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-primary:hover,
.btn-outline-danger:hover,
.btn-outline-success:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 1200px) {
    .header-title {
        font-size: 3rem;
    }
    
    .content-text {
        font-size: 1.2rem;
    }
    
    .btn-lg {
        min-width: 130px;
        padding: 1rem 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .header-title {
        font-size: 2.2rem;
    }
    
    .content-text {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        min-width: 120px;
        padding: 0.9rem 1.3rem;
    }
}

@media (max-width: 767px) {
    .header-title {
        font-size: 1.8rem;
    }
    
    .header-icon {
        font-size: 2.5rem;
    }
    
    .content-icon {
        font-size: 2rem;
    }
    
    .trust-icon {
        font-size: 2.5rem;
    }
    
    .trust-title {
        font-size: 1.6rem;
    }
    
    .btn-lg {
        min-width: 100px;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .d-flex.gap-4 {
        gap: 0.8rem !important;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-item {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .content-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .card-body {
        padding: 1.2rem !important;
    }
}

@media (max-width: 576px) {
    .header-title {
        font-size: 1.6rem;
    }
    
    .header-icon {
        font-size: 2rem;
    }
    
    .content-icon {
        font-size: 1.8rem;
    }
    
    .trust-icon {
        font-size: 2rem;
    }
    
    .trust-title {
        font-size: 1.4rem;
    }
    
    .btn-lg {
        min-width: 80px;
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .d-flex.gap-4 {
        gap: 0.5rem !important;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-item {
        padding: 0.5rem;
    }
    
    .card-body {
        padding: 1rem !important;
    }
}
