/* ==========================================
   FACIAL & SKIN THERAPY PAGE
   LIPSA HAIR & BEAUTY CREATIONS
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    color:#fff;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* ==========================================
   CONTAINER
========================================== */

.container{
    max-width:1100px;
    margin:0 auto;
    padding:0 20px;
}

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

.facial-hero{
    position:relative;
    min-height:550px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px;

    background:
    linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.75)
    ),
    url('../images/background.jpg');

    background-size:cover;
    background-position:center;
}

.facial-hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(
    circle at top,
    rgba(220,180,113,.18),
    transparent 60%
    );
}

.facial-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
}

.facial-hero .mini-title{
    display:inline-block;

    color:#dcb471;

    letter-spacing:3px;
    text-transform:uppercase;

    font-size:13px;

    margin-bottom:18px;
}

.facial-hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:20px;
}

.facial-hero p{
    color:#ddd;
    font-size:18px;
    line-height:1.9;
}

/* ==========================================
   MAIN SECTION
========================================== */

.facial-section{
    padding:100px 20px;
}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title .mini-title{
    display:inline-block;

    color:#dcb471;

    text-transform:uppercase;
    letter-spacing:2px;

    font-size:13px;

    margin-bottom:12px;
}

.section-title h2{
    font-size:44px;
    color:#fff;
    line-height:1.2;
}

/* ==========================================
   GLASS CARD
========================================== */

.glass-card{
    background:rgba(255,255,255,.04);

    border:1px solid rgba(220,180,113,.18);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-radius:24px;

    transition:.35s ease;
}

.glass-card:hover{
    transform:translateY(-6px);

    border-color:rgba(220,180,113,.4);

    box-shadow:
    0 20px 45px rgba(0,0,0,.4),
    0 0 25px rgba(220,180,113,.08);
}

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

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    align-items:start;
}

/* ==========================================
   SERVICE CARD
========================================== */

.service-card{
    position:relative;

    display:flex;
    flex-direction:column;

    padding:28px;

    height:100%;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(220,180,113,.18);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-radius:24px;

    transition:.35s ease;
}

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

    border-color:rgba(220,180,113,.4);

    box-shadow:
    0 20px 45px rgba(0,0,0,.4),
    0 0 25px rgba(220,180,113,.08);
}

.service-card h3{
    color:#dcb471;

    font-size:20px;
    line-height:1.4;

    margin-bottom:14px;
}

.service-card .price{
    display:inline-block;

    width:max-content;

    padding:8px 18px;

    margin-bottom:18px;

    border-radius:50px;

    background:rgba(220,180,113,.12);

    border:1px solid rgba(220,180,113,.25);

    color:#dcb471;

    font-weight:600;
}

.service-card p{
    color:#ddd;

    line-height:1.8;

    font-size:14px;

    margin-bottom:18px;
}

.service-card ul{
    list-style:none;
    margin-top:auto;
}

.service-card ul li{
    position:relative;

    padding-left:24px;

    margin-bottom:10px;

    line-height:1.7;

    color:#f2f2f2;

    font-size:14px;
}

.service-card ul li::before{
    content:"Рюд";

    position:absolute;
    left:0;

    color:#dcb471;
}

/* EQUAL HEIGHT SERVICE CARDS */
.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

    align-items:stretch;
}

/* CARD STRUCTURE */
.service-card{
    display:flex;
    flex-direction:column;

    height:100%;
}

/* PUSH BUTTON TO BOTTOM */
.service-card .btn-gold{
    margin-top:auto;
}

/* FIX UL SPACING */
.service-card ul{
    margin-top:20px;
    margin-bottom:25px;

    padding-left:20px;
}

/* FIX PARAGRAPH SPACING */
.service-card p{
    margin-bottom:18px;
    line-height:1.8;
}

/* FIX PRICE SPACING */
.service-card .price{
    margin-bottom:20px;
}

