*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#050505;
    overflow-x:hidden;
    color:#fff;
    padding-top:95px;
}

/* ======================
    HERO SECTION
====================== */

.hero{
    width:100%;
    min-height:100vh;
    position:relative;
    overflow:hidden;
    padding:30px 8%;
    background:#050505;
}

/* Prevent Content Hide Behind Fixed Header */



/* Glow */

.glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:0;
}

.glow1{
    width:400px;
    height:400px;
    background:#ffb703;
    top:-120px;
    left:-100px;
    opacity:.15;
}

.glow2{
    width:350px;
    height:350px;
    background:#00b4ff;
    bottom:-100px;
    right:-100px;
    opacity:.15;
}

/* ======================
    NAVBAR
====================== */

/* ======================
    STICKY NAVBAR
====================== */

.navbar{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:18px 8%;

    transition:.4s ease;

    background:transparent;
}

/* Sticky Active */

.navbar.sticky{

    background:rgba(5,5,5,.92);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,.06);

    box-shadow:0 10px 35px rgba(0,0,0,.35);

}

/* Body Space */

body{
    padding-top:90px;
}

/* Logo */

.logo h2{
    font-size:34px;
    font-weight:800;
}

.logo span{
    color:#ffb703;
}

/* Nav Menu */

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-menu a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.nav-menu a::before{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:#ffb703;
    left:0;
    bottom:-6px;
    transition:.4s;
}

.nav-menu a:hover{
    color:#ffb703;
}

.nav-menu a:hover::before{
    width:100%;
}

/* Right */

.nav-right{
    display:flex;
    align-items:center;
    gap:20px;
}

/* Button */

.book-btn{
    padding:14px 30px;
    border-radius:50px;
    background:#ffb703;
    color:#000;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    white-space:nowrap;
}

.book-btn:hover{
    transform:translateY(-5px);
}

/* ======================
    HAMBURGER
====================== */

.hamburger{
    width:50px;
    height:50px;
    border-radius:14px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    display:none;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    cursor:pointer;
    gap:6px;
    transition:.4s;
}

.hamburger span{
    width:24px;
    height:2px;
    background:#fff;
    border-radius:20px;
    transition:.4s;
}

/* Active */

.hamburger.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

/* ======================
    MOBILE MENU
====================== */

.mobile-menu{
    position:fixed;
    top:90px;
    left:-100%;
    width:100%;
    height:calc(100vh - 90px);
    background:rgba(5,5,5,.98);
    backdrop-filter:blur(12px);
    z-index:998;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:60px 20px;
    gap:30px;
    transition:.5s;
}

.mobile-menu.active{
    left:0;
}

.mobile-menu a{
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:600;
    transition:.3s;
}

.mobile-menu a:hover{
    color:#ffb703;
}

.mobile-book-btn{
    margin-top:20px;
    padding:16px 35px;
    border-radius:50px;
    background:#ffb703;
    color:#000 !important;
}

/* ======================
    RESPONSIVE
====================== */

@media(max-width:991px){

    .nav-menu{
        display:none;
    }

    .hamburger{
        display:flex;
    }

}

@media(max-width:768px){

    .navbar{
        padding:10px 10px;
    }

    .logo h2{
        font-size:28px;
    }

    .book-btn{
        display:none;
    }

    .mobile-menu{
        top:80px;
        height:calc(100vh - 80px);
    }

}

@media(max-width:480px){

    .logo h2{
        font-size:24px;
    }

    .hamburger{
        width:45px;
        height:45px;
    }

}

/* ======================
    HERO CONTENT
====================== */

.hero-container{
    width:100%;
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
    z-index:2;
}

/* LEFT */

.hero-left{
    flex:1;
}

.tag{
    display:inline-block;
    padding:12px 25px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:50px;
    background:rgba(255,255,255,.05);
    margin-bottom:25px;
    color:#ffb703;
}

.hero-left h1{
    font-size:75px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero-left h1 span{
    color:#ffb703;
}

.hero-left p{
    font-size:18px;
    line-height:1.8;
    color:#cfcfcf;
    max-width:650px;
    margin-bottom:35px;
}

/* Buttons */

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.primary-btn,
.secondary-btn{
    padding:18px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.primary-btn{
    background:#ffb703;
    color:#000;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,.1);
    color:#fff;
}

.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-5px);
}

/* Stats */

.hero-stats{
    display:flex;
    gap:30px;
}

.stat-box{
    background:rgba(255,255,255,.04);
    padding:25px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.05);
    min-width:150px;
}

.stat-box h3{
    font-size:35px;
    color:#ffb703;
    margin-bottom:10px;
}

/* RIGHT */

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.image-card{
    width:450px;
    position:relative;
}

.image-card img{
    width:100%;
    border-radius:30px;
    object-fit:cover;
}

/* Floating Card */

.floating-card{
    position:absolute;
    bottom:20px;
    left:-40px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.1);
    padding:20px 25px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:15px;
    animation:float 4s infinite ease-in-out;
}

