:root{

    --primary:#ffc107;
    --primary-light:#ffd54f;
    --dark:#050505;
    --dark2:#111111;
    --card:#181818;
    --white:#ffffff;
    --text:#cfcfcf;
    --border:rgba(255,255,255,.08);

}

/*==========================================
            FOOTER
==========================================*/

.footer-premium{

    position:relative;

    background:
    linear-gradient(
        180deg,
        #090909,
        #050505
    );

    color:var(--white);

    overflow:hidden;

    padding:20px 0 25px;

    border-top:1px solid rgba(255,193,7,.15);

}

/* Gold Glow */

.footer-premium::before{

    content:"";

    position:absolute;

    width:50px;

    height:50px;

    background:rgba(255,193,7,.06);

    border-radius:50%;

    filter:blur(120px);

    top:-200px;

    left:-150px;

}

.footer-premium::after{

    content:"";

    position:absolute;

    width:50px;

    height:50px;

    background:rgba(255,193,7,.04);

    border-radius:50%;

    filter:blur(120px);

    right:-120px;

    bottom:-120px;

}

.footer-premium .container{

    position:relative;

    z-index:2;

    max-width:100%;

    overflow:hidden;


}

/*==========================================
            COLUMNS
==========================================*/

.footer-column{

    margin-bottom:15px;

    transition:.4s ease;

}

.footer-column:hover{

    transform:translateY(-6px);

}

/*==========================================
            BRAND
==========================================*/

.footer-brand{

    display:flex;

    align-items:center;

    margin-bottom:30px;

}

.footer-logo{

    width:38px;

    height:38px;

    border-radius:50%;

    margin-right:18px;

    transition:.6s;

}

.footer-brand:hover .footer-logo{

    transform:rotate(360deg);

}

.footer-brand h2{

    font-size:30px;

    font-weight:800;

    margin:0;

    color:#ffc107;

    letter-spacing:.5px;

}

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

.footer-description{

    max-width:500px;

    color:#d5d5d5;


    font-size:13px;

    margin-bottom:10px;

}

/*==========================================
            SOCIAL
==========================================*/

.footer-social{

    display:flex;

    gap:15px;

    margin-bottom:25px;

}

.footer-social a{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#181818;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    font-size:20px;

    transition:.4s;

}

.footer-social a:hover{

    background:var(--primary);

    color:#000;

    transform:
        translateY(-6px)
        rotate(360deg);

    box-shadow:

        0 10px 30px rgba(255,193,7,.45);

}

/*==========================================
            AWARD BOX
==========================================*/

.footer-awards{

    background:#161616;

    border-left:5px solid var(--primary);

    border-radius:18px;

    padding:2px;

    transition:.35s;

}

.footer-awards:hover{

    background:#1d1d1d;

    transform:translateY(-4px);

}

.footer-awards p{

    margin:12px;

    color:#ddd;

    font-size:13px;

}

/*====================================================
        SERVICES & CONTACT
====================================================*/

.footer-column h4{

    font-size:24px;

    font-weight:700;

    color:#fff;

    margin-bottom:28px;

    position:relative;

    display:inline-block;

}

.footer-column h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:45px;

    height:3px;

    border-radius:50px;

    background:var(--primary);

}

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

.footer-column ul{

    margin:0;

    padding:0;

    list-style:none;

}

.footer-column ul li{

    margin-bottom:8px;

}

.footer-column ul li a{

    color:#d0d0d0;

    text-decoration:none;

    transition:.35s;

    display:inline-flex;

    align-items:center;

    gap:2px;

}

.footer-column ul li a::before{

    content:"›";

    color:var(--primary);

    font-size:18px;

    transition:.35s;

}

.footer-column ul li a:hover{

    color:var(--primary);

    transform:translateX(8px);

}

/*==============================
        CONTACT
==============================*/

.footer-column p{

    color:#d5d5d5;

    margin-bottom:8px;

    display:flex;

    align-items:flex-start;

    gap:12px;

    line-height:1.8;

}

.footer-column p i{

    color:var(--primary);

    font-size:18px;

    min-width:22px;

    margin-top:3px;

}

/*==============================
        NEWSLETTER
==============================*/

.newsletter{

    margin-top:15px;

}

.newsletter input{

    width:100%;

    padding:15px 18px;

    border-radius:12px;

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

    background:#161616;

    color:#fff;

    margin-bottom:2px;

    transition:.35s;

}

.newsletter input::placeholder{

    color:#999;

}