/* MOBILE */
@media(max-width:992px){

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .service-grid{
        grid-template-columns:1fr;
    }

}
/* ==========================================
   PRICE TAG
========================================== */

.price-tag{
    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(220,180,113,.1);

    border:1px solid rgba(220,180,113,.25);

    color:#dcb471;

    font-weight:600;
}

/* ==========================================
   GOLD DIVIDER
========================================== */

.gold-divider{
    width:120px;
    height:2px;

    margin:25px auto;

    background:#dcb471;
}

/* ==========================================
   FEATURED TREATMENT
========================================== */

.featured-treatment{
    margin-top:90px;
}

.featured-box{
    max-width:1200px;
    margin:auto;

    padding:60px;

    text-align:center;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(220,180,113,.18);

    border-radius:30px;

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
}

.featured-box h2{
    color:#dcb471;
    font-size:42px;
    margin-bottom:20px;
}

.featured-box p{
    color:#ddd;
    max-width:900px;
    margin:auto;
    line-height:1.9;
}

/* ==========================================
   CONSULTATION BOX
========================================== */

.consultation-box{
    max-width:1100px;
    margin:auto;

    padding:60px;

    text-align:center;

    /* Stronger glass effect */
    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);

    border-radius:30px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        0 8px 25px rgba(220,180,113,.10),
        inset 0 1px 0 rgba(255,255,255,.15);
}

.consultation-box h2{
    font-size:42px;
    color:#dcb471;
    margin-bottom:20px;
}

.consultation-box p{
    color:#ddd;
    line-height:1.9;
    font-size:17px;
}

/* ==========================================
   ENHANCEMENTS
========================================== */

.enhancement-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.enhancement-card{
    padding:35px;

    text-align:center;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(220,180,113,.18);

    border-radius:24px;

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    transition:.35s ease;
}

.enhancement-card:hover{
    transform:translateY(-6px);

    border-color:rgba(220,180,113,.4);

    box-shadow:
    0 20px 45px rgba(0,0,0,.4),
    0 0 25px rgba(220,180,113,.08);
}

.enhancement-card h3{
    color:#dcb471;
    font-size:24px;
    margin-bottom:12px;
}

.enhancement-card .price{
    display:block;
    margin-bottom:15px;

    color:#fff;
    font-weight:600;
}

.enhancement-card p{
    color:#ddd;
    line-height:1.8;
}

/* ==========================================
   CTA SECTION
========================================== */

.facial-cta{
    padding:100px 20px;
}

.cta-box{
    position:relative;

    max-width:1200px;
    margin:auto;

    text-align:center;

    padding:80px 60px;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.18) 0%,
        rgba(255,255,255,.08) 45%,
        rgba(255,255,255,.04) 100%
    );

    border:1px solid rgba(255,255,255,.22);

    border-radius:32px;

    backdrop-filter:blur(30px) saturate(180%);
    -webkit-backdrop-filter:blur(30px) saturate(180%);

    box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -1px 0 rgba(255,255,255,.08),
    0 0 40px rgba(220,180,113,.12);
}

/* LIQUID GLASS REFLECTION */

.cta-box::before{
    content:"";
    position:absolute;

    width:350px;
    height:350px;

    top:-180px;
    left:-120px;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,.25),
        transparent 70%
    );

    pointer-events:none;
}

/* MOVING LIGHT */

.cta-box::after{
    content:"";
    position:absolute;

    top:0;
    left:-150%;

    width:45%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.10),
        transparent
    );

    transform:skewX(-25deg);

    animation:liquidGlass 8s linear infinite;
}

@keyframes liquidGlass{

    from{
        left:-150%;
    }

    to{
        left:180%;
    }

}

.cta-box h2{
    color:#dcb471;
    font-size:46px;
    margin-bottom:20px;
}

.cta-box p{
    color:#ddd;

    max-width:850px;

    margin:auto auto 35px;

    line-height:1.9;
}

/* ==========================================
   GOLD BUTTON
========================================== */

