.services{

    padding:110px 0;

    background:#f8f7f4;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.service-card{

    background:#fff;

    padding:40px;

    border-radius:16px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card h3{

    margin-bottom:18px;

    color:var(--primary);

}

.service-card p{

    color:#666;

    line-height:1.8;

}

/* =========================================
   SERVICES PAGE
========================================= */

.services-page {
    padding: 80px 0 110px;
    background: var(--background);
}

.services-page-header {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-page-header .section-subtitle {
    display: block;
    margin-bottom: 15px;
}

.services-page-header h1 {
    margin: 0 0 22px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--primary);
}

.services-page-header p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.services-page-card {
    position: relative;
    min-height: 260px;
    padding: 38px 34px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.services-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    border-color: rgba(200, 169, 107, .45);
}

.services-page-number {
    display: block;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary);
}

.services-page-card h2 {
    margin: 0 0 16px;
    font-size: 25px;
    line-height: 1.2;
    color: var(--primary);
}

.services-page-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.services-page-cta {
    max-width: 850px;
    margin: 90px auto 0;
    padding: 65px 40px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
}

.services-page-cta .section-subtitle {
    display: block;
    margin-bottom: 14px;
}

.services-page-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
    color: var(--primary);
}

.services-page-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.services-page-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 54px;
    padding: 14px 25px;
    text-decoration: none;
}

@media (max-width: 900px) {

    .services-page {
        padding: 65px 0 80px;
    }

    .services-page-header {
        margin-bottom: 50px;
    }

    .services-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .services-page {
        padding: 45px 0 60px;
    }

    .services-page-header {
        margin-bottom: 38px;
    }

    .services-page-header h1 {
        font-size: 40px;
        letter-spacing: -.8px;
    }

    .services-page-header p {
        font-size: 16px;
        line-height: 1.7;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-page-card {
        min-height: auto;
        padding: 30px 25px;
    }

    .services-page-number {
        margin-bottom: 22px;
    }

    .services-page-card h2 {
        font-size: 23px;
    }

    .services-page-card p {
        font-size: 15px;
    }

    .services-page-cta {
        margin-top: 55px;
        padding: 45px 22px;
        border-radius: 14px;
    }

    .services-page-cta h2 {
        font-size: 34px;
    }

    .services-page-cta p {
        font-size: 16px;
    }

    .services-page-cta .btn {
        width: 100%;
    }

}


/* =========================================
   HOME SERVICES - PROFESSIONAL
========================================= */

.services {
    padding: 110px 0;
    background: #f8f7f4;
}

.services .section-title {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.services .section-title .section-subtitle {
    display: block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.services .section-title h2 {
    margin: 0 0 16px;
    color: var(--primary);
    font-size: 44px;
    line-height: 1.15;
}

.services .section-title p {
    margin: 0;
    color: #777;
    font-size: 17px;
    line-height: 1.8;
}


/* GRID */

.services .services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}


/* CARD */

.services .service-card {
    position: relative;
    min-height: 220px;

    padding: 34px 28px;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


/* GOLD ACCENT */

.services .service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .35s ease;
}


/* HOVER */

.services .service-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);

    border-color: rgba(201, 165, 90, .35);
}

.services .service-card:hover::before {
    transform: scaleX(1);
}


/* TITLE */

.services .service-card h3 {
    margin: 0 0 15px;

    color: var(--primary);

    font-size: 21px;
    line-height: 1.3;
}


/* TEXT */

.services .service-card p {
    margin: 0;

    color: #666;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .services {
        padding: 90px 0;
    }

    .services .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .services {
        padding: 70px 0;
    }

    .services .section-title {
        margin-bottom: 38px;
    }

    .services .section-title h2 {
        font-size: 34px;
    }

    .services .section-title p {
        font-size: 16px;
        line-height: 1.7;
    }

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

    .services .service-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .services .service-card h3 {
        font-size: 20px;
    }

    .services .service-card p {
        font-size: 15px;
    }

}