.floating-card i{
    font-size:40px;
    color:#ffb703;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* Floating Icons */

.floating-icon{
    position:absolute;
    font-size:40px;
    color:rgba(255,255,255,.08);
    animation:rotate 8s linear infinite;
}

.icon1{
    top:20%;
    left:5%;
}

.icon2{
    bottom:20%;
    right:10%;
}

.icon3{
    top:40%;
    right:45%;
}

@keyframes rotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* ======================
    RESPONSIVE
====================== */

@media(max-width:1100px){

    .hero-container{
        flex-direction:column;
        padding-top:80px;
    }

    .hero-left{
        text-align:center;
    }

    .hero-left p{
        margin:auto;
        margin-bottom:35px;
    }

    .hero-buttons,
    .hero-stats{
        justify-content:center;
        flex-wrap:wrap;
    }

}

@media(max-width:768px){

    nav{
        display:none;
    }

    .hero-left h1{
        font-size:48px;
    }

    .image-card{
        width:100%;
    }

    .floating-card{
        left:20px;
        right:20px;
        bottom:20px;
    }

    .hero{
        padding:20px;
    }

}



/* =========================
    ABOUT SECTION
========================= */

.about-section{
    width:100%;
    padding:120px 8%;
    background:#080808;
    position:relative;
    overflow:hidden;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* LEFT */

.about-images{
    flex:1;
    position:relative;
    min-height:650px;
}

.img-box{
    position:absolute;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.img-box:hover img{
    transform:scale(1.08);
}

/* Image Positions */

.img1{
    width:340px;
    height:460px;
    top:0;
    left:0;
}

.img2{
    width:280px;
    height:360px;
    bottom:0;
    right:30px;
    border:6px solid #080808;
}

/* Experience Card */

.experience-card{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:180px;
    height:180px;
    border-radius:50%;
    background:linear-gradient(135deg,#ffb703,#ff8400);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    box-shadow:0 10px 40px rgba(255,183,3,.4);
    animation:pulse 3s infinite;
}

.experience-card h2{
    font-size:55px;
    color:#000;
    font-weight:800;
}

.experience-card p{
    color:#000;
    font-weight:700;
}

@keyframes pulse{

    0%{
        transform:translate(-50%,-50%) scale(1);
    }

    50%{
        transform:translate(-50%,-50%) scale(1.08);
    }

    100%{
        transform:translate(-50%,-50%) scale(1);
    }

}

/* RIGHT */

.about-content{
    flex:1;
}

.section-tag{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:rgba(255,183,3,.1);
    border:1px solid rgba(255,183,3,.2);
    color:#ffb703;
    margin-bottom:25px;
    font-weight:600;
    letter-spacing:1px;
}

.about-content h2{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:800;
}

.about-content p{
    color:#c7c7c7;
    line-height:1.9;
    margin-bottom:40px;
    font-size:17px;
}

/* Features */

.about-features{
    display:flex;
    flex-direction:column;
    gap:25px;
    margin-bottom:40px;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:20px;
    padding:22px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    transition:.4s;
}

.feature-box:hover{
    transform:translateX(10px);
    border-color:rgba(255,183,3,.4);
}

.feature-box i{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffb703;
    color:#000;
    font-size:30px;
}

.feature-box h4{
    font-size:22px;
    margin-bottom:6px;
}

.feature-box p{
    margin:0;
    font-size:15px;
}

/* Buttons */

.about-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.outline-btn{
    padding:18px 35px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.1);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.outline-btn:hover{
    background:#fff;
    color:#000;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .about-container{
        flex-direction:column;
    }

    .about-content{
        text-align:center;
    }

    .about-buttons{
        justify-content:center;
    }

}

@media(max-width:768px){

    .about-section{
        padding:90px 20px;
    }

    .about-content h2{
        font-size:40px;
    }

    .about-images{
        width:100%;
        min-height:540px;
    }

    .img1{
        width:240px;
        height:320px;
    }

    .img2{
        width:200px;
        height:260px;
    }

    .experience-card{
        width:130px;
        height:130px;
    }

    .experience-card h2{
        font-size:35px;
    }

}



/* =========================
    MUSIC SECTION
========================= */

.music-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Glow */

.music-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#ffb703;
    opacity:.08;
    filter:blur(150px);
    top:-150px;
    right:-100px;
}

/* Header */

.section-header{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.section-header h2{
    font-size:60px;
    line-height:1.2;
    margin:20px 0;
    font-weight:800;
}

.section-header p{
    color:#c7c7c7;
    line-height:1.9;
    font-size:17px;
}

/* Music Container */

.music-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    position:relative;
    z-index:2;
}

/* Card */

.music-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:30px;
    overflow:hidden;
    transition:.5s;
    position:relative;
}

.music-card:hover{
    transform:translateY(-12px);
    border-color:rgba(255,183,3,.3);
    box-shadow:0 15px 40px rgba(0,0,0,.4);
}

.active-card{
    border-color:rgba(255,183,3,.4);
}

/* Image */

.music-image{
    position:relative;
    overflow:hidden;
}

.music-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.music-card:hover .music-image img{
    transform:scale(1.08);
}

/* Play Button */

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:85px;
    height:85px;
    border-radius:50%;
    background:rgba(255,183,3,.9);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    color:#000;
    opacity:0;
    transition:.4s;
}

.music-card:hover .play-btn{
    opacity:1;
}

/* Content */

.music-content{
    padding:30px;
}

.music-content span{
    color:#ffb703;
    font-weight:600;
    display:inline-block;
    margin-bottom:15px;
}

.music-content h3{
    font-size:30px;
    margin-bottom:18px;
}

.music-content p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:30px;
}

/* Bottom */

.music-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.music-time{
    display:flex;
    align-items:center;
    gap:8px;
    color:#d8d8d8;
}

.music-bottom a{
    color:#ffb703;
    text-decoration:none;
    font-weight:700;
}

/* Button */

.music-btn{
    margin-top:70px;
    text-align:center;
}

/* Responsive */

@media(max-width:1100px){

    .music-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .music-section{
        padding:90px 20px;
    }

    .section-header h2{
        font-size:40px;
    }

    .music-container{
        grid-template-columns:1fr;
    }

    .music-image img{
        height:260px;
    }

}

/* =========================
    EVENTS SECTION
========================= */

.events-section{
    width:100%;
    padding:120px 8%;
    background:#080808;
    position:relative;
    overflow:hidden;
}

/* Glow */

.event-glow{
    position:absolute;
    width:450px;
    height:450px;
    background:#00b4ff;
    opacity:.08;
    filter:blur(140px);
    left:-100px;
    top:0;
}

/* Container */

.events-container{
    display:flex;
    flex-direction:column;
    gap:30px;
    position:relative;
    z-index:2;
}

/* Card */

.event-card{
    width:100%;
    padding:35px;
    border-radius:30px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.event-card::before{
    content:'';
    position:absolute;
    width:0%;
    height:100%;
    background:linear-gradient(90deg,rgba(255,183,3,.08),transparent);
    left:0;
    top:0;
    transition:.5s;
}

.event-card:hover::before{
    width:100%;
}

.event-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,183,3,.3);
}

.active-event{
    border-color:rgba(255,183,3,.4);
}

/* Date */

