body{
    background:#000;
    font-family:Poppins,sans-serif;
    color:#fff;
}


/*==========================
Logo
==========================*/

.brand-area{
    text-align:center;
    padding:15px 0 12px;
}

.brand-area h1{
    margin:0;
    color:#fff;
    font-family:"Cormorant Garamond",serif;
    font-size:62px;
    font-weight:700;
    line-height:1;
}

.brand-area h1 span{
    color:#d6aa32;
    margin:0 12px;
    font-size:18px;
    vertical-align:middle;
}

.brand-area p{
    color:#d6aa32;
    letter-spacing:4px;
    margin-top:8px;
    font-size:18px;
}

/*==========================
Navbar
==========================*/

.luxury-nav{
    padding-bottom:20px;
}

.luxury-nav .navbar{

    background:#050505;
    border:1px solid #c89b2d;
    border-radius:14px;
    padding:8px;
}

.luxury-nav .navbar-nav{
    width:100%;
    justify-content:space-between;
}

.luxury-nav .nav-item{
    flex:1;
}

.luxury-nav .nav-link{

    color:#fff;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:15px;
    padding:16px 10px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.12);
    transition:.35s;
}

.luxury-nav .nav-item:last-child .nav-link{
    border-right:none;
}

.luxury-nav .nav-link i{

    margin-right:10px;
    color:#d6aa32;
}

.luxury-nav .nav-link:hover{

    color:#d6aa32;
}

.luxury-nav .active{

    background:#d6aa32;
    color:#111 !important;
    border-radius:10px;
    font-weight:600;
}

.luxury-nav .active i{
    color:#111;
}

/* Mobile */

.navbar-toggler{
    border:1px solid #d6aa32;
}

.navbar-toggler i{
    color:#d6aa32;
    font-size:24px;
}

@media(max-width:991px){

.brand-area h1{
font-size:42px;
}

.brand-area p{
font-size:14px;
letter-spacing:2px;
}

.luxury-nav .nav-link{

border:none;
text-align:left;
padding:14px 20px;
}

.luxury-nav .active{
border-radius:8px;
}

}

/*==============================
Hero
===============================*/

.hero-section{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:
    radial-gradient(circle at left,#2d2614 0%,transparent 40%),
    radial-gradient(circle at right,#1b1407 0%,transparent 45%),
    #070707;
}

.hero-section::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    border:2px solid rgba(214,170,50,.35);
    border-radius:50%;
    right:-120px;
    top:50%;
    transform:translateY(-50%);
}

.hero-section::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border:2px solid rgba(214,170,50,.15);
    border-radius:50%;
    right:-40px;
    top:50%;
    transform:translateY(-50%);
}

/* Left */

.hero-tag{
    color:#d9b238;
    font-size:15px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    gap:15px;
}

.hero-tag::before,
.hero-tag::after{
    content:"";
    width:60px;
    height:1px;
    background:#d9b238;
}

.hero-title{
    font-family:"Cormorant Garamond",serif;
    font-size:59px;
    font-weight:700;
    line-height:1.05;
}

.hero-title span{
    color:#d9b238;
}

.hero-line{
    width:160px;
    height:3px;
    background:#d9b238;
    margin:30px 0;
}

.hero-text{
     font-size: 17px;
    color: #c7c7c7;
    line-height: 1.4;
    max-width: 650px;
}

