/* About Page Styles - Modern & Beautiful */

/* About Hero */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #048bba 0%, #0aa5d9 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 6rem;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

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

.about-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
}

/* Story Section */
.about-story {
    padding: 8rem 2rem;
    background: var(--bg-color);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
    height: 600px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
}

/* Founder Section */
.about-founder {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-color) 100%);
}

.founder-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 6rem;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

.founder-image-wrapper {
    position: sticky;
    top: 100px;
}

.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.founder-decoration {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.25;
}

.founder-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 60px;
}

.founder-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 3px;
    background: var(--primary-color);
}

.founder-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.founder-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--secondary-text);
    margin-bottom: 3rem;
}

.founder-bio p {
    margin-bottom: 1.5rem;
}

.founder-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.credential-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(4, 139, 186, 0.1);
}

.credential-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.credential-item span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

/* Mission & Vision */
.about-mission-vision {
    padding: 8rem 2rem;
    background: var(--bg-color);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.mv-card {
    padding: 4rem 3rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.mission-card {
    background: linear-gradient(135deg, #048bba 0%, #0aa5d9 100%);
    color: #ffffff;
}

.vision-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.mv-card:hover::before {
    transform: scale(1.5);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.mv-icon {
    margin-bottom: 2rem;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.mv-icon svg {
    color: #ffffff;
}

.mv-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.mv-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* Core Values */
.about-values {
    padding: 8rem 2rem;
    background: var(--bg-secondary);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header-center h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--secondary-text);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.value-card {
    padding: 3rem 2.5rem;
    background: var(--bg-color);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(4, 139, 186, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--accent-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
}

.value-card:hover .value-icon::after {
    opacity: 0.2;
}

.value-icon svg {
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon svg {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--secondary-text);
}

/* Stats Section */
.about-stats {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #048bba 0%, #0aa5d9 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.stat-number-large {
    display: block;
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-label-large {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* CTA Section */
.about-cta {
    padding: 8rem 2rem;
    background: var(--bg-color);
}

.cta-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(4, 139, 186, 0.05) 100%);
    border-radius: 30px;
    border: 2px solid var(--primary-light);
}

.cta-content-center h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content-center p {
    font-size: 1.3rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1.4rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary-large {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(4, 139, 186, 0.3);
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-large:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 139, 186, 0.4);
}

.btn-secondary-large {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary-large:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(4, 139, 186, 0.2);
}

/* Mobile Responsive */
@media (max-width: 1024px) {

    .story-grid,
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .founder-image-wrapper {
        position: relative;
        top: 0;
    }

    .founder-credentials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 2rem 4rem;
        min-height: 50vh;
    }

    .about-story,
    .about-founder,
    .about-mission-vision,
    .about-values,
    .about-stats,
    .about-cta {
        padding: 5rem 2rem;
    }

    .story-image,
    .founder-image img {
        height: 400px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-card {
        min-height: auto;
        padding: 3rem 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .cta-content-center {
        padding: 3rem 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid-large {
        grid-template-columns: 1fr;
    }

    .stat-number-large {
        font-size: 3.5rem;
    }

    .founder-credentials {
        gap: 1rem;
    }

    .credential-item {
        padding: 1.2rem;
    }
}