.btn-gold{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 40px;

    border-radius:50px;

    font-weight:700;

    color:#000;

    background:
    linear-gradient(
    135deg,
    #dcb471,
    #f4d89d
    );

    transition:.35s ease;
}

.btn-gold:hover{
    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(220,180,113,.35);
}

/* ==========================================
   ANIMATION
========================================== */

.service-card,
.enhancement-card,
.featured-box,
.consultation-box,
.cta-box{
    animation:fadeUp .7s ease both;
}

@keyframes fadeUp{

from{
    opacity:0;
    transform:translateY(30px);
}

to{
    opacity:1;
    transform:translateY(0);
}

}

/* ==========================================
   LARGE LAPTOP
========================================== */

@media(max-width:1400px){

.service-grid{
    grid-template-columns:repeat(4,1fr);
}

}

/* ==========================================
   LAPTOP
========================================== */

@media(max-width:1200px){

.service-grid{
    grid-template-columns:repeat(3,1fr);
}

.enhancement-grid{
    grid-template-columns:repeat(2,1fr);
}

.facial-hero h1{
    font-size:56px;
}

}

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

@media(max-width:991px){

.service-grid{
    grid-template-columns:repeat(2,1fr);
}

.enhancement-grid{
    grid-template-columns:repeat(2,1fr);
}

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

.featured-box h2,
.consultation-box h2,
.cta-box h2{
    font-size:34px;
}

.facial-hero h1{
    font-size:48px;
}

}

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

@media(max-width:768px){

.facial-hero{
    min-height:auto;
    padding:100px 20px;
}

.facial-hero h1{
    font-size:36px;
}

.facial-hero p{
    font-size:16px;
}

.section-title{
    margin-bottom:50px;
}

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

.service-grid{
    grid-template-columns:1fr;
}

.enhancement-grid{
    grid-template-columns:1fr;
}

.service-card{
    padding:24px;
}

.featured-box,
.consultation-box,
.cta-box{
    padding:35px 25px;
}

.featured-box h2,
.consultation-box h2,
.cta-box h2{
    font-size:28px;
}

.btn-gold{
    width:100%;
}

}

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

@media(max-width:480px){

.facial-hero h1{
    font-size:30px;
}

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

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

.service-card p,
.service-card ul li{
    font-size:13px;
}

}

@media(min-width:1200px){

.container{
    max-width:1150px !important;
}

.service-grid{
    max-width:1150px !important;
    margin:0 auto !important;
    grid-template-columns:repeat(4,1fr) !important;
}

}

/* ==========================================
   SINGLE CARD CENTER FIX
========================================== */

.service-grid.single-card{
    display:flex;
    justify-content:center;
    align-items:stretch;
}

.service-grid.single-card .service-card{
    width:100%;
    max-width:650px;   /* adjust if you want wider */
}


/* ==========================================
   CENTERED 3-CARD GRID (PERFECT BALANCE)
========================================== */

.service-grid.centered-grid{
    display: grid;
    text-align:center;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;


    width: 100%;
    max-width: 1050px;   /* controls visual balance */
    margin: 0 auto;      /* THIS is the real centering fix */

    justify-content: center;
    align-items: stretch;
}

/* prevent stretching on ultra-wide screens */
@media(min-width:1200px){
    .service-grid.centered-grid{
        max-width: 1100px;
    }
}

/* MOBILE FIX */
@media(max-width:991px){
    .service-grid.centered-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px){
    .service-grid.centered-grid{
        grid-template-columns: 1fr;
    }
}


/* =========================================
   NANO GLASS PREMIUM SECTION
========================================= */

.nano-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

    max-width:1400px;
    margin:60px auto 0;
}

/* CARD */
.nano-card{
    position:relative;

    padding:40px 30px;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.14),
        rgba(255,255,255,.05)
    );

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.35),
    inset 0 1px 1px rgba(255,255,255,.10);

    overflow:hidden;
}