.hero-buttons{
    margin-top:45px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-gold{
    background:#d9b238;
    color:#111;
    padding:18px 40px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
}

.btn-gold:hover{
    background:#fff;
    color:#111;
}

.btn-outline-gold{
    border:2px solid #d9b238;
    color:#d9b238;
    padding:18px 40px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.btn-outline-gold:hover{
    background:#d9b238;
    color:#111;
}

/* Right */

.hero-right{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.model-circle{
    width:480px;
    height:480px;
    border-radius:50%;
    border:3px solid #d9b238;
    background:
    radial-gradient(circle at top,#222,#090909);
    position:relative;
}

.model-circle::before{
    content:"";
    position:absolute;
    inset:22px;
    border-radius:50%;
    border:1px solid rgba(217,178,56,.4);
}

.model-circle i{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    font-size:150px;
    color:#d9b238;
}

/* Experience Badge */

.exp-badge{
    position:absolute;
    left:0;
    bottom:40px;
    width:140px;
    height:140px;
    background:#d9b238;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#111;
    border:6px solid #111;
    box-shadow:0 0 30px rgba(217,178,56,.35);
}

.exp-badge h2{
    margin:0;
    font-size:42px;
    font-family:"Cormorant Garamond",serif;
}

.exp-badge p{
    margin:0;
    font-size:12px;
    font-weight:600;
    text-align:center;
}

/* Dots */

.dot-box{
    position:absolute;
    width:170px;
    height:170px;
    background-image:radial-gradient(#d9b238 1.5px,transparent 1.5px);
    background-size:16px 16px;
    opacity:.4;
}

.dot1{
    right:-20px;
    top:40px;
}

.dot2{
    left:-40px;
    bottom:20px;
}

@media(max-width:991px){

.hero-section{
padding:70px 0;
text-align:center;
}

.hero-tag{
justify-content:center;
}

.hero-title{
font-size:50px;
}

.hero-line{
margin:25px auto;
}

.hero-text{
margin:auto;
font-size:17px;
}

.hero-buttons{
justify-content:center;
}

.hero-right{
margin-top:70px;
}

.model-circle{
width:340px;
height:340px;
}

.model-circle i{
font-size:110px;
}

.exp-badge{
left:50%;
transform:translateX(-50%);
bottom:-20px;
}

}




.whychoose{
    background:#080808;
    color:#fff;
    padding:100px 0;
}

.wc-subtitle{
    color:#d4af37;
    font-size:14px;
    letter-spacing:4px;
    font-weight:600;
}

.wc-title{
    font-size:52px;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
    margin:15px 0;
}

.wc-title span{
    color:#d4af37;
}

.wc-desc{
    max-width:720px;
    margin:auto;
    color:#bdbdbd;
    font-size:17px;
    line-height:1.8;
}

.wc-card{
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.wc-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#d4af37;
    transform:scaleX(0);
    transition:.4s;
}

.wc-card:hover::before,
.wc-card.active::before{
    transform:scaleX(1);
}

.wc-card:hover,
.wc-card.active{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 45px rgba(212,175,55,.15);
}

.wc-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#1b1b1b;
    border:2px solid #d4af37;
    display:flex;
    align-items:center;
    justify-content:center;
}

.wc-icon i{
    color:#d4af37;
    font-size:34px;
}

.wc-card h4{
    font-size:24px;
    margin-bottom:15px;
    font-weight:600;
}

.wc-card p{
    color:#bdbdbd;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

.wc-title{
    font-size:38px;
}

.wc-card{
    padding:30px 25px;
}

}






.featured-models{
    background:#050505;
    padding:100px 0;
}

.fm-subtitle{
    color:#d4af37;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.fm-title{
    color:#fff;
    font-size:55px;
    font-family:'Cormorant Garamond',serif;
    margin:15px 0;
}

.fm-title span{
    color:#d4af37;
}

.fm-desc{
    color:#bdbdbd;
    max-width:650px;
    margin:auto;
}

.model-card{
    background:#111;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(212,175,55,.15);
}

.model-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(212,175,55,.15);
}

.model-img{
    overflow:hidden;
    position:relative;
}

.model-img img{
    width:100%;
    height:360px;
    object-fit:cover;
    transition:.5s;
}

.model-card:hover img{
    transform:scale(1.08);
}

.model-content{
    text-align:center;
    padding:22px;
}

.model-content h4{
    color:#fff;
    margin-bottom:6px;
    font-size:24px;
    font-family:'Cormorant Garamond',serif;
}

.model-content span{
    color:#d4af37;
    font-size:14px;
    letter-spacing:1px;
}

@media(max-width:991px){

.fm-title{
    font-size:40px;
}

.model-img img{
    height:320px;
}

}



.agency-content{
    background:#0b0b0b;
    padding:100px 0;
}

.content-header{
    max-width:900px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;
}

.content-header h1{
    color:#fff;
    font-size:52px;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.2;
}

.content-header p{
    color:#bdbdbd;
    font-size:17px;
    line-height:1.9;
}

.content-box{
    margin-bottom:50px;
}

.content-box h2{
    color:#d4af37;
    font-size:36px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:18px;
    border-left:4px solid #d4af37;
    padding-left:18px;
}

.content-box p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:18px;
    font-size:16px;
}

.small-content{
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    border-radius:15px;
    padding:30px;
    height:100%;
    transition:.3s;
}

.small-content:hover{
    transform:translateY(-6px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(212,175,55,.12);
}

.small-content h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;
}

.small-content p{
    color:#bdbdbd;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

.content-header h1{
    font-size:38px;
}

.content-box h2{
    font-size:30px;
}

.small-content{
    padding:25px;
}

.small-content h3{
    font-size:22px;
}

}







.price-section{
    background:#080808;
    padding:100px 0;
}

.price-subtitle{
    color:#d4af37;
    font-size:14px;
    letter-spacing:4px;
    font-weight:600;
}

.price-title{
    color:#fff;
    font-size:55px;
    font-family:'Cormorant Garamond',serif;
    margin:15px 0;
}

.price-title span{
    color:#d4af37;
}

.price-desc{
    color:#bdbdbd;
    max-width:650px;
    margin:auto;
}

.pricing-card{
    position:relative;
    background:#111;
    border:1px solid rgba(212,175,55,.2);
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    height:100%;
}

.pricing-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(212,175,55,.18);
}

.pricing-card.active{
    border:2px solid #d4af37;
    transform:scale(1.04);
}

.popular{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#d4af37;
    color:#111;
    padding:7px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.price-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    border:2px solid #d4af37;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.price-icon i{
    color:#d4af37;
    font-size:34px;
}

.pricing-card h3{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;
    font-size:32px;
}

.price{
    color:#d4af37;
    font-size:48px;
    font-weight:700;
    margin-bottom:30px;
}

.price ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.price ul li{
    color:#cfcfcf;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.price ul li i{
    color:#d4af37;
    margin-right:10px;
}

.price-btn{
    display:inline-block;
    background:#d4af37;
    color:#111;
    padding:14px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.price-btn:hover{
    background:#fff;
    color:#111;
}

@media(max-width:991px){

.price-title{
    font-size:40px;
}

.pricing-card.active{
    transform:none;
}

}


.luxfaq-section{
    background:#050505;
    padding:100px 0;
}

.faq-subtitle{
    color:#d4af37;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;
}

.faq-title{
    color:#fff;
    font-size:54px;
    font-family:'Cormorant Garamond',serif;
    margin:15px 0;
}

.faq-title span{
    color:#d4af37;
}

.faq-description{
    color:#bdbdbd;
    max-width:700px;
    margin:auto;
}

.luxfaq .accordion-item{
    background:#111;
    border:1px solid rgba(212,175,55,.18);
    border-radius:15px;
    margin-bottom:18px;
    overflow:hidden;
}

.luxfaq .accordion-button{
    background:#111;
    color:#fff;
    font-size:18px;
    font-weight:600;
    padding:22px;
    box-shadow:none;
}

.luxfaq .accordion-button:not(.collapsed){
    background:#d4af37;
    color:#111;
}

.luxfaq .accordion-button::after{
    filter:invert(1);
}

.luxfaq .accordion-button:not(.collapsed)::after{
    filter:none;
}

.luxfaq .accordion-body{
    background:#181818;
    color:#cfcfcf;
    line-height:1.9;
    padding:25px;
}

.faq-box{
    background:#111;
    border:2px solid #d4af37;
    border-radius:20px;
    padding:45px 35px;
    text-align:center;
}

.faq-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    border:2px solid #d4af37;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
}

.faq-icon i{
    color:#d4af37;
    font-size:38px;
}

.faq-box h3{
    color:#fff;
    font-size:34px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;
}

.faq-box p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:30px;
}