.newsletter input:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:

    0 0 15px rgba(255,193,7,.25);

}

.newsletter button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:12px;

    background:var(--primary);

    color:#000;

    font-weight:700;

    letter-spacing:.5px;

    transition:.35s;

}

.newsletter button:hover{

    background:var(--primary-light);

    transform:translateY(-4px);

    box-shadow:

    0 12px 25px rgba(255,193,7,.35);

}

/*====================================================
            MAP
====================================================*/

.footer-map{

    margin-top:5px;

    border-radius:18px;

    overflow:hidden;

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

    box-shadow:

    0 20px 40px rgba(0,0,0,.35);

    transition:.4s;

}

.footer-map:hover{

    transform:translateY(-6px);

}

.footer-map iframe{

    width:100%;

    height:300px;

    border:none;

    display:block;

}


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

.footer-column{

    position:relative;

}

.footer-column::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    border-radius:18px;

    opacity:0;

    transition:.35s;

    pointer-events:none;

}

.footer-column:hover::before{

    opacity:1;

}

/*====================================================
            STATS SECTION
====================================================*/

.footer-stats{

    display:grid;

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

    gap:25px;

    margin:1px 0 10px;

}

.footer-stats div{

    background:#161616;

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

    border-radius:18px;

    padding:15px;

    text-align:center;

    transition:.35s;

}

.footer-stats div:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 15px 35px rgba(255,193,7,.18);

}

.footer-stats h2{

    color:var(--primary);

    font-size:22px;

    font-weight:800;

    margin-bottom:10px;

}

.footer-stats span{

    color:#d5d5d5;

    font-size:16px;

}

/*====================================================
            PAYMENT ICONS
====================================================*/

.payment-icons{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:30px;

    padding:20px;

    margin-bottom:0px;

    background:#121212;

    border-radius:18px;


}

.payment-icons i{

    font-size:30px;

    color:#bdbdbd;

    transition:.35s;

}

.payment-icons i:hover{

    color:var(--primary);

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

}

/*====================================================
            FOOTER BOTTOM
====================================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom p{

    margin:0;

    color:#bdbdbd;

}

.footer-links{

    display:flex;

    gap:25px;

}

.footer-links a{

    text-decoration:none;

    color:#bdbdbd;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

}

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

/* Laptop */

@media(max-width:1200px){

.footer-brand h2{

    font-size:34px;

}

.footer-stats{

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

}

}

/* Tablet */

@media(max-width:992px){

.footer-premium{

    text-align:center;

}

.footer-brand{

    justify-content:center;

}

.footer-description{

    margin:auto;

    margin-bottom:10px;

}

.footer-social{

    justify-content:center;

}

.footer-column h4::after{

    left:50%;

    transform:translateX(-50%);

}

.footer-column p{

    justify-content:center;

}

.footer-bottom{

    justify-content:center;

}

.footer-links{

    justify-content:center;

}

.payment-icons{

    gap:22px;

}

}

/* Mobile */

@media(max-width:768px){

.footer-premium{

    padding:60px 0 20px;

}

.footer-brand{

    flex-direction:column;

    text-align:center;

}

.footer-logo{

    margin-right:0;

    margin-bottom:15px;

}

.footer-brand h2{

    font-size:28px;

}

.footer-description{

    font-size:15px;

}

.footer-stats{

    grid-template-columns:1fr;

}

.footer-map iframe{

    height:240px;

}

.payment-icons{

    font-size:32px;

    gap:20px;

}

.footer-links{

    flex-direction:column;

    gap:12px;

}

.footer-bottom{

    text-align:center;

}

}

/* Small Mobile */

@media(max-width:480px){

.footer-premium{

    padding:50px 0 20px;

}

.footer-logo{

    width:58px;

    height:58px;

}

.footer-brand h2{

    font-size:24px;

}

.footer-column h4{

    font-size:20px;

}

.footer-map iframe{

    height:200px;

}

.newsletter input,

.newsletter button{

    padding:13px;

}

.payment-icons i{

    font-size:30px;

}

#backToTop{

    width:48px;

    height:48px;

    right:15px;

    bottom:15px;

    font-size:18px;

}

}

/*====================================================
            REVEAL ANIMATION
====================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*====================================================
            SELECTION
====================================================*/

::selection{

    background:var(--primary);

    color:#000;

}

/*====================================================
            SMOOTH SCROLL
====================================================*/

html{

    scroll-behavior:smooth;

}

/*===============================
        CTA SECTION
===============================*/

