/* What We Offer Section Styles */
.site-home-what-we-offer-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #333333;
    padding: 6rem 2rem;
}

.site-home-what-we-offer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: background 1.5s ease;
}

.site-home-what-we-offer-bg-image {
    display: none;
}

.site-home-what-we-offer-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.site-home-what-we-offer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-home-section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.site-home-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: currentColor;
}

.site-home-what-we-offer-intro {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    color: rgba(51, 51, 51, 0.8);
}

.site-home-what-we-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    width: 100%;
    margin-bottom: 4rem;
}

.site-home-what-we-offer-item {
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 0.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.site-home-what-we-offer-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.site-home-what-we-offer-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.site-home-what-we-offer-item:hover .site-home-what-we-offer-icon {
    transform: scale(1.1);
}

.site-home-what-we-offer-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.site-home-what-we-offer-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #333333;
}

.site-home-what-we-offer-description {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(51, 51, 51, 0.8);
}

.site-home-what-we-offer-cta {
    margin-top: 2rem;
}

.site-home-what-we-offer-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #333333;
    border: 1px solid rgba(51, 51, 51, 0.3);
    border-radius: 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.site-home-what-we-offer-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.05);
    transition: all 0.3s ease;
}

.site-home-what-we-offer-button:hover {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
}

.site-home-what-we-offer-button:hover::before {
    left: 100%;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .site-home-section-title {
        font-size: 2.75rem;
    }
    
    .site-home-what-we-offer-item {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .site-home-what-we-offer-section {
        padding: 5rem 1.5rem;
    }
    
    .site-home-section-title {
        font-size: 2.25rem;
    }
    
    .site-home-what-we-offer-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .site-home-what-we-offer-grid {
        gap: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .site-home-section-title {
        font-size: 2rem;
    }
    
    .site-home-what-we-offer-grid {
        grid-template-columns: 1fr;
    }
    
    .site-home-what-we-offer-icon {
        width: 60px;
        height: 60px;
    }
    
    .site-home-what-we-offer-title {
        font-size: 1.5rem;
    }
}