.faq-btn{
    display:inline-block;
    background:#d4af37;
    color:#111;
    padding:14px 40px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.faq-btn:hover{
    background:#fff;
    color:#111;
}

@media(max-width:991px){

.faq-title{
    font-size:38px;
}

.faq-box{
    margin-top:40px;
}

}






.gold-content-section{

    padding:100px 0;

    background:linear-gradient(135deg,#fff8e7 0%,#ffe39b 35%,#f8c94c 100%);

    position:relative;

    overflow:hidden;
}

.gold-content-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

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

    top:-180px;

    right:-120px;
}

.gold-content-section::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

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

    bottom:-120px;

    left:-100px;
}

.gold-tag{

    color:#7a4d00;

    font-weight:700;

    letter-spacing:3px;

    font-size:14px;

    margin-bottom:20px;

    display:inline-block;
}

.gold-title{

    font-size:54px;

    font-family:'Cormorant Garamond',serif;

    color:#1a1a1a;

    margin-bottom:25px;

    font-weight:700;
}

.gold-title span{

    color:#9b6200;
}

.gold-text{

    color:#4b4b4b;

    line-height:1.9;

    margin-bottom:35px;
}

.gold-feature{

    display:flex;

    gap:20px;

    margin-bottom:25px;
}

.gold-icon{

    min-width:55px;

    height:55px;

    border-radius:50%;

    background:#111;

    color:#FFD54A;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;
}

