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

.services-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(to right,
    rgba(0,0,0,.95) 0%,
    rgba(0,0,0,.88) 35%,
    rgba(0,0,0,.45) 70%,
    rgba(0,0,0,.10) 100%),

    url("../assets/images/services/hero.jpg");

    background-size:cover;

    background-position:right center;

    background-repeat:no-repeat;

}

.hero-container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

.hero-content{

    max-width:650px;

}

.hero-subtitle{

    color:#D4AF37;

    letter-spacing:6px;

    font-size:15px;

    display:block;

    margin-bottom:30px;

}

.hero-content h1{

    color:#fff;

    font-size:78px;

    line-height:1.08;

    font-family:"Cinzel",serif;

    margin-bottom:30px;

}

.hero-line{

    width:140px;

    height:2px;

    background:#D4AF37;

    margin-bottom:35px;

}

.hero-content p{

    color:#d2d2d2;

    font-size:22px;

    line-height:1.8;

    margin-bottom:45px;

}
/*==============================
HERO BUTTONS
==============================*/

.btn-gold{

    display:inline-block;

    padding:16px 38px;

    background:#D4AF37;

    color:#111;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-gold:hover{

    transform:translateY(-4px);

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

}

.btn-outline{

    display:inline-block;

    padding:16px 38px;

    border:2px solid #D4AF37;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:500;

    transition:.35s;

}

.btn-outline:hover{

    background:#D4AF37;

    color:#111;

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

.hero-line{

    width:170px;

    height:2px;

    background:#D4AF37;

    margin:35px 0;

    position:relative;

}

.hero-line::after{

    content:"❦";

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    background:#050505;

    color:#D4AF37;

    padding:0 12px;

    font-size:16px;

}
/*==================================
PREMIUM SERVICES
==================================*/

.services-section{

    padding:120px 8%;

    background:#080808;

}

.services-grid{

    display:grid;

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

    gap:45px;

    margin-top:70px;

}

.service-card{

    background:#111;

    border-radius:28px;

    overflow:hidden;

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

    transition:.45s;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#D4AF37;

    box-shadow:0 30px 70px rgba(0,0,0,.45);

}

.service-image{

    overflow:hidden;

    height:340px;

}

.service-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.service-card:hover .service-image img{

    transform:scale(1.08);

}

.service-content{

    padding:35px;

}

.service-content h3{

    color:#fff;

    font-size:32px;

    margin-bottom:18px;

    font-family:"Cinzel",serif;

}

.service-content p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:30px;

}

.service-content a{

    color:#D4AF37;

    text-decoration:none;

    font-weight:600;

    letter-spacing:1px;

    transition:.35s;

}

.service-content a:hover{

    letter-spacing:4px;

}
/*==================================
WHY CHOOSE US
==================================*/

.why-us{

    padding:120px 8%;

    background:#050505;

}

.why-grid{

    margin-top:60px;

    display:grid;

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

    gap:30px;

}

.why-card{

    background:#111;

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

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

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

}

.why-card h3{

    color:#D4AF37;

    font-size:48px;

    margin-bottom:15px;

    font-family:"Cinzel",serif;

}

.why-card h4{

    color:#fff;

    font-size:22px;

    font-weight:500;

}
/*==================================
PROCESS SECTION
==================================*/

.process-section{

    padding:120px 8%;

    background:#080808;

}

.process-grid{

    margin-top:70px;

    display:grid;

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

    gap:25px;

}

.process-card{

    background:#111;

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

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.4s;

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

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

}

.process-card span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#D4AF37;

    color:#111;

    font-size:22px;

    font-weight:700;

    margin-bottom:20px;

}

.process-card h3{

    color:#fff;

    margin-bottom:15px;

    font-size:24px;

    font-family:"Cinzel",serif;

}

.process-card p{

    color:#bdbdbd;

    line-height:1.8;

}
/*==================================
CALL TO ACTION
==================================*/

.cta-section{

    position:relative;

    padding:140px 8%;

    background:
    linear-gradient(
    rgba(0,0,0,.15),
    rgba(0,0,0,.15)),
    url("../assets/images/services/cta.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

    text-align:center;

    overflow:hidden;

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

}

.cta-content span{

    color:#D4AF37;

    letter-spacing:5px;

    font-size:15px;

    display:block;

    margin-bottom:20px;

}

.cta-content h2{

    color:#fff;

    font-size:60px;

    line-height:1.2;

    font-family:"Cinzel",serif;

    margin-bottom:30px;

}

.cta-content p{

    color:#d3d3d3;

    font-size:20px;

    line-height:1.9;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}
/*==================================
 SERVICE DETAILS POPUP
==================================*/

.service-modal{

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.85);

    z-index:99999;

    align-items:center;

    justify-content:center;

}


.service-popup{

    position:relative;

    width:90%;

    max-width:520px;

    background:#0b0b0b;

    border:1px solid #D4AF37;

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.6);

}


.service-popup h2{

    color:#D4AF37;

    font-family:'Cinzel',serif;

    font-size:32px;

    margin-bottom:20px;

}


.service-popup p{

    color:#ddd;

    font-size:16px;

    line-height:1.8;

}


.service-popup a{

    display:inline-block;

    margin-top:30px;

    padding:14px 35px;

    background:#D4AF37;

    color:#000;

    text-decoration:none;

    border-radius:30px;

    font-weight:600;

}


.service-popup a:hover{

    background:white;

}


.close-btn{

    position:absolute;

    top:10px;

    right:20px;

    color:white;

    font-size:35px;

    cursor:pointer;

}



/* MOBILE */

@media(max-width:768px){

.service-popup{

    width:85%;

    padding:35px 25px;

}


.service-popup h2{

    font-size:24px;

}


.service-popup p{

    font-size:15px;

}

}