/* ===================================
   LUXURY CTA SECTION
=================================== */


.luxury-cta{


    position:relative;

    margin:100px 60px;

    padding:90px 40px;

    border-radius:40px;

    overflow:hidden;

    background:

            linear-gradient(

                    135deg,

                    #061b14,

                    #07583f

            );


    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;


}



.cta-glow{


    position:absolute;

    width:500px;

    height:500px;

    right:-200px;

    top:-200px;

    background:

            radial-gradient(

                    circle,

                    rgba(212,174,95,.35),

                    transparent 70%

            );


}



.cta-content{


    position:relative;

    z-index:2;

    max-width:900px;


}



.cta-label{


    font-family:"Cormorant Garamond";

    letter-spacing:5px;

    font-size:18px;

    color:#d5af62;

    display:block;

    margin-bottom:25px;


}



.cta-content h2{


    font-family:"Vazirmatn";

    font-size:42px;

    line-height:1.8;

    font-weight:700;

    margin-bottom:20px;


}



.cta-content p{


    font-size:17px;

    color:rgba(255,255,255,.8);

    max-width:650px;

    margin:0 auto 40px;

    line-height:2;


}



/* BUTTONS */


.cta-buttons{


    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;


}



.cta-buttons a{


    height:60px;

    padding:0 35px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    font-size:16px;

    transition:.4s;


}



.btn-primary{


    background:#d5af62;

    color:#10251c;

    box-shadow:

            0 15px 35px rgba(213,175,98,.25);


}



.btn-primary:hover{


    transform:translateY(-6px);

    box-shadow:

            0 20px 50px rgba(213,175,98,.45);


}



.btn-secondary{


    border:1px solid rgba(255,255,255,.35);

    color:white;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);


}



.btn-secondary:hover{


    background:white;

    color:#07583f;

    transform:translateY(-6px);


}



/* GOLD DECORATION */


.cta-decoration span{


    position:absolute;

    border-radius:50%;

    border:1px solid rgba(213,175,98,.25);


}



.cta-decoration span:nth-child(1){

    width:250px;

    height:250px;

    left:-120px;

    bottom:-120px;

}



.cta-decoration span:nth-child(2){

    width:180px;

    height:180px;

    right:50px;

    bottom:-90px;

}



.cta-decoration span:nth-child(3){

    width:90px;

    height:90px;

    right:150px;

    top:50px;

}



/* MOBILE */


@media(max-width:768px){


    .luxury-cta{


        margin:50px 20px;

        padding:60px 25px;


    }



    .cta-content h2{


        font-size:28px;


    }



    .cta-content p{


        font-size:15px;


    }



    .cta-buttons a{


        width:100%;

        justify-content:center;


    }


}