/* ===== Modern About Us Page Styles ===== */

.modern-about-page {
    background: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.about-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
}

.about-hero-text {
    text-align: center;
    color: white;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.95;
}

.about-hero-tagline {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Content Sections */
.about-content-section,
.about-vision-section {
    padding: 100px 0;
    background: white;
}

.about-vision-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content-grid.reverse {
    direction: rtl;
}

.about-content-grid.reverse > * {
    direction: ltr;
}

.about-content-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

.about-content-text {
    padding: 20px 0;
}

.about-section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-section-tag.centered {
    display: block;
    text-align: center;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-section-title.centered {
    text-align: center;
}

.about-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
    max-width: 600px;
}

.about-section-subtitle.centered {
    text-align: center;
    margin: 0 auto 50px;
}

.about-section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

/* Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-stat-item {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

/* Vision Points */
.about-vision-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.about-vision-point {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #555;
}

.about-vision-point i {
    font-size: 1.3rem;
    color: #667eea;
    flex-shrink: 0;
}

/* Features Section */
.about-features-section {
    padding: 100px 0;
    background: white;
}

.about-section-header {
    margin-bottom: 60px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.about-feature-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.about-feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.about-feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 126, 97, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-cta-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.about-cta-thanks {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 40px;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-cta-btn.primary {
    background: white;
    color: #667eea;
}

.about-cta-btn.primary:hover {
    background: #ff7e61;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.about-cta-btn.secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-cta-btn i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2.8rem;
    }

    .about-hero-subtitle {
        font-size: 1.5rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content-grid.reverse {
        direction: ltr;
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-section-title {
        font-size: 2.2rem;
    }

    .about-cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .about-hero-tagline {
        font-size: 1rem;
    }

    .about-content-section,
    .about-vision-section,
    .about-features-section,
    .about-cta-section {
        padding: 60px 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-section-title {
        font-size: 1.8rem;
    }

    .about-cta-title {
        font-size: 1.8rem;
    }

    .about-cta-description {
        font-size: 1rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .about-cta-btn {
        justify-content: center;
    }

    .about-image-decoration {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -15px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-section-description {
        font-size: 1rem;
    }

    .about-stat-number {
        font-size: 2rem;
    }

    .about-feature-card {
        padding: 30px 20px;
    }

    .about-cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
