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

:root{

    --primary:#4B0082;
    --secondary:#D4AF37;
    --dark:#222222;
    --light:#ffffff;
    --gray:#f8f8f8;

}

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

.services-page .page-banner{

    position:relative;
    overflow:hidden;
    padding:180px 0 120px;
    background:linear-gradient(135deg,#2b024d,#4B0082);
    color:#fff;

}

.services-page .page-banner-chakra{

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

    width:520px;
    height:520px;

    opacity:.08;

    background:url("../images/chakra.png") no-repeat center;
    background-size:contain;

}

.services-page .page-banner-content{

    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    text-align:center;

}

.services-page .breadcrumb-wrap{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-bottom:22px;

}

.services-page .breadcrumb-wrap a{

    color:#fff;
    text-decoration:none;

}

.services-page .breadcrumb-wrap span{

    color:rgba(255,255,255,.75);

}

.services-page .page-subtitle{

    display:inline-block;
    padding:8px 20px;
    border-radius:50px;

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

    color:#D4AF37;

    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;

}

.services-page .page-banner h1{

    margin:28px 0;

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

    font-family:'Playfair Display',serif;

}

.services-page .banner-description{

    max-width:850px;
    margin:auto;

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

    color:rgba(255,255,255,.9);

}

.services-page .banner-buttons{

    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;

    margin-top:45px;

}

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

.services-page .services-intro{

    padding:100px 0;
    background:#fff;

}

.services-page .services-intro-content{

    max-width:950px;
    margin:40px auto 0;
    text-align:center;

}

.services-page .services-intro-content p{

    font-size:18px;
    line-height:1.9;
    color:#555;

}

/* =====================================================
COMMON TITLE
===================================================== */

.services-page .section-title{

    margin-bottom:60px;

}

.services-page .section-title span{

    display:inline-block;

    padding:8px 20px;

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

    color:#D4AF37;

    border-radius:40px;

    font-size:14px;
    font-weight:600;
    letter-spacing:2px;

}

.services-page .section-title h2{

    margin:20px 0;

    font-size:46px;

    color:var(--primary);

    font-family:'Playfair Display',serif;

}

.services-page .section-title p{

    max-width:760px;
    margin:auto;

    color:#666;

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

}

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

.services-page .services-grid-section{

    padding:110px 0;
    background:#f9f8fc;

}

.services-page .services-grid-section .row{

    row-gap:35px;

}

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

.services-page .service-card{

    display:flex;
    flex-direction:column;

    height:100%;

    text-decoration:none;

    color:inherit;

    background:#fff;

    border-radius:25px;

    padding:45px 35px;

    border:1px solid rgba(75,0,130,.08);

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

    transition:.35s;

    overflow:hidden;

    position:relative;

}

.services-page .service-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        var(--secondary),
        var(--primary));

}

.services-page .service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(75,0,130,.14);

    text-decoration:none;

}