.event-date{
    min-width:120px;
    height:120px;
    border-radius:25px;
    background:linear-gradient(135deg,#ffb703,#ff8400);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#000;
    font-weight:800;
    position:relative;
    z-index:2;
}

.event-date h3{
    font-size:45px;
    line-height:1;
}

.event-date span{
    margin-top:8px;
    letter-spacing:2px;
}

/* Content */

.event-content{
    flex:1;
    position:relative;
    z-index:2;
}

.event-type{
    display:inline-block;
    margin-bottom:15px;
    color:#ffb703;
    font-weight:700;
    letter-spacing:1px;
}

.event-content h3{
    font-size:34px;
    margin-bottom:18px;
}

/* Info */

.event-info{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.event-info p{
    display:flex;
    align-items:center;
    gap:8px;
    color:#d0d0d0;
}

.event-info i{
    color:#ffb703;
}

/* Description */

.event-description{
    color:#bdbdbd;
    line-height:1.8;
    max-width:700px;
}

/* Button */

.event-action{
    position:relative;
    z-index:2;
}

.event-action a{
    padding:16px 30px;
    border-radius:50px;
    background:#ffb703;
    color:#000;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    white-space:nowrap;
}

.event-action a:hover{
    transform:translateY(-5px);
}

/* Responsive */

@media(max-width:1100px){

    .event-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .event-action{
        width:100%;
    }

    .event-action a{
        display:inline-flex;
    }

}

@media(max-width:768px){

    .events-section{
        padding:90px 20px;
    }

    .event-card{
        padding:25px;
    }

    .event-content h3{
        font-size:28px;
    }

    .event-date{
        width:100px;
        height:100px;
    }

    .event-date h3{
        font-size:35px;
    }

}


/* =========================
    GALLERY SECTION
========================= */

.gallery-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Blur */

.gallery-blur{
    position:absolute;
    width:500px;
    height:500px;
    background:#ffb703;
    opacity:.07;
    filter:blur(160px);
    right:-100px;
    bottom:-100px;
}

/* Grid */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    position:relative;
    z-index:2;
}

/* Item */

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    min-height:320px;
    cursor:pointer;
}

.gallery-item.large{
    grid-column:span 2;
}

/* Image */

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}

/* Overlay */

.gallery-overlay-home{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:35px;
    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    transparent);
    transform:translateY(50px);
    opacity:0;
    transition:.5s;
}

.gallery-overlay-home h3{
    font-size:30px;
    margin-bottom:10px;
}

.gallery-overlay-home p{
    color:#d6d6d6;
}

/* Hover */

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item:hover .gallery-overlay-home{
    transform:translateY(0);
    opacity:1;
}

/* Button */

.gallery-btn-home{
    margin-top:70px;
    text-align:center;
}

/* Responsive */

@media(max-width:1100px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-item.large{
        grid-column:span 1;
    }

}

@media(max-width:768px){

    .gallery-section{
        padding:90px 20px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item{
        min-height:280px;
    }

    .gallery-overlay-home h3{
        font-size:24px;
    }

}


/* =========================
    FOOTER SECTION
========================= */

.footer-section{
    width:100%;
    background:#080808;
    padding:100px 8% 30px;
    position:relative;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,.05);
}

/* Glow */

.footer-glow{
    position:absolute;
    width:400px;
    height:400px;
    background:#ffb703;
    opacity:.06;
    filter:blur(140px);
    top:-100px;
    right:-100px;
}

/* Container */

.footer-container{
    position:relative;
    z-index:2;
}

/* Top */

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    padding-bottom:60px;
}

/* Logo */

.footer-logo h2{
    font-size:38px;
    font-weight:800;
    margin-bottom:25px;
}

.footer-logo span{
    color:#ffb703;
}

/* Paragraph */

.footer-col p{
    color:#c6c6c6;
    line-height:1.9;
}

/* Headings */

.footer-col h3{
    font-size:24px;
    margin-bottom:30px;
    position:relative;
}

.footer-col h3::before{
    content:'';
    position:absolute;
    width:50px;
    height:3px;
    background:#ffb703;
    left:0;
    bottom:-12px;
    border-radius:20px;
}

/* Links */

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:18px;
}

.footer-col ul li a{
    color:#cfcfcf;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#ffb703;
    padding-left:8px;
}

/* Social */

.footer-social{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.footer-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    transition:.4s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#ffb703;
    color:#000;
    transform:translateY(-6px);
}

/* Contact */

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:30px;
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-contact i{
    color:#ffb703;
    font-size:18px;
}

/* Form */

.footer-form{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-form input{
    flex:1;
    height:55px;
    border:none;
    outline:none;
    border-radius:50px;
    padding:0 20px;
    background:rgba(255,255,255,.05);
    color:#fff;
}

.footer-form button{
    padding:0 25px;
    border:none;
    border-radius:50px;
    background:#ffb703;
    color:#000;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.footer-form button:hover{
    transform:translateY(-4px);
}

/* Bottom */

.footer-bottom{
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.05);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom p{
    color:#bdbdbd;
}

.footer-bottom a{
    color:#ffb703;
    text-decoration:none;
    font-weight:700;
}

/* Responsive */

@media(max-width:1100px){

    .footer-top{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .footer-section{
        padding:80px 20px 30px;
    }

    .footer-top{
        grid-template-columns:1fr;
    }

    .footer-form{
        flex-direction:column;
    }

    .footer-form button{
        height:55px;
    }

    .footer-bottom{
        text-align:center;
        justify-content:center;
    }

}


/* =========================
    TESTIMONIAL SECTION
========================= */

.testimonial-section{
    width:100%;
    padding:120px 8%;
    background:#080808;
    position:relative;
    overflow:hidden;
}

/* Glow */

.testimonial-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#00b4ff;
    opacity:.07;
    filter:blur(150px);
    top:-100px;
    left:-100px;
}

/* Wrapper */

.testimonial-wrapper{
    position:relative;
    overflow:hidden;
    margin-top:70px;
}

/* Track */

.testimonial-track{
    display:flex;
    gap:30px;
    transition:.5s ease;
}

/* Card */

.testimonial-card{
    min-width:calc(33.33% - 20px);
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:30px;
    padding:40px;
    transition:.4s;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,183,3,.3);
}

.active-testimonial{
    border-color:rgba(255,183,3,.4);
}

/* Quote */

.quote-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#ffb703;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    color:#000;
    margin-bottom:30px;
}

/* Review */

.review-text{
    font-size:18px;
    line-height:1.9;
    color:#d7d7d7;
    margin-bottom:30px;
}

/* Rating */

.rating{
    display:flex;
    gap:5px;
    margin-bottom:35px;
}

.rating i{
    color:#ffb703;
    font-size:20px;
}

/* Client */

.client-info{
    display:flex;
    align-items:center;
    gap:18px;
}

.client-info img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.client-info h4{
    font-size:22px;
    margin-bottom:5px;
}

.client-info span{
    color:#bcbcbc;
}

/* Controls */

.testimonial-controls{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:60px;
}

.testimonial-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,.05);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    transition:.4s;
}

.testimonial-btn:hover{
    background:#ffb703;
    color:#000;
    transform:translateY(-5px);
}

