/* =====================================
   SERVICES PAGE — LUXURY / PREMIUM
   VERSION GREEN + PINK
===================================== */

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

.services-page{
    position:relative;
    padding:clamp(54px, 7vw, 92px) 0;
}

/* =====================================
   HERO
===================================== */

.services-hero{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    max-width:860px;
    margin-bottom:38px;
}

.services-hero .section-label{
    display:inline-flex;
    width:auto;
    max-width:max-content;
    align-items:center;
    justify-content:center;
    align-self:flex-start;
    padding:10px 22px;
    border:1px solid rgba(242, 143, 182, 0.28);
    border-radius:999px;
    background:rgba(255,255,255,0.58);
    color:#c85f94;
    font-size:0.78rem;
    font-weight:800;
    line-height:1;
    letter-spacing:0.18em;
    text-transform:uppercase;
    white-space:nowrap;
    box-shadow:
        0 10px 26px rgba(242, 143, 182, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.85);
}

.services-hero::before{
    content:"";
    position:absolute;
    top:-24px;
    left:-24px;
    width:150px;
    height:150px;
    border-radius:999px;
    background:
        radial-gradient(circle,
            rgba(255, 176, 205, 0.24) 0%,
            rgba(255, 176, 205, 0.10) 36%,
            rgba(255, 176, 205, 0) 74%);
    pointer-events:none;
    z-index:-1;
}

.services-hero::after{
    content:"";
    position:absolute;
    right:10%;
    bottom:-26px;
    width:120px;
    height:120px;
    border-radius:999px;
    background:
        radial-gradient(circle,
            rgba(162, 217, 186, 0.18) 0%,
            rgba(162, 217, 186, 0.08) 38%,
            rgba(162, 217, 186, 0) 74%);
    pointer-events:none;
    z-index:-1;
}

.services-hero h1{
    margin:0;
    max-width:11ch;
    line-height:0.96;
    letter-spacing:-0.05em;
}

.services-intro{
    max-width:720px;
    margin:0;
    font-size:clamp(1rem, 1.15vw, 1.06rem);
    line-height:1.78;
    color:var(--text-soft);
}

/* =====================================
   EMPTY STATE
===================================== */

.services-empty{
    margin-top:30px;
}

.services-empty-card{
    position:relative;
    overflow:hidden;
    padding:clamp(24px, 3vw, 34px);
    border:1px solid rgba(233, 200, 214, 0.55);
    border-radius:30px;
    background:
        linear-gradient(145deg,
            rgba(255,255,255,0.97) 0%,
            rgba(255,245,248,0.96) 48%,
            rgba(244,255,249,0.95) 100%);
    box-shadow:
        0 16px 34px rgba(84, 54, 65, 0.08),
        0 8px 18px rgba(118, 166, 139, 0.06);
}

.services-empty-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(140deg,
            rgba(255, 185, 210, 0.08) 0%,
            rgba(255, 185, 210, 0.02) 32%,
            rgba(166, 220, 189, 0.06) 100%);
    pointer-events:none;
}

.services-empty-card::after{
    content:"";
    position:absolute;
    inset:auto -30px -30px auto;
    width:120px;
    height:120px;
    border-radius:999px;
    background:
        radial-gradient(circle,
            rgba(255, 173, 202, 0.18) 0%,
            rgba(255, 173, 202, 0.08) 34%,
            rgba(255, 173, 202, 0) 72%);
    pointer-events:none;
}

.services-empty-card h2{
    position:relative;
    z-index:1;
    margin:0 0 10px;
    font-size:clamp(1.2rem, 2vw, 1.5rem);
}

.services-empty-card p{
    position:relative;
    z-index:1;
    margin:0;
    line-height:1.75;
    color:var(--text-soft);
}

/* =====================================
   GRID
===================================== */

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

