/* =====================================================
   SCS Digital Marketing – services.css
   "What We Do" section – exact user styles
   ===================================================== */

/* Push content below fixed navbar */
.services {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: calc(var(--nav-h) + 40px) 8% 40px;
    background: linear-gradient(180deg, #ffffff 0%, #fff6f7 50%, #ffffff 100%);
}

/*=====================================
        WHAT WE DO
======================================*/

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: 58px;
    color: #111;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-heading h2 span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
}

.section-heading p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    background: #ffe4e6;
    border: 5px solid #ff7b86;
    border-radius: 18px;
    padding: 28px;
    height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .35s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 80, 100, .25);
}

.number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #444;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.card-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/*=====================================
        RESPONSIVE
======================================*/

@media (max-width: 1100px) {
    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: calc(var(--nav-h) + 80px) 30px 80px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .service-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: auto;
    }
}