/* Responsive */

@media(max-width:1100px){

    .testimonial-card{
        min-width:calc(50% - 15px);
    }

}

@media(max-width:768px){

    .testimonial-section{
        padding:90px 20px;
    }

    .testimonial-card{
        min-width:100%;
        padding:30px;
    }

    .review-text{
        font-size:16px;
    }

}

/* =========================
    ACHIEVEMENT SECTION
========================= */

.achievement-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Glow */

.achievement-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#ffb703;
    opacity:.07;
    filter:blur(160px);
    top:-150px;
    right:-100px;
}

/* Container */

.achievement-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    position:relative;
    z-index:2;
}

/* Left */

.achievement-content{
    flex:1;
}

.achievement-content h2{
    font-size:60px;
    line-height:1.2;
    margin:20px 0;
    font-weight:800;
}

.achievement-content p{
    color:#c7c7c7;
    line-height:1.9;
    margin-bottom:40px;
    font-size:17px;
    max-width:550px;
}

/* Grid */

.achievement-grid{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* Box */

.achievement-box{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:30px;
    padding:40px 30px;
    text-align:center;
    transition:.5s;
    position:relative;
    overflow:hidden;
}

.achievement-box::before{
    content:'';
    position:absolute;
    width:100%;
    height:0%;
    background:linear-gradient(to top,
    rgba(255,183,3,.1),
    transparent);
    left:0;
    bottom:0;
    transition:.5s;
}

.achievement-box:hover::before{
    height:100%;
}

.achievement-box:hover{
    transform:translateY(-12px);
    border-color:rgba(255,183,3,.3);
}

.active-achievement{
    border-color:rgba(255,183,3,.4);
}

/* Icon */

.achievement-icon{
    width:90px;
    height:90px;
    border-radius:25px;
    background:#ffb703;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:25px;
}

.achievement-icon i{
    font-size:40px;
    color:#000;
}

/* Counter */

.achievement-box h3{
    font-size:60px;
    color:#fff;
    margin-bottom:12px;
    font-weight:800;
}

.achievement-box p{
    color:#d0d0d0;
    font-size:18px;
}

/* Responsive */

@media(max-width:1100px){

    .achievement-container{
        flex-direction:column;
    }

    .achievement-content{
        text-align:center;
    }

    .achievement-content p{
        margin:auto;
        margin-bottom:40px;
    }

}

@media(max-width:768px){

    .achievement-section{
        padding:90px 20px;
    }

    .achievement-content h2{
        font-size:42px;
    }

    .achievement-grid{
        grid-template-columns:1fr;
    }

    .achievement-box h3{
        font-size:45px;
    }

}

/* =========================
    FAQ SECTION
========================= */

.faq-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Glow */

.faq-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#00b4ff;
    opacity:.07;
    filter:blur(160px);
    bottom:-150px;
    left:-100px;
}

/* Container */

.faq-container{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:80px;
    position:relative;
    z-index:2;
}

/* Left */

.faq-left{
    flex:1;
    position:sticky;
    top:100px;
}

.faq-left h2{
    font-size:58px;
    line-height:1.2;
    margin:20px 0;
    font-weight:800;
}

.faq-left p{
    color:#c7c7c7;
    line-height:1.9;
    margin-bottom:40px;
    font-size:17px;
}

/* Contact Box */

.faq-contact-box{
    display:flex;
    align-items:center;
    gap:20px;
    padding:25px;
    border-radius:25px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    max-width:420px;
}

.faq-contact-box i{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#ffb703;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
}

.faq-contact-box h4{
    font-size:24px;
    margin-bottom:6px;
}

.faq-contact-box p{
    margin:0;
}

/* Right */

.faq-right{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* FAQ Item */

.faq-item{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:25px;
    overflow:hidden;
    transition:.4s;
}

.faq-item:hover{
    border-color:rgba(255,183,3,.3);
}

.active-faq{
    border-color:rgba(255,183,3,.4);
}

/* Question */

.faq-question{
    width:100%;
    padding:28px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    gap:20px;
}

.faq-question h3{
    font-size:24px;
    font-weight:600;
}

/* Icon */

.faq-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,183,3,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffb703;
    font-size:24px;
    flex-shrink:0;
    transition:.4s;
}

/* Answer */

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .5s ease;
}

.faq-answer p{
    padding:0 30px 30px;
    color:#cfcfcf;
    line-height:1.9;
}

/* Active */

.faq-item.active-faq .faq-answer{
    max-height:250px;
}

.faq-item.active-faq .faq-icon{
    transform:rotate(45deg);
    background:#ffb703;
    color:#000;
}

/* Responsive */

@media(max-width:1100px){

    .faq-container{
        flex-direction:column;
    }

    .faq-left{
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

    .faq-section{
        padding:90px 20px;
    }

    .faq-left h2{
        font-size:40px;
    }

    .faq-question{
        padding:24px 20px;
    }

    .faq-question h3{
        font-size:18px;
    }

    .faq-answer p{
        padding:0 20px 25px;
    }

}


/* =========================
    FLOATING BUTTONS
========================= */

.floating-btn{
    position:fixed;
    z-index:999;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.4s;
}

/* WhatsApp */

.whatsapp-btn{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    font-size:34px;
    right:25px;
    bottom:110px;
    box-shadow:0 10px 30px rgba(37,211,102,.35);
    animation:whatsappPulse 2s infinite;
}

.whatsapp-btn:hover{
    transform:translateY(-6px) scale(1.05);
}

/* Booking Button */

.booking-btn{
    right:25px;
    bottom:190px;
    background:#ffb703;
    color:#000;
    padding:16px 24px;
    border-radius:50px;
    gap:12px;
    font-weight:700;
    box-shadow:0 10px 30px rgba(255,183,3,.25);
}

.booking-btn i{
    font-size:22px;
}

.booking-btn:hover{
    transform:translateY(-6px);
}

/* Scroll Button */

.scroll-top-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:26px;
    cursor:pointer;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.scroll-top-btn.active-scroll{
    opacity:1;
    visibility:visible;
    bottom:30px;
}

.scroll-top-btn:hover{
    background:#ffb703;
    color:#000;
    transform:translateY(-5px);
}

/* Pulse Animation */

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

/* Mobile */

@media(max-width:768px){

    .booking-btn span{
        display:none;
    }

    .booking-btn{
        width:60px;
        height:60px;
        padding:0;
        border-radius:50%;
        bottom:185px;
    }

    .booking-btn i{
        font-size:24px;
    }

    .whatsapp-btn{
        width:58px;
        height:58px;
        font-size:30px;
        bottom:105px;
    }

    .scroll-top-btn{
        width:55px;
        height:55px;
        font-size:24px;
    }

}



/* =========================
    BRAND COLLAB SECTION
========================= */

.brand-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Glow */

.brand-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#ffb703;
    opacity:.06;
    filter:blur(160px);
    top:-150px;
    left:-120px;
}

