/* About Page Styles - Matching Blog Theme */
:root {
    --primary: #1A886D;
    --primary-dark: #0e5f4a;
    --primary-light: #e8f5f0;
    --primary-soft: rgba(26, 136, 109, 0.1);
    --secondary: #f5f7fa;
    --secondary-color: #ffb347;
    --accent: #ffb347;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #ffffff;
    --text-mute: #5a6b7a;
    --background-light: #ffffff;
    --background-soft: #f8fafc;
    --border-light: #e2e8f0;
    --hero-gradient: linear-gradient(135deg, #1A886D 0%, #0e5f4a 100%);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 30px rgba(26, 136, 109, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header - Matching Blog */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 8px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: var(--primary);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 16px;
}

/* Hero Section - Matching Blog */
#about-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

#about-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

#about-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

#about-hero h1 {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#about-hero h1 span {
    color: var(--secondary-color);
    position: relative;
}

#about-hero p {
    max-width: 672px;
    font-size: 20px;
    color: var(--text-light);
    opacity: 0.95;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.7s ease-out forwards;
    line-height: 1.6;
}

/* Mission Section */
#mission {
    padding: 80px 0;
    background-color: var(--background-soft);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.mission-text {
    animation: fadeInUp 0.8s ease-out;
}

.mission-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.mission-highlight {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-soft) 0%, transparent 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    margin-top: 32px;
}

.mission-highlight svg {
    flex-shrink: 0;
    color: var(--primary);
    width: 24px;
    height: 24px;
}

.mission-highlight p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    line-height: 1.7;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    animation: fadeInUp 0.9s ease-out;
}

.stat-card {
    background: var(--background-light);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Impact Section */
#impact {
    padding: 80px 0;
    background-color: var(--background-light);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.impact-card {
    background: var(--background-light);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.6s ease-out forwards;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

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

.impact-card .card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.impact-card:hover .card-icon {
    background: var(--hero-gradient);
    color: var(--text-light);
    transform: scale(1.1) rotate(5deg);
}

.impact-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.impact-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Values Section */
#values {
    padding: 80px 0;
    background-color: var(--background-soft);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--background-light);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.6s ease-out forwards;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

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

.value-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-soft);
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition);
}

.value-card:hover .value-number {
    color: rgba(26, 136, 109, 0.2);
    transform: scale(1.1);
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 0;
}

.value-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

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

/* Team Section */
#team {
    padding: 80px 0;
    background-color: var(--background-light);
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-text {
    margin-bottom: 32px;
}

.team-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.team-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--primary-soft);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.team-feature:hover {
    transform: translateX(5px);
    background: var(--hero-gradient);
    color: var(--text-light);
}

.team-feature svg {
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.team-feature:hover svg {
    color: var(--text-light);
}

.team-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.team-feature:hover span {
    color: var(--text-light);
}

.team-quote {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-soft) 0%, transparent 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    margin-top: 40px;
}

.team-quote svg {
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.team-quote p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* CTA Section */
#about-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-soft) 0%, transparent 100%);
}

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

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-content h2 span {
    color: var(--primary);
}

.cta-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--hero-gradient);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: #D4AF37;
}

.cta-button svg {
    transition: transform var(--transition);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Animations - Matching Blog */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Delays - Matching Blog */
.impact-card:nth-child(1) { animation-delay: 0.1s; }
.impact-card:nth-child(2) { animation-delay: 0.2s; }
.impact-card:nth-child(3) { animation-delay: 0.3s; }
.impact-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design - Matching Blog */

/* Tablet Landscape */
@media (max-width: 1200px) {
    .section-header h2 {
        font-size: 34px;
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 32px;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .team-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    #about-hero h1 {
        font-size: 32px;
    }

    #about-hero p {
        font-size: 16px;
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 14px;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-features {
        grid-template-columns: 1fr;
    }

    .team-quote {
        padding: 30px;
    }

    .team-quote p {
        font-size: 15px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    #about-hero {
        padding: 60px 15px;
    }

    #about-hero h1 {
        font-size: 28px;
    }

    #about-hero p {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .mission-text p {
        font-size: 14px;
    }

    .mission-highlight {
        flex-direction: column;
        padding: 20px;
    }

    .impact-card {
        padding: 24px 20px;
    }

    .impact-card .card-icon {
        width: 60px;
        height: 60px;
    }

    .impact-number {
        font-size: 28px;
    }

    .impact-label {
        font-size: 13px;
    }

    .value-card {
        padding: 24px 20px;
    }

    .value-number {
        font-size: 36px;
    }

    .value-title {
        font-size: 18px;
    }

    .value-text {
        font-size: 13px;
    }

    .team-text p {
        font-size: 14px;
    }

    .team-feature span {
        font-size: 13px;
    }

    .team-quote p {
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-button {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    #about-hero h1 {
        font-size: 24px;
    }

    #about-hero p {
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .impact-number {
        font-size: 26px;
    }

    .value-number {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 22px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .impact-card:hover,
    .value-card:hover,
    .stat-card:hover,
    .team-feature:hover,
    .cta-button:hover {
        transform: none;
    }

    .impact-card:hover .card-icon {
        transform: none;
    }

    .team-feature:hover {
        background: var(--primary-soft);
        color: initial;
    }

    .cta-button:active {
        transform: scale(0.98);
    }
}

/* Print Styles */
@media print {
    #about-hero {
        background: none;
        color: #000;
    }

    #about-hero h1,
    #about-hero p {
        color: #000;
    }

    .impact-card,
    .value-card,
    .stat-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    .cta-button,
    .team-features {
        display: none;
    }
}
