/*======================================
        CATEGORY INTRO
======================================*/

.category-intro{

    padding:100px 0;

    background:#0b0b0b;

}

.category-intro-wrap{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

.category-intro-content{

    flex:0 0 60%;

}

.category-intro-image{

    flex:0 0 40%;
	 padding-right:30px;

}

.category-intro-image img{

    width:100%;

    display:block;
	 max-width:450px;

    border-radius:24px;

    object-fit:cover;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:0 20px 60px rgba(0,0,0,.45);

    transition:.4s;

}

.category-intro-image img:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(212,175,55,.15);

}

.category-intro-content h2{

    margin:18px 0 25px;

    max-width:700px;

}

.category-intro-content p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:20px;

}


/*======================================
        FEATURES
======================================*/

.category-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.category-feature{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 22px;

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:16px;

    transition:.35s;

}

.category-feature:hover{

    border-color:#d4af37;

    transform:translateY(-5px);

    background:#151515;

}

.category-feature i{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:#d4af37;

    font-size:22px;

    flex-shrink:0;

}

.category-feature span{

    color:#fff;

    font-weight:600;

    font-size:16px;

}


/*======================================
        BUTTONS
======================================*/

.category-btns{

    display:flex;

    align-items:center;

    gap:18px;

    margin-top:20px;

}



/*======================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

.category-intro{

    padding:80px 0;

}

.category-intro-wrap{

    flex-direction:column;

    gap:50px;

}

.category-intro-content,

.category-intro-image{

    flex:100%;

    width:100%;

}

}


@media(max-width:768px){

.category-features{

    grid-template-columns:1fr;

}

.category-btns{

   display:flex;
        flex-direction:row;
        gap:10px;
        flex-wrap:wrap;

}

.category-btns .escort-btn{

     min-width:150px;
        height:48px;

        padding:0 20px;

        font-size:15px;
        font-weight:600;

        border-radius:50px;

        justify-content:center;

}

.category-intro{

    padding:70px 0;

}

}

/*======================================
        PREMIUM BENEFITS
======================================*/

.category-benefits{

    padding:100px 0;

    background:#090909;

}

.category-benefits-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.category-benefits-heading h2{

    margin:18px 0 20px;

}

.category-benefits-heading p{

    color:#bdbdbd;

    line-height:1.8;

}


/* Grid */

.category-benefits-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


/* Card */

.benefit-card{

    position:relative;

    padding:40px 35px;

    background:#111111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:24px;

    overflow:hidden;

    transition:.4s ease;

}

.benefit-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#d4af37;

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.benefit-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:0 20px 45px rgba(212,175,55,.12);

}

.benefit-card:hover::before{

    transform:scaleX(1);

}


/* Icon */

.benefit-icon{

    width:70px;
    height:70px;

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

    margin-bottom:28px;

    border-radius:18px;

    background:rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.18);

}

.benefit-icon i{

    font-size:30px;

    color:#d4af37;

}


/* Title */

.benefit-card h3{

    margin-bottom:16px;

    font-size:24px;

    color:#fff;

}


/* Description */

.benefit-card p{

    color:#bdbdbd;

    line-height:1.9;

    font-size:16px;

}


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

@media(max-width:991px){

.category-benefits{

    padding:80px 0;

}

.category-benefits-grid{

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.benefit-card{

    padding:30px;

}

}


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

@media(max-width:768px){

.category-benefits{

    padding:70px 0;

}

.category-benefits-heading{

    margin-bottom:45px;

}

.category-benefits-grid{

    grid-template-columns:1fr;

    gap:18px;

}

.benefit-card{

    padding:28px 24px;

    border-radius:18px;

}

.benefit-icon{

    width:60px;
    height:60px;

    margin-bottom:20px;

}

.benefit-icon i{

    font-size:26px;

}

.benefit-card h3{

    font-size:22px;

}

.benefit-card p{

    font-size:15px;

}

}

/*======================================
        FEATURED VIP PROFILES
======================================*/

.category-profiles{

    padding:100px 0;

    background:#0d0d0d;

}

.category-profiles-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.category-profiles-heading h2{

    margin:18px 0 20px;

}

.category-profiles-heading p{

    color:#bdbdbd;

    line-height:1.9;

}


/* Grid */

.category-profiles-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


/* Card */

.category-profile-card{

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:22px;

    overflow:hidden;

    transition:.4s;
	 display:flex;

    flex-direction:column;

}
.profile-content{

    flex:1;

}
.category-profile-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:0 20px 45px rgba(212,175,55,.15);

}


/* Image */