.services-page .service-icon{

    width:90px;
    height:90px;

    margin:0 auto 28px;

    border-radius:50%;

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

    background:linear-gradient(
        135deg,
        var(--primary),
        #6b2ea8);

    color:#fff;

    font-size:34px;

    transition:.4s;

}

.services-page .service-card:hover .service-icon{

    transform:rotateY(180deg);

}

.services-page .service-card h3{

    margin-bottom:18px;

    font-size:30px;

    color:var(--primary);

    font-family:'Playfair Display',serif;

}

.services-page .service-card p{

    flex:1;

    color:#666;

    line-height:1.9;

    font-size:17px;

    margin-bottom:30px;

}

/* =====================================================
SERVICE LINK
===================================================== */

.services-page .service-link{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    margin-top:auto;

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.services-page .service-link i{

    transition:.3s;

}

.services-page .service-card:hover .service-link{

    color:var(--secondary);

}

.services-page .service-card:hover .service-link i{

    transform:translateX(6px);

}

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

@media(max-width:991px){

.services-page .page-banner{

padding:160px 0 100px;

}

.services-page .page-banner h1{

font-size:44px;

}

.services-page .services-intro,
.services-page .services-grid-section{

padding:90px 0;

}

.services-page .section-title h2{

font-size:38px;

}

.services-page .service-card{

padding:35px 28px;

}

}

@media(max-width:767px){

.services-page .page-banner{

padding:150px 0 80px;

}

.services-page .page-banner h1{

font-size:34px;

}

.services-page .banner-description{

font-size:16px;

}

.services-page .section-title h2{

font-size:30px;

}

.services-page .section-title p{

font-size:16px;

}

.services-page .service-card{

padding:30px 22px;

}

.services-page .service-icon{

width:75px;
height:75px;
font-size:28px;

}

.services-page .service-card h3{

font-size:24px;

}

}

/* =====================================================
SERVICE LOCATIONS
===================================================== */

/*.services-page .service-location-section{*/

/*    padding:110px 0;*/
/*    background:#ffffff;*/
/*    position:relative;*/
/*    overflow:hidden;*/

/*}*/

/*.services-page .service-location-section::before{*/

/*    content:"";*/
/*    position:absolute;*/
/*    inset:0;*/
/*    background:*/
/*    radial-gradient(circle at top left,*/
/*    rgba(75,0,130,.04),*/
/*    transparent 45%);*/
/*    pointer-events:none;*/

/*}*/

/*.services-page .service-location-section .container{*/

/*    position:relative;*/
/*    z-index:2;*/

/*}*/

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

/*.services-page .service-location-card{*/

/*    background:#fff;*/
/*    border-radius:25px;*/
/*    padding:45px 40px;*/
/*    height:100%;*/

/*    border:1px solid rgba(75,0,130,.08);*/

/*    box-shadow:0 15px 45px rgba(0,0,0,.05);*/

/*    transition:.35s;*/

/*    position:relative;*/

/*    overflow:hidden;*/

/*}*/

/*.services-page .service-location-card::before{*/

/*    content:"";*/

/*    position:absolute;*/

/*    left:0;*/
/*    top:0;*/

/*    width:100%;*/
/*    height:5px;*/

/*    background:linear-gradient(*/
/*    90deg,*/
/*    var(--secondary),*/
/*    var(--primary));*/

/*}*/

/*.services-page .service-location-card:hover{*/

/*    transform:translateY(-10px);*/

/*    box-shadow:0 28px 65px rgba(75,0,130,.12);*/

/*}*/

/*.services-page .service-badge{*/

/*    display:inline-block;*/

/*    padding:8px 18px;*/

/*    border-radius:50px;*/

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

/*    color:var(--secondary);*/

/*    font-size:13px;*/

/*    font-weight:600;*/

/*    letter-spacing:1px;*/

/*    margin-bottom:20px;*/

/*    text-transform:uppercase;*/

/*}*/

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

/*.services-page .service-location-icon{*/

/*    width:85px;*/
/*    height:85px;*/

/*    border-radius:50%;*/

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

/*    background:linear-gradient(*/
/*    135deg,*/
/*    var(--primary),*/
/*    #6c2baa);*/

/*    color:#fff;*/

/*    font-size:30px;*/

/*    margin-bottom:28px;*/

/*    transition:.35s;*/

/*}*/

/*.services-page .service-location-card:hover .service-location-icon{*/

/*    transform:rotateY(180deg);*/

/*}*/

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

/*.services-page .service-location-card h3{*/

/*    font-family:'Playfair Display',serif;*/

/*    font-size:30px;*/

/*    color:var(--primary);*/

/*    margin-bottom:18px;*/

/*}*/

/*.services-page .service-location-card p{*/

/*    color:#666;*/

/*    line-height:1.9;*/

/*    font-size:17px;*/

/*    margin-bottom:30px;*/

/*}*/

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

/*.services-page .location-list{*/

/*    display:flex;*/

/*    flex-wrap:wrap;*/

/*    gap:12px;*/

/*    margin-bottom:35px;*/

/*}*/

/*.services-page .location-list a{*/

/*    display:inline-flex;*/

/*    align-items:center;*/

/*    gap:8px;*/

/*    padding:10px 18px;*/

/*    border-radius:40px;*/

/*    text-decoration:none;*/

/*    background:#f6f2fb;*/

/*    color:var(--primary);*/

/*    font-size:15px;*/

/*    font-weight:500;*/

/*    transition:.3s;*/

/*}*/

/*.services-page .location-list a i{*/

/*    color:var(--secondary);*/

/*    font-size:14px;*/

/*}*/

/*.services-page .location-list a:hover{*/

/*    background:var(--primary);*/

/*    color:#fff;*/

/*    transform:translateY(-3px);*/

/*}*/

/*.services-page .location-list a:hover i{*/

/*    color:#fff;*/

/*}*/

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

/*.services-page .location-btn{*/

/*    display:inline-flex;*/

/*    align-items:center;*/

/*    gap:10px;*/

/*    color:var(--primary);*/

/*    font-weight:600;*/

/*    text-decoration:none;*/

/*    transition:.3s;*/

/*}*/

/*.services-page .location-btn i{*/

/*    transition:.3s;*/

/*}*/

/*.services-page .location-btn:hover{*/

/*    color:var(--secondary);*/

/*}*/

/*.services-page .location-btn:hover i{*/

/*    transform:translateX(6px);*/

/*}*/

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

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

/*.services-page .service-location-section{*/

/*padding:90px 0;*/

/*}*/

/*.services-page .service-location-card{*/

/*padding:35px 30px;*/

/*}*/

/*.services-page .service-location-card h3{*/

/*font-size:26px;*/

/*}*/

/*}*/

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

/*.services-page .service-location-section{*/

/*padding:70px 0;*/

/*}*/

/*.services-page .service-location-card{*/

/*padding:28px 22px;*/

/*}*/

/*.services-page .service-location-card h3{*/

/*font-size:24px;*/

/*}*/

/*.services-page .service-location-icon{*/

/*width:72px;*/
/*height:72px;*/
/*font-size:26px;*/

/*}*/

/*.services-page .location-list{*/

/*gap:10px;*/

/*}*/

/*.services-page .location-list a{*/

/*font-size:14px;*/
/*padding:9px 14px;*/

/*}*/

/*}*/



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

.services-page .service-location-section{

    padding:110px 0;
    position:relative;

}

.services-page .service-location-section .section-title{

    margin-bottom:60px;

}

.services-page .service-location-section .section-title p{

    max-width:760px;
    margin:18px auto 0;

}

.services-page .service-location-section .row{

    row-gap:35px;

}

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

.services-page .location-service-card{

    position:relative;

    display:flex;
    flex-direction:column;
    align-items:center;

    height:100%;

    padding:50px 35px 35px;

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    text-decoration:none;

    color:inherit;

    border:1px solid rgba(75,0,130,.08);

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

    transition:all .35s ease;

}

.services-page .location-service-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
    90deg,
    var(--secondary),
    var(--primary));

}