/* Grid */

.brand-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

/* Card */

.brand-card{
    height:180px;
    border-radius:30px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.5s;
    overflow:hidden;
    position:relative;
}

.brand-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:0%;
    background:linear-gradient(to top,
    rgba(255,183,3,.08),
    transparent);
    left:0;
    bottom:0;
    transition:.5s;
}

.brand-card:hover::before{
    height:100%;
}

.brand-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,183,3,.3);
}

.active-brand{
    border-color:rgba(255,183,3,.4);
}

/* Image */

.brand-card img{
    max-width:160px;
    max-height:70px;
    object-fit:contain;
    opacity:.7;
    transition:.4s;
    filter:grayscale(100%);
}

.brand-card:hover img{
    opacity:1;
    filter:grayscale(0%);
    transform:scale(1.08);
}

/* Bottom */

.brand-bottom{
    margin-top:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
}

/* Stats */

.brand-stats{
    max-width:700px;
}

.brand-stats h3{
    font-size:70px;
    color:#ffb703;
    margin-bottom:15px;
}

.brand-stats p{
    color:#d0d0d0;
    line-height:1.9;
    font-size:17px;
}

/* Responsive */

@media(max-width:1100px){

    .brand-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .brand-section{
        padding:90px 20px;
    }

    .brand-grid{
        grid-template-columns:1fr;
    }

    .brand-card{
        height:150px;
    }

    .brand-stats h3{
        font-size:50px;
    }

    .brand-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

}



/* =========================
    INNER BANNER
========================= */

.inner-banner{
    width:100%;
    height:480px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:140px 8% 80px;
    background:#050505;
}

/* Background */

.inner-banner-image{
    position:absolute;
    inset:0;
}

.inner-banner-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Overlay */

.inner-banner-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(to right,
    rgba(0,0,0,.85),
    rgba(0,0,0,.45)),
    linear-gradient(to top,
    rgba(0,0,0,.7),
    transparent);
}

/* Content */

.inner-banner-content{
    position:relative;
    z-index:2;
    max-width:900px;
    text-align:center;
}

/* Heading */

.inner-banner-content h1{
    font-size:72px;
    line-height:1.1;
    margin:20px 0;
    font-weight:800;
}

/* Paragraph */

.inner-banner-content p{
    color:#d0d0d0;
    font-size:18px;
    line-height:1.8;
}

/* Breadcrumb */

.breadcrumb{
    margin-top:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.breadcrumb a{
    color:#ffb703;
    text-decoration:none;
    font-weight:600;
}

.breadcrumb span{
    color:#888;
}

.breadcrumb p{
    color:#fff;
}

/* Responsive */

@media(max-width:768px){

    .inner-banner{
        height:380px;
        padding:120px 20px 60px;
    }

    .inner-banner-content h1{
        font-size:42px;
    }

    .inner-banner-content p{
        font-size:16px;
    }

}


/* =========================
    ABOUT HERO SECTION
========================= */

.about-hero-section{
    width:100%;
    min-height:100vh;
    background:#050505;
    position:relative;
    overflow:hidden;
    padding:140px 8% 100px;
}

/* Background */

.about-hero-bg{
    position:absolute;
    width:550px;
    height:550px;
    background:#ffb703;
    opacity:.08;
    filter:blur(160px);
    top:-150px;
    right:-100px;
}

/* Container */

.about-hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    position:relative;
    z-index:2;
}

/* Left */

.about-hero-content{
    flex:1;
}

.about-hero-content h1{
    font-size:80px;
    line-height:1.1;
    margin:25px 0;
    font-weight:800;
}

.about-hero-content p{
    color:#cfcfcf;
    line-height:1.9;
    font-size:18px;
    max-width:650px;
    margin-bottom:40px;
}

/* Buttons */

.about-hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* Right */

.about-hero-image{
    flex:1;
    position:relative;
    display:flex;
    justify-content:center;
}

/* Main Image */

.about-main-image{
    width:480px;
    height:650px;
    border-radius:35px;
    overflow:hidden;
    position:relative;
}

.about-main-image::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.5),
    transparent);
    z-index:1;
}

.about-main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.about-main-image:hover img{
    transform:scale(1.08);
}

/* Floating Card */

.about-floating-card{
    position:absolute;
    left:0;
    bottom:50px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:18px;
    animation:floatCard 4s infinite ease-in-out;
}

.about-floating-card i{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#ffb703;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
}

.about-floating-card h4{
    font-size:26px;
    margin-bottom:5px;
}

.about-floating-card p{
    color:#d0d0d0;
}

/* Animation */

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* Responsive */

@media(max-width:1100px){

    .about-hero-container{
        flex-direction:column;
    }

    .about-hero-content{
        text-align:center;
    }

    .about-hero-content p{
        margin:auto;
        margin-bottom:40px;
    }

    .about-hero-btns{
        justify-content:center;
    }

}

@media(max-width:768px){

    .about-hero-section{
        padding:120px 20px 80px;
    }

    .about-hero-content h1{
        font-size:48px;
    }

    .about-main-image{
        width:100%;
        height:500px;
    }

    .about-floating-card{
        left:20px;
        right:20px;
        bottom:20px;
    }

}


/* =========================
    ARTIST STORY SECTION
========================= */

.artist-story-section{
    width:100%;
    padding:120px 8%;
    background:#080808;
    position:relative;
    overflow:hidden;
}

/* Blur */

.story-blur{
    position:absolute;
    width:500px;
    height:500px;
    background:#00b4ff;
    opacity:.07;
    filter:blur(160px);
    left:-120px;
    bottom:-100px;
}

/* Container */

.artist-story-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    position:relative;
    z-index:2;
}

/* Left */

.story-images{
    flex:1;
    position:relative;
    min-height:700px;
}

/* Large Image */

.story-image-large{
    width:430px;
    height:560px;
    border-radius:35px;
    overflow:hidden;
    position:absolute;
    left:0;
    top:0;
}

.story-image-large img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.story-image-large:hover img{
    transform:scale(1.08);
}

/* Small Image */

