/* SERVICES HERO */
.services-hero {
    background: linear-gradient(135deg, #e8f8fc 0%, #d0e9f0 100%);
    padding: 8rem 5% 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero h1 {
    font-family: 'CodecPro', sans-serif;
    font-size: 3rem;
    color: #1b3c4b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.2rem;
    color: #2d5a6f;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SERVICES SECTION */
.services-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(27, 60, 75, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(27, 60, 75, 0.15);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(27, 60, 75, 0.05);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
    z-index: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin: 1.5rem 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1b3c4b 0%, #2d5a6f 100%);
    color: white;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.service-content {
    flex: 1;
    position: relative;
    z-index: 2;
    margin-top: 3.0rem;
}

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

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

.cta-button {
    background: #1b3c4b;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 3.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: transparent;
    color: #1b3c4b;
    border-color: #1b3c4b;
    transform: translateY(-3px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
    .services-hero {
        padding: 7rem 5% 5rem;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}