﻿/* Modern About Page Styles */
.about-hero {
    text-align: center;
    margin-bottom: 1rem;
    animation: slideInDown 0.8s ease-out;
}

.hero-content {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 3rem;
    margin: 0 auto;
}

 

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* About Section Styles */
.about-section-modern {
    margin-bottom: 4rem;
    animation: slideInUp 0.8s ease-out;
}

.section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.3s ease;
}

    .section-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.3);
    }

    .section-container.reverse {
        direction: rtl;
    }

        .section-container.reverse .section-content {
            direction: ltr;
        }

.section-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.section-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-container:hover .section-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-container:hover .image-overlay {
    opacity: 1;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .play-btn:hover {
        background: white;
        transform: scale(1.1);
        color: var(--primary-color);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

/* Content Styles */
.section-content {
    color: white;
}

    .section-content.full-width {
        grid-column: 1 / -1;
        text-align: center;
    }

.content-wrapper {
    position: relative;
}

.content-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.section-content.full-width .content-header {
    justify-content: center;
}

.content-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-success);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    box-shadow: var(--shadow-colored);
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

    .content-body h1, .content-body h2, .content-body h3,
    .content-body h4, .content-body h5, .content-body h6 {
        color: white;
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .content-body p {
        margin-bottom: 1.5rem;
    }

    .content-body ul, .content-body ol {
        padding-left: 2rem;
        margin-bottom: 1.5rem;
    }

        .content-body ul li, .content-body ol li {
            margin-bottom: 0.5rem;
        }

    .content-body blockquote {
        border-left: 4px solid #4ade80;
        padding-left: 1.5rem;
        margin: 2rem 0;
        font-style: italic;
        background: rgba(255, 255, 255, 0.1);
        padding: 1.5rem;
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }

    .content-body strong {
        color: white;
        font-weight: 600;
    }

    .content-body a {
        color: #4ade80;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .content-body a:hover {
            color: white;
            text-decoration: underline;
        }

.content-actions {
    margin-top: 2rem;
}

/* Buttons */
.btn-modern-primary {
    padding: 1rem 2rem;
    background: var(--default-button);
    
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: var(--default-button-shadow)
}

    .btn-modern-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--default-button-shadow-hover);
    }

.btn-modern-secondary {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

    .btn-modern-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        color: white;
    }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    color: white;
}

.empty-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
}

.empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    margin-top: 4rem;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.cta-content {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

    .cta-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-colored);
}

.cta-text {
    color: white;
}

    .cta-text h4 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .cta-text p {
        margin: 0;
        opacity: 0.9;
    }

.cta-actions {
    display: flex;
    gap: 1rem;
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

        .section-container.reverse {
            direction: ltr;
        }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content, .section-container, .cta-content, .empty-state {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .content-title {
        font-size: 1.5rem;
    }

    .section-img {
        height: 250px;
    }

    .content-header {
        flex-direction: column;
        text-align: center;
    }

    .content-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}