.story-image-small{
    width:280px;
    height:320px;
    border-radius:30px;
    overflow:hidden;
    position:absolute;
    right:0;
    bottom:0;
    border:8px solid #080808;
}

.story-image-small img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.story-image-small:hover img{
    transform:scale(1.08);
}

/* Badge */

.experience-badge{
    position:absolute;
    right:40px;
    top:80px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    padding:30px;
    border-radius:30px;
    text-align:center;
    animation:floatExperience 4s infinite ease-in-out;
}

.experience-badge h3{
    font-size:60px;
    color:#ffb703;
    margin-bottom:10px;
}

.experience-badge p{
    color:#d7d7d7;
}

/* Animation */

@keyframes floatExperience{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* Right */

.story-content{
    flex:1;
}

.story-content h2{
    font-size:60px;
    line-height:1.2;
    margin:20px 0;
    font-weight:800;
}

.story-content p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:25px;
    font-size:17px;
}

/* Features */

.story-features{
    display:flex;
    flex-direction:column;
    gap:25px;
    margin:40px 0;
}

/* Feature */

.story-feature{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:25px;
    padding:25px;
    transition:.4s;
}

.story-feature:hover{
    transform:translateX(10px);
    border-color:rgba(255,183,3,.3);
}

.story-feature i{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#ffb703;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    flex-shrink:0;
}

.story-feature h4{
    font-size:24px;
    margin-bottom:10px;
}

.story-feature p{
    margin:0;
}

/* Responsive */

@media(max-width:1100px){

    .artist-story-container{
        flex-direction:column;
    }

    .story-images{
        width:100%;
    }

}

@media(max-width:768px){

    .artist-story-section{
        padding:90px 20px;
    }

    .story-content h2{
        font-size:42px;
    }

    .story-images{
        min-height:auto;
        display:flex;
        flex-direction:column;
        gap:25px;
    }

    .story-image-large,
    .story-image-small{
        position:relative;
        width:100%;
        height:400px;
    }

    .story-image-small{
        border:none;
    }

    .experience-badge{
        position:relative;
        right:auto;
        top:auto;
        width:100%;
    }

    .story-feature{
        flex-direction:column;
    }

}


/* =========================
    GALLERY PAGE
========================= */

.gallery-page-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Glow */

.gallery-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#ffb703;
    opacity:.06;
    filter:blur(160px);
    right:-150px;
    top:-100px;
}

/* Filter */

.gallery-filter{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

/* Button */

.gallery-btn{
    padding:14px 28px;
    border:none;
    border-radius:50px;
    background:rgba(255,255,255,.05);
    color:#fff;
    cursor:pointer;
    transition:.4s;
    font-weight:600;
}

.gallery-btn:hover,
.active-gallery{
    background:#ffb703;
    color:#000;
}

/* Grid */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    position:relative;
    z-index:2;
}

/* Item */

.gallery-item{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    height:350px;
    cursor:pointer;
}

.large-item{
    grid-column:span 2;
}

/* Image */

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

/* Overlay */

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.8),
    transparent);
    display:flex;
    align-items:flex-end;
    padding:30px;
    opacity:0;
    transition:.5s;
}

.gallery-overlay h3{
    font-size:28px;
    transform:translateY(30px);
    transition:.5s;
}

/* Hover */

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-overlay h3{
    transform:translateY(0);
}

/* Responsive */

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .gallery-page-section{
        padding:90px 20px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .large-item{
        grid-column:span 1;
    }

    .gallery-item{
        height:300px;
    }

}


/* =========================
    BOOKING SECTION
========================= */

.booking-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Glow */

.booking-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#ffb703;
    opacity:.07;
    filter:blur(160px);
    right:-150px;
    top:-100px;
}

/* Container */

.booking-container{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:80px;
    position:relative;
    z-index:2;
}

/* Left */

.booking-left{
    flex:1;
}

.booking-left h2{
    font-size:60px;
    line-height:1.2;
    margin:20px 0;
    font-weight:800;
}

.booking-left p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:40px;
}

/* Features */

.booking-features{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* Feature */

.booking-feature{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:25px;
    border-radius:25px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    transition:.4s;
}

.booking-feature:hover{
    transform:translateX(10px);
    border-color:rgba(255,183,3,.3);
}

.booking-feature i{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#ffb703;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
}

.booking-feature h4{
    font-size:24px;
    margin-bottom:10px;
}

.booking-feature p{
    margin:0;
}

/* Right */

.booking-form-wrapper{
    flex:1;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:35px;
    padding:45px;
    backdrop-filter:blur(12px);
}

/* Form */

.booking-form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* Group */

.form-group{
    width:100%;
}

.full-width{
    grid-column:span 2;
}

/* Inputs */

.booking-form input,
.booking-form select,
.booking-form textarea{
    width:100%;
    background:#111;
    border:none;
    outline:none;
    padding:18px 20px;
    border-radius:18px;
    color:#fff;
    font-size:16px;
    border:1px solid transparent;
    transition:.4s;
}

.booking-form textarea{
    height:180px;
    resize:none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
    border-color:#ffb703;
}

/* Button */

.booking-submit{
    border:none;
    cursor:pointer;
    grid-column:span 2;
    width:100%;
}

/* Responsive */

@media(max-width:1100px){

    .booking-container{
        flex-direction:column;
    }

}

@media(max-width:768px){

    .booking-section{
        padding:90px 20px;
    }

    .booking-left h2{
        font-size:42px;
    }

    .booking-form{
        grid-template-columns:1fr;
    }

    .full-width,
    .booking-submit{
        grid-column:span 1;
    }

    .booking-form-wrapper{
        padding:25px;
    }

}

/* =========================
    BOOKING PROCESS SECTION
========================= */

.booking-process-section{
    width:100%;
    padding:120px 8%;
    background:#080808;
    position:relative;
    overflow:hidden;
}

/* Glow */

.process-glow{
    position:absolute;
    width:450px;
    height:450px;
    background:#ffb703;
    opacity:.05;
    filter:blur(160px);
    left:-100px;
    top:-100px;
}

/* Timeline */

.process-timeline{
    margin-top:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
}

/* Line */

.process-line{
    width:80px;
    height:2px;
    background:rgba(255,255,255,.1);
}

/* Card */

.process-card{
    flex:1;
    max-width:280px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:30px;
    padding:40px 30px;
    text-align:center;
    position:relative;
    transition:.5s;
}

.process-card:hover{
    transform:translateY(-15px);
    border-color:rgba(255,183,3,.3);
}

/* Number */

.process-number{
    position:absolute;
    top:20px;
    right:20px;
    font-size:18px;
    font-weight:700;
    color:rgba(255,255,255,.15);
}

/* Icon */

.process-icon{
    width:90px;
    height:90px;
    border-radius:25px;
    background:#ffb703;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:30px;
    font-size:38px;
}

/* Heading */

.process-card h3{
    font-size:28px;
    margin-bottom:20px;
}

/* Paragraph */

.process-card p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:16px;
}