.services-page .location-service-card::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    right:-120px;
    top:-120px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(75,0,130,.05),
    transparent 70%);

    transition:.4s;

}

.services-page .location-service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(75,0,130,.18);

    box-shadow:
    0 22px 55px rgba(75,0,130,.12);

}

.services-page .location-service-card:hover::after{

    transform:scale(1.2);

}

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

.services-page .location-icon{

    width:90px;
    height:90px;

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

    border-radius:22px;

    margin-bottom:28px;

    font-size:34px;

    color:#fff;

    position:relative;

    transition:.35s;

    box-shadow:
    0 12px 30px rgba(75,0,130,.18);

}

.services-page .location-icon::after{

    content:"";

    position:absolute;

    inset:-10px;

    border-radius:28px;

    background:inherit;

    opacity:.18;

    filter:blur(18px);

    z-index:-1;

}

.services-page .location-service-card:hover .location-icon{

    transform:
    translateY(-6px)
    scale(1.05);

}

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

.services-page .location-service-card h3{

    font-family:'Playfair Display',serif;

    font-size:28px;

    font-weight:700;

    line-height:1.3;

    text-align:center;

    color:var(--primary);

    margin-bottom:16px;

    transition:.3s;

}

.services-page .location-service-card:hover h3{

    color:var(--secondary);

}

/* =====================================================
DESCRIPTION
===================================================== */

.services-page .location-service-card p{

    flex:1;

    margin-bottom:30px;

    text-align:center;

    color:#666;

    font-size:15px;

    line-height:1.8;

}

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

.services-page .location-service-card span{

    display:inline-flex;

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

    gap:10px;

    padding:12px 24px;

    border-radius:50px;

    background:#f7f4fc;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.services-page .location-service-card span i{

    transition:.3s;

}

