/* About Us Page CSS */


/* Page Hero Section */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--accent-lime);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Who We Are Section */
.who-we-are-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background-color: rgba(13, 77, 77, 0.08);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding: 50px 60px;
    background-color: var(--bg-light);
    border-radius: 20px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 15px;
    color: var(--text-medium);
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.mission-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 77, 77, 0.15);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.mission-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background-color: var(--accent-lime);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--primary-dark);
}

.highlight-text {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    background-color: var(--white);
    border-color: var(--accent-lime);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 77, 77, 0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-lime);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon img {
    width: 36px;
    height: 36px;
    fill: var(--primary-dark);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* CALI Meaning Section */
.cali-meaning-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.cali-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.cali-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 20px;
    border: 2px solid var(--bg-light);
    transition: all 0.3s ease;
}

.cali-card:hover {
    border-color: var(--accent-lime);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 77, 77, 0.12);
}

.cali-letter {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--accent-lime);
    flex-shrink: 0;
}

.cali-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.cali-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 24px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    display: block;
}

/* Services Overview Section */
.services-overview-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

.services-overview-section .section-label {
    background-color: rgba(212, 255, 0, 0.15);
    color: var(--accent-lime);
}

.services-overview-section h2 {
    color: var(--white);
}

.services-overview-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    text-align: left;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: rgba(212, 255, 0, 0.1);
    border-color: var(--accent-lime);
}

.service-item-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-lime);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item-icon img {
    width: 26px;
    height: 26px;
    fill: var(--primary-dark);
}

.service-item-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.service-item-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, var(--accent-lime) 0%, #e6ff4d 100%); */
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    color: var(--primary-dark);
    opacity: 0.8;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 36px;
    background-color: var(--primary-dark);
    color: var(--white);
    border: 2px solid var(--primary-dark);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 36px;
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .mission-grid {
        gap: 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .page-hero {
        padding: 80px 0 60px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .page-hero p {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .who-we-are-section,
    .mission-section,
    .values-section,
    .cali-meaning-section,
    .gallery-section,
    .services-overview-section {
        padding: 60px 0;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cali-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        padding: 40px 30px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-hero h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .mission-highlights {
        grid-template-columns: 1fr;
    }

    .mission-content h3 {
        font-size: 26px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cali-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 30px 24px;
    }

    .cali-letter {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
}