/* ===========================
   VIP CATEGORY CARD
=========================== */

.service-category-card.vip-card{
    position:relative;
    overflow:hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,215,0,.12),
            rgba(255,255,255,.03)
        );

    border:2px solid rgba(255,215,0,.45);

    box-shadow:
        0 0 25px rgba(255,215,0,.25),
        0 0 60px rgba(255,215,0,.10),
        inset 0 0 25px rgba(255,215,0,.05);

    transform:scale(1.03);
}

/* Animated shine */

.service-category-card.vip-card::before{
    content:"";

    position:absolute;

    top:-150%;
    left:-40%;

    width:80px;
    height:350%;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(255,255,255,.4),
            transparent
        );

    transform:rotate(25deg);

    animation:vipShine 5s linear infinite;
}

@keyframes vipShine{

    0%{
        left:-40%;
    }

    100%{
        left:140%;
    }

}

/* Crown Badge */

.vip-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 14px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #ffd700,
            #ffb700
        );

    color:#111;

    font-size:11px;
    font-weight:800;

    letter-spacing:1px;
    text-transform:uppercase;

    margin-bottom:12px;

    box-shadow:
        0 0 15px rgba(255,215,0,.4);
}

/* VIP title */

.vip-card .service-title{

    color:#ffe082;

    text-shadow:
        0 0 10px rgba(255,215,0,.5);
}

/* VIP logo */

.vip-card .service-logo img{

    filter:
        drop-shadow(
            0 0 12px rgba(255,215,0,.4)
        );

    transform:scale(1.05);
}

/* VIP price */

.vip-card .starting-price strong{

    color:#ffd700;

    font-size:34px;

    text-shadow:
        0 0 15px rgba(255,215,0,.45);
}

/* VIP button */

.vip-card .explore-service-btn{

    background:
        linear-gradient(
            135deg,
            #ffd700,
            #ffb700
        );


    font-weight:700;

    border:none;

    box-shadow:
        0 0 20px rgba(255,215,0,.35);
}

.vip-card .explore-service-btn:hover{

    transform:translateY(-2px);
color:#fff;
    box-shadow:
        0 0 30px rgba(255,215,0,.5);
}

/* Floating crown */

.vip-card::after{

    content:"ðŸ‘‘";

    position:absolute;

    top:12px;
    right:14px;

    font-size:26px;

    opacity:.85;

    animation:vipFloat 3s ease-in-out infinite;
}

@keyframes vipFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-6px);
    }

}


  /* ==========================================
   NEXT LEVEL PREMIUM SERVICE CARD
========================================== */

.service-category-card{

    position:relative;
    overflow:hidden;

    padding:15px;

    border-radius:26px;

    background:
    linear-gradient(
    135deg,
    rgba(12,18,38,.96),
    rgba(5,10,24,.96)
    );

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s cubic-bezier(.2,.8,.2,1);

    z-index:1;
}


/* ==========================================
   ANIMATED BORDER
========================================== */

.service-category-card:before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:28px;

    z-index:-2;

    background:
    linear-gradient(
    135deg,
    transparent,
    rgba(255,255,255,.15),
    transparent
    );

    opacity:.7;
}


/* ==========================================
   FLOATING LIGHT ORB
========================================== */

.service-category-card:after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    top:-90px;
    right:-90px;

    filter:blur(60px);

    opacity:.35;

    transition:.5s;
}


/* ==========================================
   PURPLE
========================================== */