/* TOP LIGHT */
.nano-card::before{
    content:"";

    position:absolute;
    top:-100px;
    left:-40px;

    width:220px;
    height:220px;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,.30),
        transparent 70%
    );

    opacity:.45;
}

/* ICON */
.nano-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    font-size:28px;
}

/* TITLE */
.nano-card h3{
    color:#fff;
    font-size:28px;
    line-height:1.3;
    margin-bottom:18px;
}

/* PRICE */
.nano-price{
    display:inline-block;

    padding:12px 22px;
    margin-bottom:24px;

    border-radius:40px;

    background:rgba(220,180,113,.12);

    border:1px solid rgba(220,180,113,.28);

    color:#dcb471;
    font-weight:700;
}

/* TEXT */
.nano-card p{
    color:rgba(255,255,255,.85);
    line-height:1.8;
    margin-bottom:20px;
}

/* LIST */
.nano-card ul{
    padding-left:18px;
    margin-bottom:30px;
}

.nano-card ul li{
    color:#f1f1f1;
    margin-bottom:12px;
    line-height:1.6;
}

/* BUTTON */
.nano-btn{
    display:inline-block;

    padding:15px 30px;

    border-radius:50px;

    background:#dcb471;
    color:#000;

    border:2px solid #000;

    font-weight:700;
    text-decoration:none;

    transition:.3s ease;
}

.nano-btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 12px 24px rgba(220,180,113,.35);
}

/* TABLET */
@media(max-width:992px){

    .nano-grid{
        grid-template-columns:1fr 1fr;
    }

}

/* MOBILE */
@media(max-width:768px){

    .nano-grid{
        grid-template-columns:1fr;
    }

    .nano-card{
        padding:35px 24px;
    }

}

/* =========================================
   LUXURY HAND FACIAL SECTION
========================================= */

.hand-facial-section{
    padding-top:20px;
}

/* MAIN CARD */
.hand-facial-card{
    max-width:1100px;
    margin:50px auto 0;

    padding:45px;

    border-radius:30px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(220,180,113,.18);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

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

/* TOP AREA */
.hand-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;

    margin-bottom:30px;
}

.hand-top h3{
    color:#dcb471;
    font-size:38px;
    margin-bottom:14px;
    line-height:1.2;
}

/* DESCRIPTION */
.hand-description{
    color:#e8e8e8;
    font-size:17px;
    line-height:1.8;

    margin-bottom:35px;

    max-width:850px;
}

/* FEATURES GRID */
.hand-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:35px;
}

.hand-feature{
    padding:18px 22px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    color:#f2f2f2;
    font-size:15px;
    line-height:1.5;
}

/* BOTTOM TEXT */
.hand-bottom-text{
    color:#dcb471;
    font-size:16px;
    line-height:1.7;

    margin:0;
}

/* MOBILE */
@media(max-width:768px){

    .hand-facial-card{
        padding:30px 24px;
    }

    .hand-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .hand-top h3{
        font-size:30px;
    }

    .hand-features{
        grid-template-columns:1fr;
    }

}

/* =========================================
   ADVANCED FACIAL SECTION
========================================= */

.advanced-facial-section{
    position:relative;
}

/* GRID */
.advanced-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:28px;

    width:100%;
    max-width:1450px;

    margin:60px auto 0;

    align-items:stretch;
}

/* CARD */
.advanced-card{
    display:flex;
    flex-direction:column;

    height:100%;

    padding:38px 28px;

    border-radius:28px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(220,180,113,.16);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    transition:.35s ease;

    position:relative;
    overflow:hidden;
}

