/* About Us Page CSS */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    color: #2E3B2C;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #444444;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    font-weight: 400;
}

.mission-statement {
    padding: 2rem;
    background: linear-gradient(145deg, #F8FBF6, #FFFFFF);
    border-left: 4px solid #93B47E;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.mission-statement h3 {
    color: #2E3B2C;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-statement p {
    color: #444444;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    max-width: 500px;
}

/* Who We Serve Section */
.who-we-serve-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #444444;
    margin-bottom: 0;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.serve-card {
    background: #F5F5F5;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.serve-card:hover {
    transform: translateY(-8px);
    background: #FFFFFF;
    border-color: #93B47E;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.serve-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.serve-card h4 {
    font-size: 1.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
    font-weight: 700;
}

.serve-card p {
    color: #444444;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Story Section - UPDATED */
.story-section {
    padding: 200px 0;
    background: #F5F5F5;
}

.section-label {
    text-align: center;
    color: #93B47E;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2E3B2C;
    margin-bottom: 24px;
    line-height: 1.3;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 19px;
    color: #444444;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 24px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background: #FFFFFF;
    border-left: 4px solid #93B47E;
    padding: 32px;
    margin: 48px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.highlight-box h3 {
    font-size: 28px;
    color: #2E3B2C;
    margin-bottom: 16px;
}

.highlight-box p {
    font-size: 19px;
    color: #444444;
    margin: 0;
}

/* Values Section - UPDATED */
.values-section {
    padding: 100px 0;
    background: #FFFFFF;
}

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

.value-card {
    text-align: left;
    background: #F8FBF6;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    background: #FFFFFF;
    border-color: #93B47E;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #93B47E 0%, #35A854 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.value-card h3,
.value-card h4 {
    font-size: 24px;
    color: #2E3B2C;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    color: #444444;
    line-height: 1.7;
    margin: 0;
}

/* Roots Section - UPDATED */
.roots-section {
    padding: 100px 0;
    background: #F5F5F5;
}

.roots-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 48px;
}

.roots-text {
    font-size: 18px;
    color: #444444;
    line-height: 1.8;
}

.roots-text p {
    margin-bottom: 20px;
}

.roots-stats {
    background: #FFFFFF;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
    margin-bottom: 32px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #93B47E 0%, #35A854 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #444444;
    font-weight: 500;
}

/* Customers Section - UPDATED */
.customers-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.customers-content {
    max-width: 800px;
    margin: 48px auto 0;
    font-size: 19px;
    color: #444444;
    line-height: 1.8;
}

.customers-content p {
    margin-bottom: 24px;
}

/* Company Info Section */
.company-info-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
}

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

.company-details h2 {
    font-size: 2.5rem;
    color: #2E3B2C;
    margin-bottom: 1.5rem;
}

.company-description {
    font-size: 1.2rem;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.company-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.company-stats .stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.company-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #93B47E;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.company-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #444444;
    font-weight: 600;
}

.contact-card {
    background: linear-gradient(145deg, #F8FBF6, #FFFFFF);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #93B47E;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 120px;
}

.contact-card h3 {
    font-size: 1.75rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #444444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-buttons .btn {
    width: 100%;
}

.contact-details {
    padding-top: 1.5rem;
    border-top: 1px solid #E0E0E0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-details a {
    color: #93B47E;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: #35A854;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .contact-card {
        position: static;
    }
    
    .company-stats {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-statement {
        padding: 1.5rem;
    }
    
    .who-we-serve-section,
    .story-section,
    .values-section,
    .customers-section,
    .roots-section,
    .company-info-section {
        padding: 60px 0;
    }
    
    .serve-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header h2,
    .section-title {
        font-size: 2rem;
    }
    
    .story-content {
        font-size: 17px;
    }

    .roots-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-buttons {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.875rem;
    }
    
    .mission-statement {
        padding: 1rem;
    }
    
    .serve-card,
    .value-card {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .section-header h2,
    .section-title {
        font-size: 1.75rem;
    }
    
    .company-details h2 {
        font-size: 2rem;
    }

    .roots-stats {
        padding: 32px;
    }
}