.book-event{

    background:#999393;

    padding:80px 0;

}

.book-card{

    background:

    linear-gradient(

    135deg,

    #111,

    #1a1a1a

    );

    border-radius:30px;

    padding:70px;

    border:1px solid rgba(255,193,7,.15);

    position:relative;

    overflow:hidden;

}

.book-card::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:

    rgba(255,193,7,.08);

    border-radius:50%;

    top:-180px;

    right:-120px;

    filter:blur(90px);

}

.cta-tag{

    display:inline-block;

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

    color:#ffc107;

    padding:10px 18px;

    border-radius:30px;

    margin-bottom:25px;

    font-weight:600;

}

.book-card h2{

    font-size:52px;

    color:white;

    font-weight:800;

    margin-bottom:20px;

}

.book-card h2 span{

    color:#ffc107;

}

.book-card p{

    color:#d5d5d5;

    line-height:1.9;

    max-width:650px;

}

.cta-btn{

    display:inline-block;

    width:240px;

    padding:18px;

    background:#ffc107;

    color:black;

    text-decoration:none;

    font-weight:700;

    border-radius:50px;

    transition:.35s;

    margin-bottom:18px;

}

.cta-btn:hover{

    transform:translateY(-5px);

    background:#ffd54f;

}

.cta-btn-outline{

    display:inline-block;

    width:240px;

    padding:18px;

    border:2px solid #ffc107;

    color:#ffc107;

    text-decoration:none;

    border-radius:50px;

    transition:.35s;

}

.cta-btn-outline:hover{

    background:#ffc107;

    color:black;

}

@media(max-width:992px){

.book-card{

    text-align:center;

    padding:50px 30px;

}

.book-card h2{

    font-size:38px;

}

.cta-btn,

.cta-btn-outline{

    width:100%;

}

}

/*===============================
    SUBSCRIBE POPUP
================================*/

.subscribe-popup{

    position:fixed;

    top:190px;

    right:-420px;

    width:380px;

    background:#c1bbbb;

    border-left:5px solid #ffc107;

    border-radius:18px;

    padding:20px;

    display:flex;

    align-items:center;

    gap:18px;

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

    z-index:999999;

    transition:.45s ease;

}

.subscribe-popup.show{

    right:25px;

}

.popup-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#ffc107;

    color:#e8e8e8;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

}

.popup-content{

    flex:1;

}

.popup-content h4{

    color:#020202;

    margin-bottom:6px;

}

.popup-content p{

    color:#020202;

    margin:0;

    font-size:14px;

    line-height:1.6;

}

.popup-close{

    background:none;

    border:none;

    color:#999;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

.popup-close:hover{

    color:#ffc107;

    transform:rotate(90deg);

}

/*====================================================
                LUXURY FAQ
====================================================*/

.luxury-faq{

    position:relative;

    padding:50px 0;

    background:
    radial-gradient(circle at top left,
    rgba(146, 145, 141, 0.08),
    transparent 45%),

    radial-gradient(circle at bottom right,
    rgba(255,193,7,.05),
    transparent 40%),

    #222;

    overflow:hidden;

}

.luxury-faq::before{

    content:"";

    position:absolute;

    width:500px;

    height:700px;

    left:-350px;

    top:-350px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(255,193,7,.08),

    transparent 70%);

    filter:blur(120px);

}

.luxury-faq::after{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    right:-280px;

    bottom:-250px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(255,193,7,.05),

    transparent 70%);

    filter:blur(100px);

}

/*====================================================
                HEADER
====================================================*/

.faq-header{

    text-align:center;

    margin-bottom:70px;

}

.faq-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 24px;

    border-radius:50px;

    background:

    rgba(255,193,7,.12);

    color:#ffc107;

    font-weight:700;

    letter-spacing:.5px;

}

.faq-header h2{

    margin-top:25px;

    color:#fff;

    font-size:52px;

    font-weight:800;

}

.faq-header p{

    max-width:720px;

    margin:25px auto 0;

    color:#cfcfcf;

    font-size:18px;

    line-height:1.9;

}

/*====================================================
                WRAPPER
====================================================*/

.faq-wrapper{

    max-width:950px;

    margin:auto;

}

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

.faq-card{

    position:relative;

    margin-bottom:22px;

    border-radius:24px;

    overflow:hidden;

    background:

    rgba(255,255,255,.03);

    backdrop-filter:blur(20px);

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

    transition:.45s;

}

