/* Sections Styles - Stats, About, Services, CTA */

/* Stats Banner */
.yellow-banner {
    background: #1B2A49;
    padding: 50px 20px;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.banner-item {
    padding: 0.5rem;
}

.banner-icon {
    width: 50px;
    height: 50px;
    background: #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
    font-size: 1.3rem;
}

.banner-item h3 {
    font-size: 1.6rem;
    color: #F5A623;
    margin-bottom: 0.2rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.banner-item p {
    color: #F5A623;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-number {
    display: inline-block;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1B2A49;
}

.about-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: #f1f3f4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    text-decoration: none;
    color: inherit;
}

.service-card::after {
    content: '→';
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: #F5A623;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1B2A49;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1B2A49 20%, #F5A623 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Responsive styles for sections */
@media (max-width: 1024px) and (min-width: 769px) {
    .banner-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    
    .banner-item {
        padding: 0.25rem;
    }
    
    .banner-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .banner-item h3 {
        font-size: 1.4rem;
        margin-bottom: 0.1rem;
    }
    
    .banner-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .yellow-banner {
        padding: 40px 20px;
    }
    
    .banner-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 300px;
    }
    
    .banner-item {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        gap: 1rem;
    }
    
    .banner-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0;
        flex-shrink: 0;
    }
    
    .banner-content {
        display: flex;
        flex-direction: column;
    }
    
    .banner-item h3 {
        font-size: 1.8rem;
        margin-bottom: 0;
        line-height: 1;
    }
    
    .banner-item p {
        font-size: 0.9rem;
        margin-top: 0.2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }
}