.service-category-card.purple{

    box-shadow:
    0 0 0 1px rgba(123,92,255,.35),
    0 10px 40px rgba(123,92,255,.18),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.service-category-card.purple:after{

    background:#7b5cff;
}


/* ==========================================
   GREEN
========================================== */

.service-category-card.green{

    box-shadow:
    0 0 0 1px rgba(0,193,110,.35),
    0 10px 40px rgba(0,193,110,.18),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.service-category-card.green:after{

    background:#00c16e;
}


/* ==========================================
   ORANGE
========================================== */

.service-category-card.orange{

    box-shadow:
    0 0 0 1px rgba(255,166,0,.35),
    0 10px 40px rgba(255,166,0,.18),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.service-category-card.orange:after{

    background:#ff9f1c;
}


/* ==========================================
   BLUE
========================================== */

.service-category-card.blue{

    box-shadow:
    0 0 0 1px rgba(47,124,255,.35),
    0 10px 40px rgba(47,124,255,.18),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.service-category-card.blue:after{

    background:#2f7cff;
}


/* ==========================================
   HOVER EFFECT
========================================== */

.service-category-card:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    box-shadow:
    0 35px 80px rgba(0,0,0,.55);
}

.service-category-card:hover:after{

    transform:scale(1.3);
    opacity:.55;
}


/* ==========================================
   SHINE EFFECT
========================================== */

.service-category-card .card-shine{

    position:absolute;
    inset:0;

    overflow:hidden;

    border-radius:inherit;

    pointer-events:none;
}

.service-category-card .card-shine:before{

    content:"";

    position:absolute;

    width:120px;
    height:300%;

    background:
    linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.12),
    transparent
    );

    transform:rotate(25deg);

    left:-180px;
    top:-100%;
}

.service-category-card:hover .card-shine:before{

    animation:premiumShine 1.2s linear;
}

@keyframes premiumShine{

    100%{
        left:150%;
    }
}


/* ==========================================
   HEADER (LOGO + TITLE SAME LINE)
========================================== */

.service-header{

    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:18px;
}


/* ==========================================
   LOGO
========================================== */

.service-logo{

    flex:0 0 60px;

    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
    rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);
}

.service-logo img{

    width:42px;
    height:42px;

    object-fit:contain;

    display:block;
}


/* ==========================================
   TITLE WRAP
========================================== */

.service-title-wrap{

    flex:1;
}


/* ==========================================
   TITLE
========================================== */

.service-title{

    margin:0;

    font-size:22px;
    font-weight:800;

    letter-spacing:.3px;

    text-align:left !important;

    line-height:1.2;
}


/* ==========================================
   DURATION
========================================== */

.service-duration{

    display:inline-flex;

    align-items:center;

    margin-top:6px;

    padding:5px 10px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#cbd5e1;

    font-size:11px;

    font-weight:600;
}

