/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* About Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    gap: 0;
    margin-top: 80px;
}

.about-hero-content {
    padding: 4rem 2rem;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.about-hero-text {
    max-width: 500px;
}

.about-hero-image {
    overflow: hidden;
    height: calc(100vh - 80px);
}

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

.hero-subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Our Story Section */
.our-story {
    padding: 6rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    background: var(--bg-section);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.founder-quote {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 16px;
    margin-top: -3rem;
    margin-left: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-medium);
}

.founder-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.founder-quote cite {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.founder-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

.founder-credentials {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.founder-credentials h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.founder-credentials ul {
    list-style: none;
}

.founder-credentials li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.founder-credentials li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: var(--bg-light);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Social Responsibility Section */
.social-responsibility {
    padding: 6rem 0;
    background: white;
}

.responsibility-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.responsibility-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.responsibility-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: left;
}

.pillar h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.pillar p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--bg-section);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.process-step p {
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Section Headers */
.section-subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* About Navigation Active State */
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .about-hero-content {
        padding: 3rem 1rem;
        min-height: 60vh;
    }
    
    .about-hero-image {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .story-content,
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-quote {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .our-story,
    .founder-section,
    .values-section,
    .process-section,
    .cta-section {
        padding: 4rem 0;
    }
}