/* HOVER */
.advanced-card:hover{
    transform:translateY(-8px);

    border-color:rgba(220,180,113,.35);

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

/* TOP GLOW */
.advanced-card::before{
    content:"";

    position:absolute;
    top:-80px;
    right:-80px;

    width:180px;
    height:180px;

    background:
    radial-gradient(
        circle,
        rgba(220,180,113,.18),
        transparent 70%
    );
}

/* TITLE */
.advanced-top h3{
    color:#dcb471;

    font-size:28px;
    line-height:1.3;

    margin-bottom:18px;

    min-height:72px;
}

/* PRICE */
.advanced-top .price{
    display:inline-block;

    padding:12px 22px;

    margin-bottom:24px;

    border-radius:40px;

    background:rgba(220,180,113,.10);

    border:1px solid rgba(220,180,113,.30);

    color:#dcb471;

    font-weight:700;
    font-size:15px;
}

/* DESCRIPTION */
.advanced-desc{
    color:#e5e5e5;

    line-height:1.8;

    margin-bottom:24px;

    min-height:70px;
}

/* LIST */
.advanced-list{
    list-style:none;

    padding:0;
    margin:0 0 28px;
}

.advanced-list li{
    position:relative;

    padding-left:24px;
    margin-bottom:14px;

    color:#f2f2f2;

    line-height:1.7;
    font-size:14px;
}

.advanced-list li::before{
    content:"✦";

    position:absolute;
    left:0;
    top:0;

    color:#dcb471;
    font-size:12px;
}

/* BOTTOM TEXT */
.advanced-bottom{
    margin-top:auto;

    color:#dcb471;

    line-height:1.7;

    margin-bottom:26px;

    font-size:14px;
}

/* BUTTON */
.advanced-card .btn-gold{
    width:100%;
    text-align:center;
}

/* TABLET */
@media(max-width:1200px){

    .advanced-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */
@media(max-width:768px){

    .advanced-grid{
        grid-template-columns:1fr;
    }

    .advanced-card{
        padding:32px 24px;
    }

    .advanced-top h3{
        font-size:24px;
        min-height:auto;
    }

    .advanced-desc{
        min-height:auto;
    }

}

/* =========================================
   ULTRA PREMIUM HEALING FACIALS
========================================= */

.healing-luxury-section{
    position:relative;
    overflow:hidden;
}

/* GRID */
.healing-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;

    width:100%;
    max-width:1450px;

    margin:60px auto 0;

    align-items:stretch;
}

/* CARD */
.healing-card{
    position:relative;

    display:flex;
    flex-direction:column;

    min-height:100%;

    padding:38px 30px;

    border-radius:34px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    overflow:hidden;

    transition:.4s ease;

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

/* TOP LIGHT */
.healing-card::before{
    content:"";

    position:absolute;
    top:-120px;
    right:-60px;

    width:220px;
    height:220px;

    background:
    radial-gradient(
        circle,
        rgba(220,180,113,.22),
        transparent 70%
    );

    opacity:.9;
}

/* HOVER */
.healing-card:hover{
    transform:translateY(-10px);

    border-color:rgba(220,180,113,.30);

    box-shadow:
    0 25px 45px rgba(0,0,0,.40);
}

/* FEATURED CARD */
.featured-healing{
    border:1px solid rgba(220,180,113,.35);

    background:
    linear-gradient(
        145deg,
        rgba(220,180,113,.10),
        rgba(255,255,255,.03)
    );
}

/* BADGE */
.healing-badge{
    display:inline-block;

    width:max-content;

    padding:10px 18px;
    margin-bottom:22px;

    border-radius:40px;

    background:rgba(220,180,113,.12);

    border:1px solid rgba(220,180,113,.30);

    color:#dcb471;

    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* TITLE */
.healing-card h3{
    color:#fff;

    font-size:30px;
    line-height:1.3;

    margin-bottom:20px;

    min-height:82px;
}

/* PRICE */
.healing-price{
    display:inline-block;

    width:max-content;

    padding:12px 22px;
    margin-bottom:24px;

    border-radius:40px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.10);

    color:#dcb471;

    font-size:15px;
    font-weight:700;
}

/* DESCRIPTION */
.healing-desc{
    color:#e6e6e6;

    line-height:1.8;

    margin-bottom:28px;

    min-height:110px;
}

/* LIST */
.healing-list{
    list-style:none;

    padding:0;
    margin:0 0 32px;
}

.healing-list li{
    position:relative;

    padding-left:26px;
    margin-bottom:15px;

    color:#f2f2f2;

    font-size:14px;
    line-height:1.7;
}

.healing-list li::before{
    content:"✦";

    position:absolute;
    left:0;
    top:0;

    color:#dcb471;
    font-size:12px;
}

/* BUTTON */
.healing-btn{
    margin-top:auto;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:100%;

    padding:15px 26px;

    border-radius:50px;

    background:#dcb471;

    border:2px solid #000;

    color:#000;

    font-weight:700;

    transition:.3s ease;
}

.healing-btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 12px 24px rgba(220,180,113,.35);
}

/* TABLET */
@media(max-width:1200px){

    .healing-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */
@media(max-width:768px){

    .healing-grid{
        grid-template-columns:1fr;
    }

    .healing-card{
        padding:32px 24px;
    }

    .healing-card h3{
        font-size:25px;
        min-height:auto;
    }

    .healing-desc{
        min-height:auto;
    }

}

/* =========================================
   PREMIUM CONSULTATION SECTION
========================================= */

.consultation-premium-section{
    position:relative;
    overflow:hidden;
}

/* WRAP */
.consult-premium-wrap{
    max-width:1200px;
    margin:60px auto 0;
}

/* CARD */
.consult-premium-card{
    position:relative;

    padding:55px;

    border-radius:36px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(220,180,113,.20);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    overflow:hidden;

    box-shadow:
    0 15px 45px rgba(0,0,0,.35);
}

/* TOP GLOW */
.consult-premium-card::before{
    content:"";

    position:absolute;
    top:-120px;
    right:-100px;

    width:280px;
    height:280px;

    background:
    radial-gradient(
        circle,
        rgba(220,180,113,.20),
        transparent 70%
    );
}

/* CONTENT */
.consult-content{
    position:relative;
    z-index:2;
}

/* BADGE */
.consult-badge{
    display:inline-block;

    padding:10px 18px;
    margin-bottom:22px;

    border-radius:40px;

    background:rgba(220,180,113,.10);

    border:1px solid rgba(220,180,113,.28);

    color:#dcb471;

    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* TITLE */
.consult-content h3{
    color:#fff;

    font-size:42px;
    line-height:1.2;

    margin-bottom:22px;
}

/* PRICE */
.consult-price{
    display:inline-block;

    padding:14px 24px;
    margin-bottom:28px;

    border-radius:40px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.12);

    color:#dcb471;

    font-weight:700;
    font-size:16px;
}

/* DESCRIPTION */
.consult-desc{
    max-width:850px;

    color:#e7e7e7;

    line-height:1.9;
    font-size:17px;

    margin-bottom:40px;
}

/* FEATURE GRID */
.consult-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:45px;
}

/* FEATURE */
.consult-feature{
    display:flex;
    align-items:flex-start;

    gap:14px;

    padding:18px 20px;

    border-radius:18px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);
}

/* ICON */
.feature-icon{
    color:#dcb471;

    font-size:14px;
    margin-top:3px;

    flex-shrink:0;
}

/* FEATURE TEXT */
.consult-feature span:last-child{
    color:#f3f3f3;

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

/* BUTTON */
.consult-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    background:#dcb471;

    border:2px solid #000;

    color:#000;

    font-weight:700;

    transition:.3s ease;
}

.consult-btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 14px 30px rgba(220,180,113,.35);
}

/* TABLET */
@media(max-width:992px){

    .consult-feature-grid{
        grid-template-columns:1fr;
    }

}

/* MOBILE */
@media(max-width:768px){

    .consult-premium-card{
        padding:38px 24px;
    }

    .consult-content h3{
        font-size:30px;
    }

    .consult-desc{
        font-size:15px;
    }

}