/* Responsive */

@media(max-width:1200px){

    .process-timeline{
        flex-wrap:wrap;
        gap:30px;
    }

    .process-line{
        display:none;
    }

}

@media(max-width:768px){

    .booking-process-section{
        padding:90px 20px;
    }

    .process-card{
        max-width:100%;
    }

}

/* =========================
    PRICING SECTION
========================= */

.pricing-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Glow */

.pricing-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#ffb703;
    opacity:.06;
    filter:blur(160px);
    right:-150px;
    bottom:-100px;
}

/* Grid */

.pricing-grid{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    position:relative;
    z-index:2;
}

/* Card */

.pricing-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:35px;
    padding:45px 35px;
    position:relative;
    transition:.5s;
}

.pricing-card:hover{
    transform:translateY(-15px);
    border-color:rgba(255,183,3,.3);
}

/* Featured */

.featured-price{
    border:1px solid rgba(255,183,3,.4);
    transform:scale(1.04);
}

/* Popular */

.popular-tag{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#ffb703;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
}

/* Label */

.pricing-label{
    color:#ffb703;
    font-weight:700;
    letter-spacing:1px;
}

/* Heading */

.pricing-card h3{
    font-size:34px;
    margin:20px 0;
}

.pricing-card h2{
    font-size:60px;
    margin-bottom:20px;
}

/* Paragraph */

.pricing-card p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:30px;
}

/* List */

.pricing-card ul{
    list-style:none;
    margin-bottom:35px;
}

.pricing-card ul li{
    margin-bottom:18px;
    color:#e4e4e4;
    display:flex;
    align-items:center;
    gap:12px;
}

.pricing-card ul li i{
    color:#ffb703;
    font-size:20px;
}

/* Responsive */

@media(max-width:1100px){

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .featured-price{
        transform:scale(1);
    }

}

@media(max-width:768px){

    .pricing-section{
        padding:90px 20px;
    }

    .pricing-card h2{
        font-size:48px;
    }

}


/* =========================
    EVENTS PAGE
========================= */

.events-page-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Glow */

.events-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#ffb703;
    opacity:.06;
    filter:blur(160px);
    top:-120px;
    right:-120px;
}

/* Filter */

.events-filter{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

/* Button */

.event-filter-btn{
    padding:14px 28px;
    border:none;
    border-radius:50px;
    background:rgba(255,255,255,.05);
    color:#fff;
    cursor:pointer;
    transition:.4s;
    font-weight:600;
}

.event-filter-btn:hover,
.active-event-filter{
    background:#ffb703;
    color:#000;
}

/* Grid */

.events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    position:relative;
    z-index:2;
}

/* Card */

.event-page-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:35px;
    overflow:hidden;
    transition:.5s;
}

.event-page-card:hover{
    transform:translateY(-15px);
    border-color:rgba(255,183,3,.3);
}

/* Image */

.event-page-image{
    position:relative;
    height:320px;
    overflow:hidden;
}

.event-page-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.event-page-card:hover img{
    transform:scale(1.08);
}

/* Date */

.event-date-box{
    position:absolute;
    top:20px;
    right:20px;
    width:75px;
    height:75px;
    border-radius:20px;
    background:#ffb703;
    color:#000;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.event-date-box h3{
    font-size:28px;
}

.event-date p{
    font-size:14px;
}

/* Content */

.event-page-content{
    padding:35px;
}

/* Category */

.event-category{
    color:#ffb703;
    font-weight:700;
}

/* Heading */

.event-page-content h3{
    font-size:32px;
    margin:18px 0;
}

/* Paragraph */

.event-page-content p{
    color:#cfcfcf;
    line-height:1.8;
}

/* Meta */

.event-meta{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin:30px 0;
    flex-wrap:wrap;
}

.event-meta div{
    color:#e4e4e4;
    display:flex;
    align-items:center;
    gap:8px;
}

/* Responsive */

@media(max-width:1100px){

    .events-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .events-page-section{
        padding:90px 20px;
    }

    .events-grid{
        grid-template-columns:1fr;
    }

    .event-page-content h3{
        font-size:28px;
    }

}


/* =========================
    EVENT DETAILS PAGE
========================= */

.event-details-banner{
    width:100%;
    height:75vh;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

/* Image */

.event-banner-image{
    position:absolute;
    inset:0;
}

.event-banner-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Overlay */

.event-banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.7);
}

/* Content */

.event-banner-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:0 20px;
}

.event-banner-content h1{
    font-size:72px;
    margin:25px 0;
}

.event-banner-content p{
    font-size:18px;
    line-height:1.8;
    color:#ddd;
}

/* Meta */

.event-banner-meta{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.event-banner-meta div{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    padding:15px 25px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:10px;
}

/* ========================= */

.event-details-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:60px;
}

/* Left */

.event-details-left h2{
    font-size:54px;
    margin:25px 0;
}

.event-details-left p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:25px;
}

/* Features */

.event-features{
    margin-top:50px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.feature-box{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    padding:25px;
    border-radius:25px;
}

.feature-box i{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#ffb703;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

/* Right */

.event-info-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:35px;
    padding:45px;
    position:sticky;
    top:120px;
}

.event-info-card h3{
    font-size:36px;
    margin-bottom:40px;
}

/* Item */

.info-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.info-item span{
    color:#aaa;
}

.info-item p{
    font-weight:600;
}

/* Button */

.event-book-btn{
    width:100%;
    margin-top:40px;
    text-align:center;
}

/* ========================= */

.event-gallery-section{
    width:100%;
    padding:120px 8%;
    background:#080808;
}

/* Grid */

.event-gallery-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.event-gallery-item{
    border-radius:35px;
    overflow:hidden;
    height:400px;
}

.event-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.event-gallery-item:hover img{
    transform:scale(1.08);
}

/* ========================= */

.event-cta-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
}

.event-cta-content{
    background:linear-gradient(135deg,
    rgba(255,183,3,.12),
    rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.05);
    border-radius:40px;
    padding:80px;
    text-align:center;
}