.faq-card:hover{

    transform:

    translateY(-6px);

    border-color:#ffc107;

    box-shadow:

    0 20px 60px rgba(255,193,7,.15);

}

/*====================================================
                GOLD GLOW
====================================================*/

.faq-glow{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at center,

    rgba(255,193,7,.15),

    transparent 70%);

    opacity:0;

    transition:.45s;

    pointer-events:none;

}

.faq-card:hover .faq-glow{

    opacity:1;

}

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

.faq-btn{

    width:100%;

    background:none;

    border:none;

    color:#fff;

    padding:8px 3px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

}

.faq-left{

    display:flex;

    align-items:center;

    gap:20px;

}

.faq-circle{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:

    rgba(255,193,7,.10);

    color:#ffc107;

    font-size:22px;

    transition:.4s;

}

.faq-card:hover .faq-circle{

    transform:

    rotate(12deg)

    scale(1.08);

    background:#ffc107;

    color:#000;

}

.faq-left span{

    font-size:20px;

    font-weight:700;

}

.faq-plus{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:

    rgba(255,193,7,.10);

    color:#ffc107;

    font-size:30px;

    transition:.45s;

}

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

.faq-content{

    max-height:0;

    overflow:hidden;

    opacity:0;

    transition:
    max-height .55s ease,
    opacity .35s ease,
    padding .35s ease;

    background:
    linear-gradient(
    180deg,
    rgba(199, 195, 187, 0.02),
    rgba(255,255,255,.01));

}

.faq-content p{

    padding:0 35px;

    margin:0;

    color:#d8d8d8;

    font-size:16px;

    line-height:1.9;

}

.faq-card.active .faq-content{

    max-height:320px;

    opacity:1;

    padding-bottom:32px;

}

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

.faq-card.active .faq-plus{

    transform:rotate(225deg);

    background:#ffc107;

    color:#000;

    box-shadow:
    0 0 20px rgba(255,193,7,.45);

}

/*====================================================
            GOLD BORDER
====================================================*/

.faq-card{

    position:relative;

}

.faq-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:0;

    border-radius:20px;

    background:#ffc107;

    transition:.45s;

}

.faq-card.active::before{

    height:100%;

}

/*====================================================
            GOLD SHINE
====================================================*/

.faq-card::after{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:80px;

    height:100%;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(255,255,255,.18),

    transparent);

    transform:skewX(-25deg);

}

.faq-card:hover::after{

    animation:shine .9s linear;

}

@keyframes shine{

    from{

        left:-120%;

    }

    to{

        left:130%;

    }

}

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

.faq-card.active{

    border-color:#ffc107;

    box-shadow:

    0 20px 60px rgba(255,193,7,.18),

    0 0 0 1px rgba(255,193,7,.18);

}

/*====================================================
            FLOATING ANIMATION
====================================================*/

.faq-card{

    animation:faqFloat .8s ease both;

}

@keyframes faqFloat{

    from{

        opacity:0;

        transform:

        translateY(35px);

    }

    to{

        opacity:1;

        transform:

        translateY(0);

    }

}

/*====================================================
            STAGGER EFFECT
====================================================*/

.faq-card:nth-child(1){

    animation-delay:.1s;

}

.faq-card:nth-child(2){

    animation-delay:.18s;

}

.faq-card:nth-child(3){

    animation-delay:.26s;

}

.faq-card:nth-child(4){

    animation-delay:.34s;

}

.faq-card:nth-child(5){

    animation-delay:.42s;

}

.faq-card:nth-child(6){

    animation-delay:.5s;

}

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

.faq-card:hover .faq-left span{

    color:#ffc107;

    transition:.35s;

}

/*====================================================
            PREMIUM SHADOW
====================================================*/

.faq-card:hover{

    transform:

    translateY(-8px)

    scale(1.01);

}

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

@media(max-width:992px){

.faq-header h2{

    font-size:42px;

}

.faq-left span{

    font-size:18px;

}

}

@media(max-width:768px){

.luxury-faq{

    padding:80px 0;

}

.faq-header{

    margin-bottom:45px;

}

.faq-header h2{

    font-size:32px;

}

.faq-header p{

    font-size:15px;

}

.faq-btn{

    padding:22px;

}

.faq-left{

    gap:14px;

}

.faq-circle{

    width:48px;

    height:48px;

    font-size:18px;

}

.faq-left span{

    font-size:16px;

}

.faq-plus{

    width:38px;

    height:38px;

    font-size:24px;

}

.faq-content p{

    padding:0 22px;

    font-size:15px;

}

}