.service-card{
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    gap:18px;
    min-height:100%;
    padding:30px;
    border:1px solid rgba(233, 200, 214, 0.55);
    border-radius:30px;
    background:
        linear-gradient(145deg,
            rgba(255,255,255,0.97) 0%,
            rgba(255,245,248,0.96) 50%,
            rgba(244,255,249,0.95) 100%);
    box-shadow:
        0 16px 34px rgba(84, 54, 65, 0.08),
        0 8px 18px rgba(118, 166, 139, 0.06);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-card::before{
    content:"";
    position:absolute;
    top:-24px;
    right:-24px;
    width:110px;
    height:110px;
    border-radius:999px;
    background:
        radial-gradient(circle,
            rgba(255, 181, 208, 0.24) 0%,
            rgba(255, 181, 208, 0.10) 38%,
            rgba(255, 181, 208, 0) 72%);
    pointer-events:none;
}

.service-card::after{
    content:"";
    position:absolute;
    left:-18px;
    bottom:-18px;
    width:88px;
    height:88px;
    border-radius:999px;
    background:
        radial-gradient(circle,
            rgba(166, 218, 189, 0.22) 0%,
            rgba(166, 218, 189, 0.10) 40%,
            rgba(166, 218, 189, 0) 72%);
    pointer-events:none;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:
        0 22px 42px rgba(84, 54, 65, 0.12),
        0 12px 24px rgba(118, 166, 139, 0.10);
    border-color:rgba(225, 160, 188, 0.58);
}

.service-category{
    position:relative;
    z-index:1;
    display:inline-flex;
    width:auto;
    max-width:max-content;
    align-self:flex-start;
    margin:0;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(255, 182, 209, 0.16);
    color:#b85d86;
    font-size:0.76rem;
    font-weight:700;
    line-height:1;
    letter-spacing:0.11em;
    text-transform:uppercase;
    white-space:nowrap;
    border:1px solid rgba(232, 168, 194, 0.28);
}

.service-title{
    position:relative;
    z-index:1;
    margin:0;
    font-size:clamp(1.22rem, 2vw, 1.6rem);
    line-height:1.1;
    letter-spacing:-0.03em;
    color:var(--text);
}

.service-description{
    position:relative;
    z-index:1;
    margin:0;
    color:var(--text-soft);
    line-height:1.76;
}

.service-infos{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
    margin-top:auto;
}

.service-info-box{
    display:flex;
    flex-direction:column;
    gap:6px;
    padding:15px 16px;
    background:rgba(255,255,255,0.72);
    border:1px solid rgba(220, 231, 225, 0.9);
    border-radius:20px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.7),
        0 8px 16px rgba(118, 166, 139, 0.05);
    backdrop-filter:blur(6px);
}

.service-info-box:nth-child(2){
    border-color:rgba(236, 208, 220, 0.9);
}

.service-info-label{
    color:var(--text-muted);
    font-size:0.8rem;
    font-weight:600;
    letter-spacing:0.01em;
}

.service-info-value{
    color:var(--text);
    font-size:1rem;
    font-weight:700;
}

.service-actions{
    position:relative;
    z-index:1;
    margin-top:2px;
}

.service-actions .btn{
    width:100%;
}

/* =====================================
   LARGE TABLETS
===================================== */

@media (max-width: 1080px){

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

    .services-hero h1{
        max-width:100%;
    }

    .service-card{
        padding:26px;
    }
}

/* =====================================
   TABLETS
===================================== */

@media (max-width: 860px){

    .services-page{
        padding:58px 0;
    }

    .services-hero{
        gap:14px;
        margin-bottom:28px;
    }

    .services-hero::before{
        width:110px;
        height:110px;
        top:-16px;
        left:-14px;
    }

    .services-hero::after{
        right:auto;
        left:10px;
        bottom:-20px;
        width:84px;
        height:84px;
    }

    .services-hero h1{
        max-width:100%;
    }

    .services-intro{
        max-width:100%;
    }

    .services-grid{
        gap:18px;
    }
}

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

@media (max-width: 680px){

    .services-page{
        padding:48px 0 44px;
    }

    .services-hero{
        margin-bottom:24px;
    }

    .services-hero .section-label{
        max-width:100%;
        white-space:normal;
        text-align:center;
        padding:10px 18px;
        font-size:0.72rem;
        letter-spacing:0.14em;
    }

    .services-intro{
        font-size:0.98rem;
        line-height:1.72;
    }

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

    .service-card{
        padding:22px;
        border-radius:24px;
    }

    .service-card:hover{
        transform:none;
        box-shadow:
            0 16px 34px rgba(84, 54, 65, 0.08),
            0 8px 18px rgba(118, 166, 139, 0.06);
    }

    .service-title{
        line-height:1.15;
    }
}

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

@media (max-width: 480px){

    .services-page{
        padding:42px 0 38px;
    }

    .services-empty-card,
    .service-card{
        padding:20px;
        border-radius:20px;
    }

    .service-infos{
        grid-template-columns:1fr;
        gap:10px;
    }

    .service-info-box{
        border-radius:16px;
    }

    .service-category{
        max-width:100%;
        white-space:normal;
        font-size:0.72rem;
        padding:6px 10px;
    }

    .services-intro{
        font-size:0.95rem;
    }
}