.event-cta-content h2{
    font-size:60px;
    margin:25px 0;
}

.event-cta-content p{
    max-width:700px;
    margin:auto;
    line-height:1.9;
    color:#ddd;
}

/* Buttons */

.event-cta-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* Responsive */

@media(max-width:1100px){

    .event-details-section{
        grid-template-columns:1fr;
    }

    .event-gallery-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .event-banner-content h1{
        font-size:42px;
    }

    .event-details-section,
    .event-gallery-section,
    .event-cta-section{
        padding:90px 20px;
    }

    .event-details-left h2{
        font-size:38px;
    }

    .event-gallery-grid{
        grid-template-columns:1fr;
    }

    .event-cta-content{
        padding:50px 25px;
    }


    
    .event-cta-content h2{
        font-size:38px;
    }

}



/* =========================
    MUSIC PAGE
========================= */

.music-page-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Glow */

.music-page-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#ffb703;
    opacity:.06;
    filter:blur(160px);
    right:-150px;
    top:-100px;
}

/* Filter */

.music-filter{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

/* Button */

.music-filter-btn{
    padding:14px 28px;
    border:none;
    border-radius:50px;
    background:rgba(255,255,255,.05);
    color:#fff;
    cursor:pointer;
    transition:.4s;
    font-weight:600;
}

.music-filter-btn:hover,
.active-music-btn{
    background:#ffb703;
    color:#000;
}

/* Grid */

.music-page-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    position:relative;
    z-index:2;
}

/* Card */

.music-page-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:35px;
    overflow:hidden;
    transition:.5s;
}

.music-page-card:hover{
    transform:translateY(-15px);
    border-color:rgba(255,183,3,.3);
}

/* Thumbnail */

.music-thumbnail{
    position:relative;
    height:280px;
    overflow:hidden;
}

.music-thumbnail img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.music-page-card:hover img{
    transform:scale(1.08);
}

/* Play */

.music-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:85px;
    height:85px;
    border-radius:50%;
    background:#ffb703;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    transition:.4s;
}

.music-play-btn:hover{
    transform:translate(-50%,-50%) scale(1.1);
}

/* Content */

.music-page-content{
    padding:35px;
}

.music-page-content span{
    color:#ffb703;
    font-weight:700;
}

.music-page-content h3{
    font-size:30px;
    margin:18px 0;
}

.music-page-content p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:30px;
}

/* Audio */

.music-page-content audio{
    width:100%;
    margin-top:10px;
}

/* =========================
    FEATURED VIDEO
========================= */

.featured-video-section{
    width:100%;
    padding:120px 8%;
    background:#080808;
}

/* Video */

.featured-video-wrapper{
    margin-top:70px;
    border-radius:40px;
    overflow:hidden;
    height:650px;
}

.featured-video-wrapper iframe{
    width:100%;
    height:100%;
}

/* Responsive */

@media(max-width:1100px){

    .music-page-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .music-page-section,
    .featured-video-section{
        padding:90px 20px;
    }

    .music-page-grid{
        grid-template-columns:1fr;
    }

    .featured-video-wrapper{
        height:300px;
    }

}


/* =========================
    REVIEWS PAGE
========================= */

.review-stats-section{
    width:100%;
    padding:100px 8%;
    background:#050505;
}

/* Grid */

.review-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* Card */

.review-stat-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:30px;
    padding:45px 30px;
    text-align:center;
    transition:.5s;
}

.review-stat-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,183,3,.3);
}

.review-stat-card h2{
    font-size:60px;
    color:#ffb703;
    margin-bottom:15px;
}

.review-stat-card p{
    color:#cfcfcf;
    font-size:18px;
}

/* ========================= */

.reviews-page-section{
    width:100%;
    padding:120px 8%;
    background:#080808;
    position:relative;
    overflow:hidden;
}

/* Glow */

.reviews-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#ffb703;
    opacity:.06;
    filter:blur(160px);
    right:-120px;
    top:-120px;
}

/* Grid */

.reviews-page-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    position:relative;
    z-index:2;
}

/* Card */

.review-page-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:35px;
    padding:40px;
    transition:.5s;
}

.review-page-card:hover{
    transform:translateY(-12px);
    border-color:rgba(255,183,3,.3);
}

/* Top */

.review-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.review-top img{
    width:75px;
    height:75px;
    border-radius:50%;
    object-fit:cover;
}

.review-top h3{
    font-size:24px;
    margin-bottom:6px;
}

.review-top span{
    color:#aaa;
}

/* Stars */

.review-stars{
    display:flex;
    gap:6px;
    margin-bottom:25px;
    color:#ffb703;
    font-size:20px;
}

/* Text */

.review-page-card p{
    color:#d5d5d5;
    line-height:1.9;
}

/* =========================
    VIDEO REVIEW
========================= */

.video-review-section{
    width:100%;
    padding:120px 8%;
    background:#050505;
}

/* Video */

.video-review-wrapper{
    margin-top:70px;
    border-radius:40px;
    overflow:hidden;
    height:650px;
}

.video-review-wrapper iframe{
    width:100%;
    height:100%;
}

/* Responsive */

@media(max-width:1100px){

    .review-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .reviews-page-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .review-stats-section,
    .reviews-page-section,
    .video-review-section{
        padding:90px 20px;
    }

    .review-stats-grid{
        grid-template-columns:1fr;
    }

    .video-review-wrapper{
        height:300px;
    }

}


/* =========================
    BOOKING MODAL
========================= */
.booking-popup{

    position:relative;
    width:95%;
    max-width:900px;
    max-height:90vh;

    overflow-y:auto;

    background:#111;

    border-radius:30px;

    padding:50px;

    z-index:2;

}

.booking-popup-header{

    text-align:center;

    margin-bottom:40px;

}

.booking-popup-header h2{

    font-size:42px;

    margin:15px 0;

}

.booking-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.booking-group{

    margin-bottom:20px;

}

.booking-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.booking-group input,
.booking-group textarea{

    width:100%;

    padding:16px;

    border-radius:15px;

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

}

.booking-group textarea{

    height:120px;

}

.submit-booking{

    width:100%;

    padding:18px;

    border:none;

    border-radius:15px;

    background:#ffb703;

    color:#000;

    font-weight:700;

    cursor:pointer;

}

@media(max-width:768px){

    .booking-row{

        grid-template-columns:1fr;

    }

    .booking-popup{

        padding:25px;

    }

}