/* ABOUT PAGE CSS - Modern Revamp */
/* Same color scheme and design philosophy as home page */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f8f5fa 0%, #f0ebf5 100%);
    padding: 60px 32px 50px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(51, 16, 66, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 56px;
    color: #331042;
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-stat {
    background: white;
    padding: 28px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(51, 16, 66, 0.06);
    transition: all 0.3s ease;
    min-width: 180px;
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 16, 66, 0.12);
}

.about-stat-number {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #331042, #4d1963);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.about-stat-label {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

/* Team Illustration */
.team-illustration {
    position: relative;
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(51, 16, 66, 0.12);
}

.team-member {
    position: absolute;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.team-member:nth-child(2) {
    animation-delay: 0.5s;
}

.team-member:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.member-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #331042, #4d1963);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    margin: 0 auto 12px;
    box-shadow: 0 8px 24px rgba(51, 16, 66, 0.2);
}

.member-badge {
    background: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #331042;
    border: 2px solid #331042;
    text-align: center;
    white-space: nowrap;
}

/* Mission & Vision */
.mission-vision {
    padding: 40px 32px;
    background: white;
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mission-card,
.vision-card,
.values-card {
    background: #f8f9fb;
    padding: 48px 32px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.mission-card::before,
.vision-card::before,
.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #331042, #4d1963);
}

.vision-card::before {
    background: linear-gradient(90deg, #a78bfa, #8b5cf6);
}

.values-card::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(51, 16, 66, 0.12);
}

.mission-icon,
.vision-icon,
.values-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #331042, #4d1963);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(51, 16, 66, 0.2);
}

.vision-icon {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.values-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-size: 24px;
    color: #331042;
    margin-bottom: 16px;
    font-weight: 700;
}

.mission-card p,
.vision-card p,
.values-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 16px;
}

/* Our Process */
.our-process {
    padding: 40px 32px;
    background: #f8f9fb;
}

.process-steps {
    max-width: 1100px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.process-step {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(51, 16, 66, 0.06);
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(51, 16, 66, 0.12);
    border-color: #331042;
}

.step-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #331042, #4d1963);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(51, 16, 66, 0.2);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    color: #331042;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* Why Choose Detailed */
.why-choose-detailed {
    padding: 40px 32px;
    background: white;
}

.difference-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.difference-card {
    background: #f8f9fb;
    padding: 40px 28px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.difference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(51, 16, 66, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.difference-card:hover {
    border-color: #331042;
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(51, 16, 66, 0.12);
}

.difference-card:hover::before {
    opacity: 1;
}

.difference-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #331042, #4d1963);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(51, 16, 66, 0.2);
    transition: all 0.3s ease;
}

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

.difference-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #331042;
    font-weight: 700;
}

.difference-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

/* About CTA */
.about-cta {
    padding: 40px 32px;
    background: white;
    text-align: center;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 44px;
    color: #331042;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.about-cta p {
    color: #64748b;
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

    .about-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .about-hero-content h1 {
        font-size: 44px;
    }

    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 20px 60px;
        margin-top: 72px;
    }

    .about-hero-content h1 {
        font-size: 34px;
    }

    .about-hero-subtitle {
        font-size: 17px;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .about-stat {
        min-width: 100%;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }



    .about-cta h2 {
        font-size: 32px;
    }
}