.profile-image{

    position:relative;

    width:100%;

    height:420px;

    overflow:hidden;

}

.profile-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    object-position:center top;

    border-radius:22px 22px 0 0;

    transition:.5s;

}

.category-profile-card:hover .profile-image img{

    transform:scale(1.08);

}


/* Badge */

.profile-tag{

    position:absolute;

    top:18px;

    right:18px;

    background:#d4af37;

    color:#111;

    font-size:13px;

    font-weight:700;

    padding:8px 16px;

    border-radius:50px;

}


/* Content */

.profile-content{

    padding:28px;

    text-align:center;

    display:flex;

    flex-direction:column;

    align-items:center;

}

.profile-content h3{

    color:#fff;

    margin-bottom:10px;

}

.profile-content p{

    color:#bdbdbd;

    margin-bottom:24px;

    font-size:15px;

}


/* Button */

.profile-btn{

    display:inline-flex;

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

    width:170px;
    height:48px;

    margin:22px auto 0;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

}

.profile-btn:hover{

    background:#d4af37;

    color:#111;

}


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

@media(max-width:991px){

.category-profiles{

    padding:80px 0;

}

.category-profiles-grid{

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.profile-image img{

    height:380px;

}

}


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

@media(max-width:768px){

.category-profiles{

    padding:70px 0;

}

.category-profiles-heading{

    margin-bottom:45px;

}

.category-profiles-grid{

    grid-template-columns:1fr;

    gap:20px;

}

.profile-image img{

    height:400px;

}

.profile-content{

    padding:22px;

}

.profile-content h3{

    font-size:22px;

}

.profile-btn{

    height:46px;

    font-size:15px;

}

}

/*======================================
        VIP EXPERIENCE
======================================*/

.vip-experience{

    padding:100px 0;

    background:#0d0d0d;

}

.vip-experience-wrap{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

}


/*=====================
        IMAGE
======================*/

.vip-experience-image{

    flex:0 0 40%;

}

.vip-experience-image img{

    width:100%;

    display:block;

    border-radius:24px;

    border:1px solid rgba(212,175,55,.18);

    object-fit:cover;

    transition:.4s;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.vip-experience-image img:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(212,175,55,.15);

}


/*=====================
        CONTENT
======================*/

.vip-experience-content{

    flex:0 0 60%;

}

.vip-experience-content h2{

    margin:18px 0 22px;

    max-width:650px;

}

.vip-experience-content p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:18px;

}


/*=====================
        LIST
======================*/

.vip-points{

    list-style:none;

    margin-top:35px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    padding:0;

}

.vip-points li{

    display:flex;

    align-items:center;

    gap:12px;

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:14px;

    padding:16px 18px;

    color:#fff;

    transition:.35s;

}

.vip-points li:hover{

    border-color:#d4af37;

    transform:translateY(-4px);

}

.vip-points li i{

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:#d4af37;

    font-size:18px;

    flex-shrink:0;

}


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

@media(max-width:991px){

.vip-experience{

    padding:80px 0;

}

.vip-experience-wrap{

    flex-direction:column;

    gap:45px;

}

.vip-experience-image,

.vip-experience-content{

    flex:100%;

    width:100%;

}

.vip-experience-image{

    order:2;

    display:flex;

    justify-content:center;

}

.vip-experience-content{

    order:1;

}

.vip-experience-image img{

    max-width:420px;

}

.vip-points{

    grid-template-columns:repeat(2,1fr);

}

}


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

@media(max-width:768px){

.vip-experience{

    padding:70px 0;

}

.vip-experience-wrap{

    gap:35px;

}

.vip-experience-image img{

    max-width:360px;

}

.vip-points{

    grid-template-columns:1fr;

    gap:14px;

}

.vip-points li{

    padding:15px 16px;

    font-size:15px;

}

.vip-points li i{

    width:30px;

    height:30px;

    font-size:16px;

}

}
/*======================================
        WHY MYRA
======================================*/

.why-myra{

    padding:100px 0;

    background:#0b0b0b;

}

.why-myra-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.why-myra-heading h2{

    margin:18px 0 20px;

}

.why-myra-heading p{

    color:#bdbdbd;

    line-height:1.9;

}


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

.why-myra-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}


/*======================
        ITEM
=======================*/

.why-myra-item{

    display:flex;

    align-items:flex-start;

    gap:22px;

    padding:30px;

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:22px;

    transition:.35s;

}

.why-myra-item:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:0 20px 45px rgba(212,175,55,.12);

}


/*======================
      NUMBER
=======================*/

