/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    background: var(--light-gray);
    padding: 40px 0 30px;
    color: var(--text-dark);
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark-blue);
}

.about-hero-title .highlight {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: rgba(23, 195, 178, 0.3);
    text-underline-offset: 8px;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 35px 0;
    background: var(--light-gray);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vm-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.vm-icon {
    margin-bottom: 1.5rem;
    width: 90px;
    height: 90px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(0, 200, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
}

.vm-icon i {
    width: 44px;
    height: 44px;
    stroke-width: 1.5px;
}

.vm-card h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.vm-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.vm-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Story Section */
.our-story {
    padding: 35px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.story-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.story-highlight {
    background: rgba(23, 195, 178, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.story-highlight h4 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.story-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.story-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.story-tagline {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.story-image {
    text-align: center;
}

.story-illustration {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* Team Section */
.team {
    padding: 35px 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.member-photo {
    height: 320px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
}

.team-photo-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    border: 5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover .team-photo-img {
    transform: scale(1.08);
    filter: grayscale(0%);
    border-color: var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Fallback for placeholder (if needed) */
.photo-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.4);
}

.initials {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
}

.member-info {
    padding: 2rem;
}

.member-name {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.member-social {
    margin-top: 1.5rem;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #0077B5;
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.linkedin-btn:hover {
    background: #005885;
    transform: scale(1.05);
}

.linkedin-btn svg {
    width: 20px;
    height: 20px;
}

/* Values Section */
.values {
    padding: 35px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-icon {
    margin-bottom: 1rem;
    width: 75px;
    height: 75px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(0, 200, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
}

.value-icon i {
    width: 36px;
    height: 36px;
    stroke-width: 1.5px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* About CTA Section */
.about-cta {
    background: var(--white);
    color: var(--text-dark);
    padding: 35px 0 50px;
    text-align: center;
}

.about-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.about-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--medium-gray);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary-color);
    position: relative;
}

.nav-links a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        order: -1;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-large {
        width: 100%;
        max-width: 300px;
    }
}
