/* About Us Page Specific Styles */

/* Active Nav Link */
.nav-links a.active {
    color: var(--primary-green);
    font-weight: 700;
}

/* About Hero Section */
.about-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--white) 50%, var(--light-green) 100%);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.about-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Sections */
.about-section {
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
}

.about-section.alt-bg {
    background-color: var(--lightest-green);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Section Cards */
.section-card {
    background-color: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.section-card.alt-bg .section-card {
    background-color: var(--lightest-green);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
}

.section-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.section-text:last-child {
    margin-bottom: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.check-icon {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* Center Headings */
.center-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.center-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-box {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* Serve Grid */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.serve-item {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.serve-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.serve-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.serve-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.serve-item p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* Two Column Grid */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.column-card {
    background-color: var(--lightest-green);
    padding: 40px;
    border-radius: 24px;
}

.achievement-list,
.values-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.achievement-list li,
.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.bullet {
    color: var(--primary-green);
    font-size: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.value-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.values-list strong {
    color: var(--black);
}

/* Future Grid */
.future-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.future-item {
    background-color: var(--lightest-green);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.future-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.future-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.highlight-text {
    color: var(--dark-green);
    font-weight: 600;
    font-style: italic;
    text-align: center;
    margin-top: 30px;
}

/* Address Card */
.address-card {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    color: var(--white);
}

.address-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.address-card .section-heading {
    color: var(--white);
}

.address-card .section-heading .highlight {
    color: var(--light-green);
}

.address-text {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--light-green) 0%, var(--lightest-green) 100%);
    width: 100%;
    box-sizing: border-box;
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    color: var(--white);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.cta-btn.secondary {
    background-color: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.cta-btn.secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-mascot {
    flex-shrink: 0;
}

.cta-mascot .mascot-img {
    width: 250px;
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
    }
    
    .future-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-mascot .mascot-img {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 38px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .section-card {
        padding: 35px 25px;
    }
    
    .section-heading {
        font-size: 26px;
    }
    
    .center-heading {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .future-grid {
        grid-template-columns: 1fr;
    }
    
    .column-card {
        padding: 30px 25px;
    }
    
    .about-section {
        padding: 50px 15px;
    }
    
    .about-hero {
        padding: 50px 15px;
    }
    
    .cta-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 30px;
    }
    
    .about-subtitle {
        font-size: 14px;
    }
    
    .section-heading {
        font-size: 22px;
    }
    
    .center-heading {
        font-size: 24px;
    }
    
    .section-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
    }
    
    .card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .feature-box {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .serve-grid {
        grid-template-columns: 1fr;
    }
    
    .serve-item {
        padding: 25px 20px;
    }
    
    .address-card {
        padding: 35px 25px;
    }
    
    .address-icon {
        font-size: 40px;
    }
    
    .address-text {
        font-size: 15px;
    }
    
    .cta-section {
        padding: 50px 15px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        padding: 12px 24px;
    }
    
    .cta-mascot .mascot-img {
        width: 150px;
    }
    
    .future-item {
        padding: 20px;
    }
    
    .future-icon {
        font-size: 24px;
    }
}
