/* About Page Styles */
.about-page-container {
    padding: 40px 0;
    min-height: 70vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-primary-color, #007bff);
    margin-bottom: 15px;
    font-family: var(--theme-font-family, 'Cairo', sans-serif);
}

.page-title i {
    margin-left: 15px;
    color: var(--theme-secondary-color, #6c757d);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--theme-text-color, #6c757d);
    margin-bottom: 0;
    font-weight: 400;
}

.about-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.info-section {
    margin-bottom: 40px;
}

.info-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--theme-primary-color, #007bff);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--theme-primary-color, #007bff);
    font-family: var(--theme-font-family, 'Cairo', sans-serif);
}

.section-title i {
    margin-left: 10px;
    color: var(--theme-secondary-color, #6c757d);
}

.description {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-right: 4px solid var(--theme-primary-color, #007bff);
    margin-bottom: 30px;
}

.description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--theme-text-color, #495057);
    margin: 0;
}

.info-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--theme-primary-color, #007bff);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme-primary-color, #007bff), var(--theme-secondary-color, #6c757d));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--theme-primary-color, #007bff);
    margin-bottom: 10px;
    font-family: var(--theme-font-family, 'Cairo', sans-serif);
}

.card-content p {
    font-size: 1rem;
    color: var(--theme-text-color, #6c757d);
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--theme-primary-color, #007bff);
    color: white;
    transform: translateX(-5px);
}

.contact-item i {
    font-size: 1.2rem;
    margin-left: 15px;
    color: var(--theme-primary-color, #007bff);
    transition: color 0.3s ease;
}

.contact-item:hover i {
    color: white;
}

.contact-item span {
    font-size: 1rem;
    font-weight: 500;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--theme-primary-color, #007bff);
}

.feature-item i {
    font-size: 3rem;
    color: var(--theme-primary-color, #007bff);
    margin-bottom: 20px;
    display: block;
}

.feature-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--theme-primary-color, #007bff);
    margin-bottom: 15px;
    font-family: var(--theme-font-family, 'Cairo', sans-serif);
}

.feature-item p {
    font-size: 1rem;
    color: var(--theme-text-color, #6c757d);
    line-height: 1.6;
    margin: 0;
}

.no-data-message {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.no-data-message i {
    font-size: 4rem;
    color: var(--theme-primary-color, #007bff);
    margin-bottom: 30px;
    display: block;
}

.no-data-message h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--theme-primary-color, #007bff);
    margin-bottom: 20px;
    font-family: var(--theme-font-family, 'Cairo', sans-serif);
}

.no-data-message p {
    font-size: 1.2rem;
    color: var(--theme-text-color, #6c757d);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-section {
    background: linear-gradient(135deg, var(--theme-primary-color, #007bff), var(--theme-secondary-color, #6c757d));
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--theme-font-family, 'Cairo', sans-serif);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    background: white;
    color: var(--theme-primary-color, #007bff);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    background: #f8f9fa;
    color: var(--theme-primary-color, #007bff);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-page-container {
        padding: 20px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 25px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .info-card {
        margin-bottom: 20px;
    }
    
    .feature-item {
        margin-bottom: 20px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .description {
        padding: 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .feature-item i {
        font-size: 2.5rem;
    }
    
    .feature-item h4 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-section {
    animation: fadeInUp 0.6s ease forwards;
}

.info-section:nth-child(1) { animation-delay: 0.1s; }
.info-section:nth-child(2) { animation-delay: 0.2s; }
.info-section:nth-child(3) { animation-delay: 0.3s; }
.info-section:nth-child(4) { animation-delay: 0.4s; }

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0, 123, 255, 0.3);
    border-top: 3px solid var(--theme-primary-color, #007bff);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