.services-page .location-service-card:hover span{

    background:var(--primary);

    color:#fff;

}

.services-page .location-service-card:hover span i{

    transform:translateX(5px);

}

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

@media(max-width:991px){

.services-page .service-location-section{

padding:90px 0;

}

.services-page .location-service-card{

padding:40px 28px 30px;

}

.services-page .location-icon{

width:80px;
height:80px;

font-size:30px;

}

.services-page .location-service-card h3{

font-size:25px;

}

}

@media(max-width:767px){

.services-page .service-location-section{

padding:70px 0;

}

.services-page .location-service-card{

padding:35px 24px 28px;

}

.services-page .location-icon{

width:72px;
height:72px;

font-size:26px;

border-radius:18px;

}

.services-page .location-service-card h3{

font-size:22px;

}

.services-page .location-service-card span{

width:100%;

}

}

/* =====================================================
SERVICE SECTION THEMES
===================================================== */

/* Psychic Reading */

.services-page .psychic-section{

    background:linear-gradient(
    180deg,
    #faf8fd 0%,
    #ffffff 100%);

}

.services-page .psychic-card::before{

    background:linear-gradient(
    90deg,
    #D4AF37,
    #4B0082);

}

.services-page .psychic-card .location-icon{

    background:linear-gradient(
    135deg,
    #4B0082,
    #7B2CBF);

    box-shadow:
    0 18px 35px rgba(75,0,130,.25);

}

.services-page .psychic-card:hover{

    box-shadow:
    0 28px 65px rgba(75,0,130,.16);

}

.services-page .psychic-card:hover h3{

    color:#4B0082;

}

.services-page .psychic-card:hover span{

    background:#4B0082;

}

/* =====================================================
LOVE SPELL
===================================================== */

.services-page .love-section{

    background:linear-gradient(
    180deg,
    #fff7fa 0%,
    #ffffff 100%);

}

.services-page .love-card{

    border-color:rgba(214,51,132,.12);

}

.services-page .love-card::before{

    background:linear-gradient(
    90deg,
    #FFD166,
    #FF4D6D);

}

.services-page .love-card::after{

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

}

.services-page .love-card .location-icon{

    background:linear-gradient(
    135deg,
    #D63384,
    #FF4D6D);

    box-shadow:
    0 18px 35px rgba(214,51,132,.22);

}

.services-page .love-card:hover{

    box-shadow:
    0 28px 65px rgba(214,51,132,.18);

}

.services-page .love-card:hover .location-icon{

    transform:
    translateY(-6px)
    scale(1.08);

}

.services-page .love-card:hover h3{

    color:#D63384;

}

.services-page .love-card:hover span{

    background:#FF4D6D;

    color:#fff;

}

/* =====================================================
BLACK MAGIC
===================================================== */

.services-page .black-section{

    background:linear-gradient(
    180deg,
    #f7f6fb 0%,
    #ffffff 100%);

}

.services-page .black-card{

    border-color:rgba(30,30,47,.12);

}

.services-page .black-card::before{

    background:linear-gradient(
    90deg,
    #FFD700,
    #1E1E2F);

}

.services-page .black-card::after{

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

}

.services-page .black-card .location-icon{

    background:linear-gradient(
    135deg,
    #1E1E2F,
    #4B0082);

    color:#FFD700;

    box-shadow:
    0 18px 35px rgba(30,30,47,.28);

}

.services-page .black-card:hover{

    box-shadow:
    0 28px 65px rgba(30,30,47,.18);

}

.services-page .black-card:hover .location-icon{

    transform:
    translateY(-6px)
    rotate(8deg)
    scale(1.06);

}

.services-page .black-card:hover h3{

    color:#1E1E2F;

}

.services-page .black-card:hover span{

    background:#1E1E2F;

    color:#fff;

}

/* =====================================================
SECTION DIVIDER
===================================================== */

.services-page .psychic-section,
.services-page .love-section,
.services-page .black-section{

    position:relative;

    overflow:hidden;

}

.services-page .psychic-section::before,
.services-page .love-section::before,
.services-page .black-section::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    right:-180px;
    top:-180px;

    border-radius:50%;

    opacity:.35;

}

.services-page .psychic-section::before{

    background:
    radial-gradient(circle,
    rgba(75,0,130,.08),
    transparent 70%);

}

.services-page .love-section::before{

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

}

.services-page .black-section::before{

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

}


/* =====================================================
WHY CHOOSE MASTER SAAN
===================================================== */

.services-page .why-choose-section{

    padding:110px 0;
    background:#f9f8fc;
    position:relative;
    overflow:hidden;

}

.services-page .why-choose-section::before{

    content:"";
    position:absolute;
    width:650px;
    height:650px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(75,0,130,.05),
    transparent 70%);
    right:-250px;
    top:-250px;

}

.services-page .why-choose-section .container{

    position:relative;
    z-index:2;

}

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

.services-page .why-card{

    background:#fff;
    border-radius:22px;
    padding:40px 35px;
    text-align:center;
    height:100%;

    border:1px solid rgba(75,0,130,.08);

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

    transition:.35s;

}

.services-page .why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 65px rgba(75,0,130,.12);

}

.services-page .why-icon{

    width:85px;
    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

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

    background:linear-gradient(
    135deg,
    var(--primary),
    #6b2ea8);

    color:#fff;

    font-size:30px;

    transition:.4s;

}

.services-page .why-card:hover .why-icon{

    transform:rotateY(180deg);

}

.services-page .why-card h3{

    font-family:'Playfair Display',serif;
    font-size:28px;
    color:var(--primary);
    margin-bottom:15px;

}

.services-page .why-card p{

    color:#666;
    font-size:16px;
    line-height:1.8;

}

/* =====================================================
CONSULTATION PROCESS
===================================================== */

.services-page .consultation-process{

    padding:110px 0;
    background:#ffffff;

}

.services-page .process-wrapper{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;

    margin-top:60px;

    position:relative;

}

.services-page .process-wrapper::before{

    content:"";

    position:absolute;

    left:8%;
    right:8%;

    top:45px;

    height:2px;

    background:linear-gradient(
    90deg,
    var(--secondary),
    var(--primary));

    z-index:1;

}

.services-page .process-item{

    position:relative;
    z-index:2;
    text-align:center;

}

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

.services-page .process-number{

    width:90px;
    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

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

    background:linear-gradient(
    135deg,
    var(--secondary),
    #f1d071);

    color:#fff;

    font-size:30px;
    font-weight:700;

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

    transition:.35s;

}

.services-page .process-item:hover .process-number{

    transform:scale(1.08);

}

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

.services-page .process-icon{

    width:70px;
    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

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

    background:#fff;

    color:var(--primary);

    font-size:24px;

    box-shadow:0 10px 30px rgba(75,0,130,.08);

}

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

.services-page .process-item h3{

    font-family:'Playfair Display',serif;

    font-size:26px;

    color:var(--primary);

    margin-bottom:18px;

}

.services-page .process-item p{

    color:#666;

    font-size:16px;

    line-height:1.8;

}

.services-page .process-item:hover h3{

    color:var(--secondary);

}

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

.services-page .feature-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;

}

.services-page .feature-list li{

    list-style:none;

    display:flex;
    align-items:center;

    gap:12px;

    color:#555;

    font-weight:500;

}

.services-page .feature-list i{

    color:var(--secondary);

}

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

@media(max-width:991px){

.services-page .why-choose-section,
.services-page .consultation-process{

padding:90px 0;

}

.services-page .process-wrapper{

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

}

.services-page .process-wrapper::before{

display:none;

}

.services-page .why-card{

padding:35px 28px;

}

}

@media(max-width:767px){

.services-page .why-choose-section,
.services-page .consultation-process{

padding:70px 0;

}

.services-page .process-wrapper{

grid-template-columns:1fr;

gap:40px;

}

.services-page .why-card{

padding:28px 22px;

}

.services-page .why-icon{

width:72px;
height:72px;
font-size:26px;

}

.services-page .why-card h3{

font-size:24px;

}

.services-page .process-number{

width:75px;
height:75px;
font-size:24px;

}

.services-page .process-item h3{

font-size:22px;

}

.services-page .feature-list{

grid-template-columns:1fr;

}

}

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

.services-page .service-content-section{

    padding:110px 0;
    background:#ffffff;

}

.services-page .service-content-wrapper{

    max-width:950px;
    margin:auto;

}

.services-page .service-content-wrapper h2{

    font-family:'Playfair Display',serif;
    font-size:42px;
    color:var(--primary);
    margin-bottom:25px;

}

.services-page .service-content-wrapper h3{

    font-family:'Playfair Display',serif;
    font-size:32px;
    color:var(--primary);
    margin:45px 0 18px;

}

.services-page .service-content-wrapper p{

    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:22px;

}

.services-page .service-content-wrapper ul{

    padding-left:20px;
    margin:25px 0;

}

.services-page .service-content-wrapper li{

    margin-bottom:14px;
    color:#555;
    line-height:1.8;

}

/* =====================================================
FAQ SECTION
===================================================== */

.services-page .services-faq-section{

    padding:110px 0;
    background:#f9f8fc;

}

.services-page .accordion{

    max-width:950px;
    margin:auto;

}

.services-page .accordion-item{

    border:none;
    margin-bottom:20px;
    border-radius:18px;
    overflow:hidden;

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

}

.services-page .accordion-button{

    padding:22px 28px;

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

    color:var(--primary);

    background:#fff;

    box-shadow:none;

}

.services-page .accordion-button:focus{

    box-shadow:none;

}

.services-page .accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.services-page .accordion-body{

    padding:25px 30px;

    color:#666;

    font-size:16px;

    line-height:1.9;

}

/* =====================================================
TRUST SECTION
===================================================== */

.services-page .trust-section{

    padding:110px 0;
    background:#ffffff;

}

.services-page .trust-wrapper{

    background:linear-gradient(
    135deg,
    #4B0082,
    #2b024d);

    border-radius:30px;

    padding:70px;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.services-page .trust-wrapper::before{

    content:"";

    position:absolute;

    right:-120px;
    top:-120px;

    width:320px;
    height:320px;

    border-radius:50%;

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

}

.services-page .trust-wrapper .section-title h2{

    color:#fff;

}

.services-page .trust-wrapper .section-title p{

    color:rgba(255,255,255,.85);

}

.services-page .trust-card{

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

    backdrop-filter:blur(10px);

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

    border-radius:20px;

    padding:35px;

    text-align:center;

    height:100%;

    transition:.35s;

}

.services-page .trust-card:hover{

    transform:translateY(-8px);

}

.services-page .trust-card i{

    font-size:42px;

    color:var(--secondary);

    margin-bottom:22px;

}

.services-page .trust-card h3{

    color:#fff;

    margin-bottom:15px;

    font-family:'Playfair Display',serif;

}

.services-page .trust-card p{

    color:rgba(255,255,255,.85);

    line-height:1.8;

}

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

@media(max-width:991px){

.services-page .service-content-section,
.services-page .services-faq-section,
.services-page .trust-section{

padding:90px 0;

}

.services-page .trust-wrapper{

padding:50px 35px;

}

.services-page .service-content-wrapper h2{

font-size:36px;

}

}

@media(max-width:767px){

.services-page .service-content-section,
.services-page .services-faq-section,
.services-page .trust-section{

padding:70px 0;

}

.services-page .service-content-wrapper h2{

font-size:30px;

}

.services-page .service-content-wrapper h3{

font-size:25px;

}

.services-page .accordion-button{

font-size:16px;
padding:18px 20px;

}

.services-page .accordion-body{

padding:20px;

}

.services-page .trust-wrapper{

padding:40px 25px;

}

.services-page .trust-card{

padding:28px 22px;

}

}

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

.services-page .premium-cta{

    padding:120px 0;
    background:linear-gradient(135deg,#2b024d,#4B0082);
    position:relative;
    overflow:hidden;

}

.services-page .premium-cta::before{

    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    right:-150px;
    top:-150px;
    background:rgba(255,255,255,.05);

}

.services-page .premium-cta::after{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    left:-120px;
    bottom:-120px;
    background:rgba(255,255,255,.04);

}

.services-page .cta-box{

    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#fff;

}

.services-page .cta-box span{

    display:inline-block;

    padding:8px 22px;

    border-radius:40px;

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

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.services-page .cta-box h2{

    font-family:'Playfair Display',serif;

    font-size:50px;

    line-height:1.25;

    margin-bottom:25px;

}

.services-page .cta-box p{

    max-width:760px;

    margin:0 auto;

    color:rgba(255,255,255,.88);

    font-size:18px;

    line-height:1.9;

}

.services-page .cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:45px;

}

/* =====================================================
RELATED SERVICES
===================================================== */

.services-page .related-services{

    padding:110px 0;
    background:#f9f8fc;

}

.services-page .related-service-card{

    display:flex;
    flex-direction:column;

    height:100%;

    background:#fff;

    border-radius:24px;

    padding:40px 35px;

    text-decoration:none;

    color:inherit;

    border:1px solid rgba(75,0,130,.08);

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    position:relative;

    overflow:hidden;

}

.services-page .related-service-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:linear-gradient(
    90deg,
    var(--secondary),
    var(--primary));

}

.services-page .related-service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 60px rgba(75,0,130,.12);

    text-decoration:none;

}

.services-page .related-icon{

    width:80px;
    height:80px;

    border-radius:50%;

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

    background:linear-gradient(
    135deg,
    var(--primary),
    #6b2ea8);

    color:#fff;

    font-size:28px;

    margin-bottom:25px;

    transition:.35s;

}

.services-page .related-service-card:hover .related-icon{

    transform:rotateY(180deg);

}

.services-page .related-service-card h3{

    font-family:'Playfair Display',serif;

    color:var(--primary);

    font-size:28px;

    margin-bottom:18px;

}

.services-page .related-service-card p{

    flex:1;

    color:#666;

    line-height:1.9;

    font-size:17px;

    margin-bottom:28px;

}

.services-page .related-service-card span{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.services-page .related-service-card span i{

    transition:.3s;

}

.services-page .related-service-card:hover span{

    color:var(--secondary);

}

.services-page .related-service-card:hover span i{

    transform:translateX(6px);

}

/* =====================================================
UTILITY
===================================================== */

.services-page img{

    max-width:100%;
    height:auto;

}

.services-page section{

    position:relative;

}

.services-page .btn{

    transition:.3s;

}

.services-page .btn:hover{

    transform:translateY(-3px);

}

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

@media(max-width:991px){

.services-page .premium-cta,
.services-page .related-services{

padding:90px 0;

}

.services-page .cta-box h2{

font-size:40px;

}

}

@media(max-width:767px){

.services-page .premium-cta,
.services-page .related-services{

padding:70px 0;

}

.services-page .cta-box h2{

font-size:30px;

}

.services-page .cta-box p{

font-size:16px;

}

.services-page .related-service-card{

padding:28px 22px;

}

.services-page .related-icon{

width:70px;
height:70px;
font-size:24px;

}

.services-page .related-service-card h3{

font-size:24px;

}

}



/* =====================================================
CONSULTATION EXPERIENCE
===================================================== */

.services-page .consultation-experience{

    padding:120px 0;
    background:#fff;
    position:relative;
    overflow:hidden;

}

.services-page .consultation-experience::before{

    content:"";
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    top:-220px;
    right:-220px;
    background:radial-gradient(circle,
    rgba(75,0,130,.06),
    transparent 70%);

}

.services-page .experience-wrapper{

    position:relative;
    z-index:2;

}

.services-page .experience-image{

    position:relative;

}

.services-page .experience-image img{

    width:100%;
    border-radius:30px;
    box-shadow:0 25px 70px rgba(0,0,0,.12);

}

.services-page .experience-badge{

    position:absolute;
    bottom:30px;
    left:30px;

    display:flex;
    align-items:center;
    gap:18px;

    background:#fff;
    padding:18px 24px;
    border-radius:18px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.services-page .experience-badge i{

    width:60px;
    height:60px;

    border-radius:50%;

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

    background:linear-gradient(135deg,
    var(--primary),
    #6b2ea8);

    color:#fff;
    font-size:24px;

}

.services-page .experience-badge strong{

    display:block;
    color:var(--primary);
    font-size:18px;

}

.services-page .experience-badge small{

    color:#777;

}

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

.services-page .experience-content{

    padding-left:40px;

}

.services-page .section-tag{

    display:inline-block;

    padding:8px 22px;

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

    color:var(--secondary);

    border-radius:40px;

    font-size:13px;
    font-weight:600;
    letter-spacing:2px;

}

.services-page .experience-content h2{

    font-family:'Playfair Display',serif;

    font-size:46px;

    color:var(--primary);

    margin:22px 0;

    line-height:1.25;

}

.services-page .experience-content>p{

    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;

}

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

.services-page .experience-features{

    display:grid;

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

    gap:20px;

}

.services-page .experience-feature{

    display:flex;
    align-items:flex-start;
    gap:18px;

    background:#faf8fd;

    border-radius:18px;

    padding:22px;

    transition:.35s;

    border:1px solid rgba(75,0,130,.06);

}

.services-page .experience-feature:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(75,0,130,.08);

}

.services-page .experience-feature i{

    width:50px;
    height:50px;

    border-radius:50%;

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

    background:linear-gradient(135deg,
    var(--primary),
    #6b2ea8);

    color:#fff;

    font-size:18px;

    flex-shrink:0;

}

.services-page .experience-feature h4{

    margin:0 0 8px;

    color:var(--primary);

    font-size:20px;

    font-family:'Playfair Display',serif;

}

.services-page .experience-feature p{

    margin:0;

    color:#666;

    font-size:15px;

    line-height:1.7;

}

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

.services-page .premium-cta{

    position:relative;

    padding:120px 0;

    background:linear-gradient(135deg,
    #2b024d,
    #4B0082);

    overflow:hidden;

}

.services-page .cta-glow{

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

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

    right:-250px;
    top:-250px;

}

.services-page .cta-box{

    position:relative;
    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#fff;

}

.services-page .cta-tag{

    display:inline-block;

    padding:10px 22px;

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

    color:#D4AF37;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;

}

.services-page .cta-box h2{

    font-family:'Playfair Display',serif;

    font-size:54px;

    margin-bottom:25px;

    line-height:1.2;
    
    color : white!important;

}

.services-page .cta-box p{

    max-width:760px;

    margin:0 auto;

    color:rgba(255,255,255,.88);

    line-height:1.9;

    font-size:18px;

}

.services-page .cta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

    margin:45px 0;

}

.services-page .cta-highlights{

    display:grid;

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

    gap:18px;

    margin-top:40px;

}

.services-page .cta-highlights div{

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

    backdrop-filter:blur(10px);

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

    border-radius:18px;

    padding:22px;

    display:flex;
    flex-direction:column;
    align-items:center;

    transition:.35s;

}

.services-page .cta-highlights div:hover{

    transform:translateY(-6px);

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

}

.services-page .cta-highlights i{

    font-size:26px;

    color:var(--secondary);

    margin-bottom:12px;

}

.services-page .cta-highlights span{

    color:#fff;

    font-size:15px;

    font-weight:500;

}

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

@media(max-width:991px){

.services-page .experience-content{

padding-left:0;

margin-top:30px;

}

.services-page .experience-features{

grid-template-columns:1fr;

}

.services-page .cta-highlights{

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

}

.services-page .cta-box h2{

font-size:42px;

}

}

@media(max-width:767px){

.services-page .consultation-experience,
.services-page .premium-cta{

padding:80px 0;

}

.services-page .experience-badge{

position:static;

margin-top:20px;

}

.services-page .experience-content h2{

font-size:32px;

}

.services-page .cta-box h2{

font-size:34px;

}

.services-page .cta-box p{

font-size:16px;

}

.services-page .cta-highlights{

grid-template-columns:1fr;

}

.services-page .experience-feature{

padding:18px;

}

}

/* =====================================================
SERVICE ARROW
===================================================== */

.service-link{

    width:50px;
    height:50px;

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

    margin-top:25px;

    border-radius:50%;

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

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

    color:#fff;

    text-decoration:none;

    backdrop-filter:blur(10px);

    transition:all .35s ease;

}

.service-link i{

    font-size:16px;

    transition:all .35s ease;

}

.service-card:hover .service-link{

    background:var(--secondary);

    border-color:var(--secondary);

    color:var(--primary);

    transform:translateX(8px);

}

.service-card:hover .service-link i{

    transform:translateX(2px);

}