.gold-feature h5{

    margin-bottom:8px;

    color:#111;
}

.gold-feature p{

    margin:0;

    color:#555;
}

.gold-btn{

    display:inline-block;

    background:#111;

    color:#FFD54A;

    padding:16px 38px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    margin-top:20px;

    transition:.3s;
}

.gold-btn:hover{

    background:#fff;

    color:#111;
}

.gold-card{

    background:#111;

    color:#fff;

    border-radius:25px;

    padding:45px;

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

.gold-number{

    width:120px;

    height:120px;

    border-radius:50%;

    background:#FFD54A;

    color:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    font-weight:700;

    margin-bottom:30px;
}

.gold-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    margin-bottom:20px;
}

.gold-card p{

    color:#d0d0d0;

    line-height:1.8;
}

.gold-card hr{

    border-color:rgba(255,255,255,.15);

    margin:35px 0;
}

.gold-card h4{

    color:#FFD54A;

    font-size:32px;

    margin-bottom:5px;
}

.gold-card span{

    color:#bdbdbd;
}

@media(max-width:991px){

.gold-title{

font-size:40px;
}

.gold-card{

margin-top:50px;
}

}


.luxury-content{
    padding:100px 0;
    background:linear-gradient(135deg,#fff8df 0%,#ffe08a 45%,#f5c54b 100%);
    position:relative;
    overflow:hidden;
}

.luxury-content::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.18);
    border-radius:50%;
    top:-150px;
    right:-100px;
}

.luxury-content::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(255,255,255,.12);
    border-radius:50%;
    bottom:-100px;
    left:-80px;
}

.lux-tag{
    display:inline-block;
    color:#8b5d00;
    letter-spacing:4px;
    font-weight:700;
    margin-bottom:20px;
}

.lux-title{
    font-size:56px;
    font-family:'Cormorant Garamond',serif;
    color:#111;
    margin-bottom:25px;
    font-weight:700;
}

.lux-title span{
    color:#8b5d00;
}

.lux-desc{
    margin:auto;
    color:#444;
    line-height:1.9;
}

.lux-box{
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(12px);
    border-radius:20px;
    padding:35px;
    text-align:center;
    height:100%;
    transition:.35s;
}

.lux-box:hover{
    transform:translateY(-8px);
    background:#fff;
}

.lux-icon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:#111;
    color:#ffd54a;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:25px;
}

.lux-box h3{
    color:#111;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:15px;
    font-size:30px;
}

.lux-box p{
    color:#555;
    line-height:1.8;
}

.lux-bottom{
    background:#111;
    border-radius:25px;
    padding:60px;
    text-align:center;
}

.lux-bottom h3{
    color:#ffd54a;
    font-size:40px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;
}

.lux-bottom p{
    color:#d5d5d5;
    line-height:1.9;
    max-width:900px;
    margin:0 auto 35px;
}

.lux-btn{
    display:inline-block;
    background:#ffd54a;
    color:#111;
    padding:16px 42px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.lux-btn:hover{
    background:#111;
    color:#ffd54a;
}

@media(max-width:991px){

.lux-title{
    font-size:40px;
}

.lux-bottom{
    padding:40px 25px;
}

.lux-bottom h3{
    font-size:32px;
}

}




.fixed-contact-bar{

    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    z-index:9999;

    background:#111;

    border-top:2px solid #d4af37;

    box-shadow:0 -5px 20px rgba(0,0,0,.25);

}

.contact-wrapper{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;

    padding:12px 0;

}

.call-btn,
.whatsapp-btn{

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

    padding:14px 30px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.call-btn{

    background:#d4af37;
    color:#111;

}

.call-btn:hover{

    background:#fff;
    color:#111;

}

.whatsapp-btn{

    background:#25D366;
    color:#fff;

}

.whatsapp-btn:hover{

    background:#1ea851;
    color:#fff;

}

.call-btn i,
.whatsapp-btn i{

    font-size:20px;

}

/* Mobile */

@media(max-width:767px){

body{
padding-bottom:72px;
}

.contact-wrapper{

gap:10px;

padding:10px;

}

.call-btn,
.whatsapp-btn{

flex:1;

padding:12px 10px;

font-size:14px;

}

.call-btn span,
.whatsapp-btn span{

display:none;

}

.call-btn i,
.whatsapp-btn i{

font-size:22px;

}

}