.purple .service-title{

    background:
    linear-gradient(
    90deg,
    #b39cff,
    #7b5cff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.green .service-title{

    background:
    linear-gradient(
    90deg,
    #8affc1,
    #00c16e
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.orange .service-title{

    background:
    linear-gradient(
    90deg,
    #ffd18b,
    #ff9f1c
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.blue .service-title{

    background:
    linear-gradient(
    90deg,
    #8bc0ff,
    #2f7cff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}


/* ==========================================
   DURATION BADGE
========================================== */

.service-duration{

    display:inline-flex;

    align-items:center;

    gap:6px;

    margin-top:6px;

    padding:5px 10px;

    border-radius:50px;

    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#cbd5e1;

    font-size:11px;

    font-weight:600;
}


/* ==========================================
   FEATURES
========================================== */

.service-category-card ul li{

margin-top: 10px;
    color:#d8e2f0;

    font-size:13px;
list-style: none;
    margin-bottom:12px;
}

.service-category-card ul li:before{

    content:"✦";

    color:#00ffb3;
}


/* ==========================================
   PRICE BOX
========================================== */

.starting-price{

    margin:16px 0;

    padding:14px 18px;

    border-radius:18px;

    background:
    rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(10px);

    text-align:center;
}

.starting-price span{

    display:block;

    font-size:11px;

    color:#94a3b8;

    margin-bottom:4px;
}

.starting-price strong{

    font-size:38px;
    color:#ffffff;

    line-height:1;
}


/* ==========================================
   BUTTON
========================================== */

.explore-service-btn{

    width:100%;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.08);

    background:
    linear-gradient(
    90deg,
    rgba(123,92,255,.18),
    rgba(123,92,255,.08)
    );

    color:#e5e7eb;

    font-size:13px;

    font-weight:600;

    text-decoration:none;

    transition:.3s ease;
}

.explore-service-btn:hover{

    border-color:rgba(123,92,255,.35);

    background:
    linear-gradient(
    90deg,
    rgba(123,92,255,.28),
    rgba(123,92,255,.14)
    );

    transform:translateY(-2px);
}
.purple .explore-service-btn{
    background:rgba(123,92,255,.12);
}

.green .explore-service-btn{
    background:rgba(0,193,110,.12);
}

.orange .explore-service-btn{
    background:rgba(255,166,0,.12);
}

.blue .explore-service-btn{
    background:rgba(47,124,255,.12);
}

/* ==========================================
   VIP BADGE
========================================== */

.vip-badge{

    position:absolute;

    top:18px;
    right:18px;

    padding:6px 12px;

    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    #ffd700,
    #ff9f1c
    );

    color:#111;

    font-size:11px;

    font-weight:800;

    letter-spacing:1px;

    text-transform:uppercase;

    box-shadow:
    0 0 25px rgba(255,193,7,.35);
}  

/* ==================================================
   SERVICES GRID
================================================== */

.service-categories-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);
    padding: 30px;
    gap:28px;
}
/* ==================================================
   TABLET
================================================== */

@media(max-width:1200px){

    .service-categories-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .services-stats{

        grid-template-columns:
        repeat(2,1fr);
    }

}


/* ==================================================
   MOBILE
================================================== */

@media(max-width:768px){

    .service-categories-grid{

        grid-template-columns:1fr;
        
        padding: 30px 15px;
    }

    .services-stats{

        grid-template-columns:1fr;
    }

}    

/* ==========================================
   SERVICE FINDER
========================================== */


.finder-wrapper{

    position:relative;

    max-width:850px;

    margin:0 auto;
    
        padding: 0 20px;
}

.finder-search{

    position:relative;
}

.finder-search i{

    position:absolute;

    left:24px;

    top:50%;

    transform:translateY(-50%);

    color:#7b5cff;

    font-size:18px;
}

.finder-search input{

    width:100%;

    height:74px;

    padding:0 24px 0 60px;

    border-radius:22px;

    background:
    rgba(255,255,255,.04);

    border:1px solid
    rgba(255,255,255,.08);

    color:#fff;

    font-size:17px;

    outline:none;

    transition:.3s;
}

.finder-search input:focus{

    border-color:
    rgba(123,92,255,.30);

    box-shadow:
    0 0 0 5px
    rgba(123,92,255,.08);
}

/* RESULTS */

.finder-results{

    position:absolute;

    top:85px;

    left:0;

    width:100%;

    z-index:100;

    border-radius:22px;

    overflow-y:auto;

    overflow-x:hidden;

    max-height:420px;

    background:#111827;

    border:1px solid
    rgba(255,255,255,.08);

    display:none;
}

/* Scrollbar */

.finder-results::-webkit-scrollbar{

    width:8px;
}

.finder-results::-webkit-scrollbar-track{

    background:
    rgba(255,255,255,.03);

    border-radius:20px;
}

.finder-results::-webkit-scrollbar-thumb{

    border-radius:20px;

    background:
    linear-gradient(
    180deg,
    #7b5cff,
    #a855f7
    );
}

.finder-results::-webkit-scrollbar-thumb:hover{

    background:
    linear-gradient(
    180deg,
    #8b6cff,
    #b56aff
    );
}

.finder-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 22px;

    min-height:72px;

    border-bottom:1px solid
    rgba(255,255,255,.05);

    transition:.25s;
}

.finder-item:hover{

    background:
    rgba(123,92,255,.08);
}

.finder-left h4{

    color:#fff;

    margin:0 0 4px;

    font-size:15px;
}

.finder-left span{

    color:#94a3b8;

    font-size:12px;
}

.finder-link{

    color:#b993ff;

    font-weight:700;
}

.no-results{

    padding:20px;

    text-align:center;

    color:#94a3b8;
}