.step-number{

    width:70px;

    height:70px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.25);

    color:#d4af37;

    font-size:24px;

    font-weight:700;

}


/*======================
      CONTENT
=======================*/

.step-content h3{

    margin-bottom:12px;

    color:#fff;

    font-size:24px;

}

.step-content p{

    color:#bdbdbd;

    line-height:1.8;

    font-size:15px;

}


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

@media(max-width:991px){

.why-myra{

    padding:80px 0;

}

.why-myra-grid{

    grid-template-columns:1fr;

    gap:22px;

}

}


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

@media(max-width:768px){

.why-myra{

    padding:70px 0;

}

.why-myra-heading{

    margin-bottom:45px;

}

.why-myra-item{

    padding:24px 20px;

    gap:18px;

}

.step-number{

    width:58px;

    height:58px;

    font-size:20px;

}

.step-content h3{

    font-size:20px;

}

.step-content p{

    font-size:14px;

}

}

/*======================================
        MORE CATEGORIES
======================================*/

.more-categories{

    padding:100px 0;

    background:#111111;

}

.more-categories-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.more-categories-heading h2{

    margin:18px 0 20px;

}

.more-categories-heading p{

    color:#bdbdbd;

    line-height:1.9;

}


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

.more-categories-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}


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

.category-box{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

     padding:28px 22px;

    background:#0d0d0d;

    border:1px solid rgba(212,175,55,.15);

    border-radius:22px;

    text-decoration:none;

    transition:.35s;

    overflow:hidden;

}

.category-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(135deg,
    rgba(212,175,55,.08),
    transparent);

    opacity:0;

    transition:.35s;

}

.category-box:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:0 20px 45px rgba(212,175,55,.12);

}

.category-box:hover::before{

    opacity:1;

}


/*======================
        ICON
=======================*/

.category-box i{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:16px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.18);

    color:#d4af37;

    font-size:26px;

    transition:.35s;

}

.category-box:hover i{

    background:#d4af37;

    color:#111;

    transform:rotate(10deg);

}


/*======================
        CONTENT
=======================*/

.category-box h3{

    color:#fff;

    margin-bottom:8px;

    font-size:21px;

}

.category-box span{

    color:#d4af37;

    font-size:14px;

    font-weight:600;

}


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

@media(max-width:991px){

.more-categories{

    padding:80px 0;

}

.more-categories-grid{

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.category-box{

    padding:34px 24px;

}

}


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

@media(max-width:768px){

.more-categories{

    padding:70px 0;

}

.more-categories-heading{

    margin-bottom:45px;

}

.more-categories-grid{

    grid-template-columns:1fr;

    gap:18px;

}

.category-box{

    padding:30px 20px;

}

.category-box i{

    width:62px;

    height:62px;

    font-size:26px;

    margin-bottom:18px;

}

.category-box h3{

    font-size:21px;

}

.category-box span{

    font-size:14px;

}

}

/*======================================
        PREMIUM CTA
======================================*/

.premium-cta{

    padding:100px 0;

    background:linear-gradient(135deg,#0b0b0b,#161616);

}

.premium-cta-wrap{

    max-width:900px;

    margin:0 auto;

    padding:70px 50px;

    text-align:center;

    background:#111;

    border:1px solid rgba(212,175,55,.18);

    border-radius:28px;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.premium-cta-wrap h2{

    margin:18px 0 22px;

}

.premium-cta-wrap p{

    max-width:700px;

    margin:0 auto;

    color:#bdbdbd;

    line-height:1.9;

}

.premium-cta-btns{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:40px;

}


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

@media(max-width:991px){

.premium-cta{

    padding:80px 0;

}

.premium-cta-wrap{

    padding:55px 35px;

}

}


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

@media(max-width:768px){

.premium-cta{

    padding:70px 0;

}

.premium-cta-wrap{

    padding:40px 22px;

    border-radius:20px;

}

.premium-cta-btns{

     display:flex;

    flex-direction:row;

    flex-wrap:wrap;

    justify-content:center;

    align-items:center;

    gap:10px;

}

.premium-cta-btns .escort-btn{

     width:auto;

    min-width:145px;

    height:44px;

    padding:0 16px;

    font-size:13px;

    border-radius:50px;

    display:flex;

    align-items:center;

    justify-content:center;

}

}
.active-category{

    cursor:default;

    pointer-events:none;

    border-color:#d4af37;

    background:rgba(212,175,55,.08);

}

.active-category i{

    background:#d4af37;

    color:#111;

}

.active-category span{

    color:#fff;

    font-weight:600;

}