/*=========================
Featured Stories
=========================*/

.featured{
    background:#070707;
    padding:80px 0 120px;
    margin-top:0;
}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#D4AF37;

    letter-spacing:4px;

    font-size:14px;

    text-transform:uppercase;

}

.section-title h2{

    font-family:'Cinzel',serif;

    color:white;

    font-size:52px;

    margin:20px 0;

}

.section-title p{

    color:#bdbdbd;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.featured-grid{

    display:grid;

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

    gap:30px;

}

.featured-card{

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    position:relative;

}

.featured-card img{

    width:100%;

    height:520px;

    object-fit:cover;

    transition:.6s;

}

.featured-card:hover img{

    transform:scale(1.08);

}

.featured-btn{

    text-align:center;

    margin-top:60px;

}

.featured-btn a{

    display:inline-block;

    padding:18px 45px;

    background:#D4AF37;

    color:black;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.featured-btn a:hover{

    transform:translateY(-6px);

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

.why-us{

    background:#0d0d0d;

    padding:120px 0;

}

.why-grid{

    display:grid;

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

    gap:35px;

    margin-top:70px;

}

.why-card{

    background:#141414;

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

    border-radius:22px;

    padding:45px;

    text-align:center;

    transition:.4s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

}

.why-number{

    font-size:56px;

    color:#D4AF37;

    font-family:'Cinzel',serif;

    margin-bottom:20px;

}

.why-card h3{

    color:#fff;

    margin-bottom:18px;

    font-size:26px;

}

.why-card p{

    color:#bfbfbf;

    line-height:1.8;

}
/*==============================
HOME SERVICES
==============================*/

.services-home{

    background:#080808;

    padding:120px 0;

}

.service-grid{

    display:grid;

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

    gap:28px;

    margin-top:70px;

}

.service-box{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

}

.service-box img{

    width:100%;

    height:380px;

    object-fit:cover;

    transition:.7s;

}

.service-box:hover img{

    transform:scale(1.12);

}

.service-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.8),
    transparent);

    display:flex;

    align-items:flex-end;

    padding:35px;

}

.service-overlay h3{

    color:white;

    font-size:30px;

    font-family:'Cinzel',serif;

}
/*==============================
FEATURED STORIES
==============================*/

.stories{

    background:#090909;

    padding:130px 0;

}

.stories-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:30px;

    margin-top:70px;

}

.story-large,
.story-small{

    position:relative;

    display:block;

    overflow:hidden;

    border-radius:24px;

}

.story-large img{

    width:100%;

    height:760px;

    object-fit:cover;

    transition:.7s;

}

.story-small img{

    width:100%;

    height:365px;

    object-fit:cover;

    transition:.7s;

}

.story-right{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.story-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:45px;

    background:linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.05));

}

.story-overlay span{

    color:#D4AF37;

    letter-spacing:3px;

    text-transform:uppercase;

}

.story-overlay h3{

    color:white;

    font-family:'Cinzel',serif;

    font-size:42px;

    margin-top:10px;

}

.story-overlay p{

    color:#D4AF37;

    margin-top:18px;

}

.story-large:hover img,
.story-small:hover img{

    transform:scale(1.08);

}
/*================ CINEMATIC FILMS ================*/

.films-home{
    padding:100px 0;
    background:#111;
}

.films-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.film-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    aspect-ratio:16/9;
    background:#000;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.film-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.film-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:linear-gradient(
        rgba(0,0,0,.15),
        rgba(0,0,0,.45)
    );
}

.film-overlay i{
    width:82px;
    height:82px;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:18px;
    transition:.35s;
}

.film-overlay h3{
    color:#fff;
    font-family:"Cinzel",serif;
    font-size:32px;
    text-align:center;
    letter-spacing:1px;
}

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

.film-card:hover .film-overlay i{
    transform:scale(1.12);
    box-shadow:0 0 30px rgba(212,175,55,.6);
}

/*================ VIDEO POPUP ================*/

.video-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9999;
}

.video-popup.active{
    opacity:1;
    visibility:visible;
}

.popup-content{
    width:min(95%,1100px);
    aspect-ratio:16/9;
    position:relative;
    border-radius:18px;
    overflow:hidden;
    background:#000;
    box-shadow:0 25px 80px rgba(0,0,0,.6);
}

.popup-content iframe{
    width:100%;
    height:100%;
    border:none;
}

#closeVideo{
    position:absolute;
    top:-45px;
    right:0;
    color:#fff;
    font-size:42px;
    cursor:pointer;
    z-index:10;
    transition:.3s;
}

#closeVideo:hover{
    color:#d4af37;
}
/*==================================
LEGACY
==================================*/

.legacy{

    background:#050505;

    padding:130px 0;

}

.legacy .container{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:80px;

    align-items:center;

}

.legacy-left span{

    color:#D4AF37;

    letter-spacing:5px;

    font-size:14px;

}

.legacy-left h2{

    font-size:56px;

    margin:20px 0;

    font-family:'Cinzel',serif;

    line-height:1.2;

}

.legacy-left p{

    color:#bfbfbf;

    line-height:1.9;

    margin-bottom:40px;

}

.legacy-right{

    display:grid;

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

    gap:25px;

}

.counter{

    background:#111;

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

    border-radius:22px;

    padding:45px;

    text-align:center;

    transition:.4s;

}

.counter:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

}

.counter h2{

    font-size:58px;

    color:#D4AF37;

    font-family:'Cinzel',serif;

}

.counter p{

    margin-top:12px;

    color:#ddd;

}
/*==================================
TESTIMONIALS
==================================*/

.testimonials{

    background:#0b0b0b;

    padding:120px 0;

}

.testimonial-grid{

    display:grid;

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

    gap:30px;

    margin-top:70px;

}

.testimonial-card{

    background:#121212;

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

    border-radius:20px;

    padding:35px;

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.stars{

    color:#D4AF37;

    font-size:22px;

    letter-spacing:3px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#d0d0d0;

    line-height:1.9;

    margin-bottom:35px;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #D4AF37;

}

.client h4{

    color:#fff;

    margin-bottom:5px;

}

.client span{

    color:#b7b7b7;

    font-size:14px;

}
/*==================================
INSTAGRAM
==================================*/

.instagram-feed{

    background:#080808;

    padding:120px 0;

}

.instagram-grid{

    display:grid;

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

    gap:20px;

    margin-top:70px;

}

.insta-item{

    position:relative;

    overflow:hidden;

    border-radius:18px;

}

.insta-item img{

    width:100%;

    height:340px;

    object-fit:cover;

    transition:.5s;

}

.insta-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.35s;

}

.insta-overlay i{

    font-size:48px;

    color:#D4AF37;

}

.insta-item:hover img{

    transform:scale(1.1);

}

.insta-item:hover .insta-overlay{

    opacity:1;

}
/*=========================================
        PORTFOLIO CATEGORY CARDS
=========================================*/

.portfolio-gallery{
    padding:80px 6%;
    background:#090909;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    height:420px;
    background:#111;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

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

.gallery-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px;
    background:linear-gradient(transparent,rgba(0,0,0,.95));
}

.gallery-content h2{
    color:#fff;
    font-size:32px;
    margin-bottom:8px;
    font-family:'Cinzel',serif;
}

.gallery-content p{
    color:#d4af37;
    font-size:16px;
}

/*=========================================
            FULL SCREEN GALLERY
=========================================*/

#lightbox{
    position:fixed;
    inset:0;
    background:#000;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

#lightbox.active{
    display:flex;
}

#lightbox img{
    max-width:90%;
    max-height:88vh;
    object-fit:contain;
}

#closeBtn{
    position:absolute;
    top:25px;
    right:35px;
    color:#fff;
    font-size:42px;
    cursor:pointer;
}

#prevBtn,
#nextBtn{

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:white;
    font-size:26px;
    cursor:pointer;
}

#prevBtn{
    left:30px;
}

#nextBtn{
    right:30px;
}

#prevBtn:hover,
#nextBtn:hover{

    background:#d4af37;
    color:#111;

}

#counter{

    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    color:white;
    font-size:18px;
    letter-spacing:2px;

}

/*==========================
Gallery Title
==========================*/

#galleryTitle{

    position:absolute;
    top:25px;
    left:50%;
    transform:translateX(-50%);

    color:#fff;
    font-family:'Cinzel',serif;
    font-size:32px;
    letter-spacing:2px;

}
/*==========================
Thumbnail Strip
==========================*/

#thumbnailContainer{

    position:absolute;

    bottom:70px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:10px;

    max-width:90%;

    overflow-x:auto;

    padding:10px;

    scrollbar-width:none;

}

#thumbnailContainer::-webkit-scrollbar{

    display:none;

}

.thumb{

    width:75px;

    height:55px;

    object-fit:cover;

    border-radius:8px;

    cursor:pointer;

    border:3px solid transparent;

    transition:.3s;

    flex-shrink:0;

}

.thumb:hover{

    transform:scale(1.08);

}

.thumb.active{

    border-color:#d4af37;

}
/*==========================
Image Fade Animation
==========================*/

#lightboxImage{

    opacity:1;

    transition:opacity .35s ease, transform .35s ease;

}

#lightboxImage.fade{

    opacity:0;

    transform:scale(.98);

}
/*=========================================
        PORTFOLIO FILTER
=========================================*/

.portfolio-filter{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;

    padding:50px 20px;

    background:#090909;

}

.filter-btn{

    background:transparent;

    color:white;

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

    padding:14px 32px;

    border-radius:40px;

    cursor:pointer;

    transition:.35s;

    font-size:16px;

}

.filter-btn:hover{

    background:#d4af37;

    color:#111;

}

.filter-btn.active{

    background:#d4af37;

    color:#111;

}
/*=========================================
        PORTFOLIO CTA
=========================================*/

.portfolio-cta{

    background:#050505;
    padding:100px 20px;
    text-align:center;

}

.cta-content{

    max-width:850px;
    margin:auto;

}

.cta-content h2{

    font-size:48px;
    color:#fff;
    font-family:'Cinzel',serif;
    margin-bottom:25px;

}

.cta-content p{

    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:45px;
    font-size:18px;

}

.cta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.cta-btn{

    padding:16px 40px;
    background:#d4af37;
    color:#111;
    border-radius:40px;
    font-weight:600;
    transition:.35s;

}

.cta-btn:hover{

    transform:translateY(-4px);

}

.cta-btn-outline{

    padding:16px 40px;
    border:2px solid #d4af37;
    color:#d4af37;
    border-radius:40px;
    transition:.35s;

}

.cta-btn-outline:hover{

    background:#d4af37;
    color:#111;

}
/*==============================
Portfolio Filter Animation
==============================*/

.gallery-card{

    opacity:1;
    transform:scale(1);
    transition:.45s ease;

}

.gallery-card.hide{

    opacity:0;
    transform:scale(.9);
    pointer-events:none;

}
/*==========================
FEATURED HEADING
==========================*/

.featured-heading{

    text-align:center;

    max-width:900px;

    margin:0 auto 70px;

}

.featured-heading span{

    display:block;

    color:#d4af37;

    font-size:15px;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:15px;

    font-weight:600;

}

.featured-heading h2{

    color:#fff;

    font-family:'Cinzel', serif;

    font-size:56px;

    margin-bottom:20px;

    line-height:1.2;

}

.featured-heading p{

    color:#cfcfcf;

    font-size:20px;

    line-height:1.8;

    max-width:700px;

    margin:0 auto;

}
/*==================================================
        LUXURY FEATURED STORIES - OPTION 2
==================================================*/

.stories-layout{
    display:grid;
    grid-template-columns:1fr 1.25fr 1fr;
    gap:30px;
    align-items:center;
    margin-top:70px;
}

.story-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    cursor:pointer;
    background:#111;
    transition:.45s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.story-card img{
    width:100%;
    height:620px;
    object-fit:cover;
    display:block;

    opacity:1;

    transition:
        opacity .5s ease-in-out,
        transform 8s linear,
        filter .4s ease;
}

.story-slider.fade{
    opacity:0;
}

/* Center card bigger */

.center-story{
    transform:scale(1.06);
    z-index:2;
}

.center-story img{
    height:720px;
}

/* Hover */

.story-card:hover{
    transform:translateY(-12px);
}

.center-story:hover{
    transform:translateY(-12px) scale(1.06);
}

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

/* Overlay */

.story-info{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:45px 38px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.93)
    );

}

.story-info h5{

    color:#d4af37;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:14px;

    margin-bottom:14px;

}

.story-info h2{

    color:#fff;

    font-family:'Cinzel',serif;

    font-size:48px;

    margin-bottom:12px;

    line-height:1.1;

}

.story-info p{

    color:#d5d5d5;

    font-size:20px;

}

/* Button */

.story-btn{

    margin-top:28px;

    padding:15px 34px;

    border:none;

    border-radius:50px;

    background:#d4af37;

    color:#111;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.story-btn:hover{

    background:white;

    transform:translateY(-4px);

}

/*=========================================
        TESTIMONIALS
=========================================*/

.testimonials{

    padding:120px 6%;
    background:#080808;

}

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;

}

.testimonial-card{

    background:#121212;
    padding:45px;
    border-radius:20px;
    transition:.4s;
    border:1px solid rgba(212,175,55,.15);

}

.testimonial-card:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

}

.stars{

    color:#d4af37;
    font-size:22px;
    margin-bottom:20px;

}

.testimonial-card p{

    color:#d6d6d6;
    line-height:1.9;

}

.testimonial-card h4{

    color:#fff;
    margin-top:30px;

}

.testimonial-card span{

    color:#999;

}

/*==================================================
        FULLSCREEN STORY VIEWER
==================================================*/

.story-viewer{

    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.96);

    opacity:0;
    visibility:hidden;

    transition:.45s ease;

    z-index:99999;

}

.story-viewer.active{

    opacity:1;
    visibility:visible;

}

/* Overlay */

.viewer-overlay{

    position:absolute;
    inset:0;

    backdrop-filter:blur(12px);

}

/* Main Content */

.viewer-content{

    position:relative;

    width:min(92vw,1400px);
    height:85vh;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:2;

}

.viewer-content img{

    max-width:100%;
    max-height:100%;

    border-radius:18px;

    object-fit:contain;

    box-shadow:0 20px 60px rgba(0,0,0,.55);

    transform:scale(1);

    transition:
        opacity .45s ease,
        transform 10s ease;

}



/* Counter */

.viewer-counter{

    position:absolute;

    bottom:-45px;
    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:18px;

    letter-spacing:2px;

}

/* Close */

.viewer-close{

    position:absolute;

    top:25px;
    right:35px;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

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

    color:white;

    font-size:34px;

    cursor:pointer;

    z-index:5;

    transition:.35s;

}

.viewer-close:hover{

    background:#d4af37;
    color:#111;

}

/* Prev Next */

.viewer-prev,
.viewer-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;
    border-radius:50%;

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

    color:white;

    font-size:34px;

    cursor:pointer;

    z-index:5;

    transition:.35s;

}

.viewer-prev{

    left:35px;

}

.viewer-next{

    right:35px;

}

.viewer-prev:hover,
.viewer-next:hover{

    background:#d4af37;
    color:#111;

}

/* Thumbnails */

.viewer-thumbnails{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    z-index:5;

    overflow-x:auto;

    max-width:90%;

    padding:6px;

}

.viewer-thumbnails img{

    width:85px;
    height:55px;

    object-fit:cover;

    border-radius:8px;

    cursor:pointer;

    opacity:.55;

    transition:.3s;

    border:2px solid transparent;

}

.viewer-thumbnails img:hover,
.viewer-thumbnails img.active{

    opacity:1;

    border-color:#d4af37;

}
/*=====================================
        KEN BURNS EFFECT
======================================*/

@keyframes kenBurns{

    0%{

        transform:scale(1);

    }

    100%{

        transform:scale(1.08);

    }

}

.viewer-content img.kenburns{

    animation:kenBurns 10s ease forwards;

}
/*==============================
    KEN BURNS EFFECT
==============================*/

@keyframes kenBurns {

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}

.viewer-content img.kenburns{

    animation:kenBurns 8s linear forwards;

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

.why-choose{

    padding:110px 8%;

    background:#111;

}

.choose-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

}

.choose-card{

    background:#181818;

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;

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

}

.choose-card i{

    font-size:48px;

    color:#d4af37;

    margin-bottom:25px;

}

.choose-card h3{

    color:#fff;

    margin-bottom:15px;

    font-size:24px;

}

.choose-card p{

    color:#bbb;

    line-height:1.8;

}

.choose-card:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

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

}
/*==============================
    LUXURY SECTION HEADING
==============================*/

.luxury-heading{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;

}

.luxury-heading span{

    display:inline-block;

    color:#d4af37;

    font-size:14px;

    letter-spacing:8px;

    text-transform:uppercase;

    margin-bottom:20px;

    font-weight:600;

}

.luxury-heading h2{

    font-family:"Cormorant Garamond", serif;

    font-size:72px;

    font-weight:600;

    color:#fff;

    line-height:1.05;

    margin-bottom:28px;

    text-transform:uppercase;

}

.luxury-heading p{

    max-width:760px;

    margin:auto;

    color:#bdbdbd;

    font-size:20px;

    line-height:1.9;

}
/*==============================
    SIGNATURE EXPERIENCE
==============================*/

.signature-experience{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    padding:120px 8%;

    background:#0b0b0b;

}

.experience-left span{

    color:#d4af37;

    letter-spacing:5px;

    font-size:14px;

}

.experience-left h2{

    font-family:"Cormorant Garamond", serif;

    font-size:64px;

    color:#fff;

    margin:20px 0;

    line-height:1.1;

}

.experience-left p{

    color:#bdbdbd;

    line-height:1.9;

    font-size:18px;

}

.experience-points{

    margin:45px 0;

}

.point{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:22px;

    color:#fff;

    font-size:18px;

}

.point i{

    color:#d4af37;

    font-size:20px;

}

.experience-btn{

    display:inline-block;

    background:#d4af37;

    color:#111;

    padding:16px 36px;

    border-radius:40px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.experience-btn:hover{

    transform:translateY(-4px);

}

.experience-right img{

    width:100%;

    border-radius:24px;

    object-fit:cover;

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

}
/*==============================
        LUXURY CTA
==============================*/

.luxury-cta{

    position:relative;

    padding:140px 8%;

    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
    url("../assets/images/cta/cta-bg.jpg") center center/cover no-repeat;

    text-align:center;

}

.cta-overlay{

    max-width:900px;

    margin:auto;

}

.cta-overlay span{

    display:inline-block;

    color:#d4af37;

    letter-spacing:6px;

    font-size:15px;

    font-weight:600;

    margin-bottom:18px;

}

.cta-overlay h2{

    font-family:"Cormorant Garamond",serif;

    font-size:68px;

    color:#fff;

    line-height:1.1;

    margin-bottom:25px;

}

.cta-overlay p{

    color:#d6d6d6;

    font-size:20px;

    line-height:1.9;

    max-width:760px;

    margin:auto;

}

.cta-buttons{

    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-primary,
.cta-secondary{

    padding:18px 42px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.cta-primary{

    background:#d4af37;

    color:#111;

}

.cta-primary:hover{

    background:#fff;

}

.cta-secondary{

    border:2px solid rgba(255,255,255,.5);

    color:#fff;

}

.cta-secondary:hover{

    background:#fff;

    color:#111;

}
/* Remove extra space before footer */

.luxury-cta{
    padding:70px 8%;
    margin:0;
}

.footer{
    margin-top:0;
    padding-top:60px;
}

.footer-bottom{
    margin-top:40px;
}
/* ===== Remove Extra Space ===== */

.featured-stories,
.testimonials,
.signature-experience,
.why-choose,
.luxury-cta{
    margin-bottom:0 !important;
}

.luxury-cta{
    padding:80px 8% !important;
}

.footer{
    margin-top:0 !important;
    padding-top:60px !important;
}
/*==============================
        PORTFOLIO STATS
==============================*/

.portfolio-stats{

    background:#090909;
    padding:90px 8%;
    text-align:center;

}

.stats-heading span{

    color:#d4af37;
    letter-spacing:5px;
    font-size:14px;

}

.stats-heading h2{

    color:#fff;
    font-size:56px;
    font-family:"Cormorant Garamond",serif;
    margin:18px 0 60px;

}

.stats-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.stat-box{

    background:#141414;
    border:1px solid rgba(212,175,55,.15);
    border-radius:22px;
    padding:45px 20px;
    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-10px);
    border-color:#d4af37;

}

.stat-box h3{

    font-size:58px;
    color:#d4af37;
    margin-bottom:15px;
    font-family:"Cormorant Garamond",serif;

}

.stat-box p{

    color:#d0d0d0;
    font-size:18px;

}

/*==================================
        FILMS HERO
==================================*/

.films-hero{

    position:relative;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),
    url("../assets/images/films/hero.jpg")
    center center/cover no-repeat;

}

.films-overlay{

    position:absolute;

    inset:0;

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

}

.films-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:20px;

}

.hero-subtitle{

    color:#d4af37;

    letter-spacing:6px;

    font-size:15px;

    text-transform:uppercase;

}

.films-content h1{

    color:#fff;

    font-size:78px;

    margin:25px 0;

    font-family:"Cormorant Garamond",serif;

    line-height:1.05;

}

.films-content p{

    color:#ddd;

    font-size:20px;

    line-height:1.9;

    max-width:760px;

    margin:auto;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-btn{

    background:#d4af37;

    color:#111;

    padding:18px 40px;

    border-radius:50px;

    font-weight:600;

}

.hero-btn:hover{

    background:#fff;

}

.hero-btn-outline{

    border:2px solid rgba(255,255,255,.5);

    color:#fff;

    padding:18px 40px;

    border-radius:50px;

}

.hero-btn-outline:hover{

    background:#fff;

    color:#111;

}

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    color:#d4af37;

    font-size:28px;

    animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

    0%,100%{

        transform:translate(-50%,0);

    }

    50%{

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

    }

}
/*==================================
CATEGORY NAVIGATION
==================================*/

.film-categories{

    padding:100px 8%;

    background:#0b0b0b;

}

.category-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    margin-top:55px;
}

.category-item{

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:220px;
    height:58px;

    padding:0 28px;

    background:#141414;

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

    border-radius:50px;

    color:#fff;

    text-decoration:none;

    font-size:17px;

    font-weight:500;

    transition:all .35s ease;

    box-sizing:border-box;

}

.category-item:hover{

    background:#d4af37;

    color:#111;

    border-color:#d4af37;

    transform:translateY(-5px);

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

}
/*==================================
FILM CARDS
==================================*/

.featured-films{

    background:#080808;

    padding:120px 8%;

}

.film-grid{

    display:grid;

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

    gap:35px;

    margin-top:70px;

}

.film-card{

    background:#111;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;
    border:1px solid rgba(212,175,55,.12);

}

.film-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.45);
border-color:rgba(212,175,55,.45);
}

.film-video iframe{

    width:100%;

    aspect-ratio:16/9;

    border:none;

    display:block;

    border-radius:22px 22px 0 0;

}
.film-details{

    padding:24px;

    background:#111;

}

.film-details span{

    display:block;

    color:#d4af37;

    font-family:"Poppins",sans-serif;

    font-size:13px;

    font-weight:500;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.film-details h3{

    font-family:"Cinzel",serif;

    font-size:30px;

    font-weight:700;

    color:#ffffff;

    margin:0 0 12px;

    line-height:1.25;

    letter-spacing:.5px;

    transition:.35s;

}

.film-card:hover .film-details h3{

    color:#d4af37;

}

.film-details p{

    font-family:"Poppins",sans-serif;

    font-size:15px;

    color:#a7a7a7;

    margin:0;

    line-height:1.7;

}
/*==========================
TESTIMONIALS
==========================*/

.testimonials{

    padding:120px 8%;

    background:#0a0a0a;

}

.testimonial-slider{

    display:grid;

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

    gap:35px;

    margin-top:70px;

}

.testimonial-card{

    background:#111;

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

    border-radius:22px;

    padding:35px;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.45);

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

}

.testimonial-stars{

    color:#d4af37;

    font-size:24px;

    margin-bottom:20px;

}

.testimonial-text{

    color:#cfcfcf;

    line-height:1.9;

    font-size:16px;

    margin-bottom:30px;

}

.testimonial-client{

    display:flex;

    align-items:center;

    gap:20px;

    margin-top:30px;

}

.testimonial-client img{

    width:90px;

    height:90px;

    object-fit:cover;

    border-radius:50%;

    border:3px solid #d4af37;

    flex-shrink:0;

}

.testimonial-client h4{

    color:#fff;

    margin:0;

    font-size:20px;

    font-family:"Cinzel",serif;

}

.testimonial-client span{

    color:#d4af37;

    font-size:14px;

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

.cta-section{

    padding:140px 8%;

    background:linear-gradient(135deg,#080808,#111,#080808);

    text-align:center;

}

.cta-content{

    max-width:900px;

    margin:auto;

}

.cta-content span{

    color:#d4af37;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:14px;

    font-family:"Poppins",sans-serif;

}

.cta-content h2{

    margin:25px 0;

    font-size:56px;

    color:#fff;

    font-family:"Cinzel",serif;

    line-height:1.25;

}

.cta-content p{

    max-width:700px;

    margin:auto;

    color:#bfbfbf;

    line-height:1.9;

    font-size:18px;

}

.cta-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}
/*==========================
CTA BUTTONS
==========================*/

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

    margin-top:45px;

    flex-wrap:wrap;

}

/* Gold Button */

.btn-gold{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:220px;

    height:64px;

    background:#d4af37;

    color:#000;

    border-radius:50px;

    font-family:"Poppins",sans-serif;

    font-size:17px;

    font-weight:600;

    text-decoration:none;

    transition:.35s ease;

}

.btn-gold:hover{

    transform:translateY(-4px);

    background:#e4bc47;

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

}

/* Outline Button */

.btn-outline{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:220px;

    height:64px;

    border:2px solid #d4af37;

    color:#d4af37;

    border-radius:50px;

    text-decoration:none;

    font-family:"Poppins",sans-serif;

    font-size:17px;

    font-weight:600;

    transition:.35s ease;

}

.btn-outline:hover{

    background:#d4af37;

    color:#000;

    transform:translateY(-4px);

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

}
/*==========================
YOUTUBE SECTION
==========================*/

.youtube-section{

    padding:120px 8%;

    background:#0b0b0b;

    text-align:center;

}

.youtube-content{

    max-width:900px;

    margin:auto;

}

.youtube-content span{

    color:#d4af37;

    font-size:14px;

    letter-spacing:4px;

    text-transform:uppercase;

    font-family:"Poppins",sans-serif;

}

.youtube-content h2{

    color:#fff;

    font-size:56px;

    font-family:"Cinzel",serif;

    margin:22px 0;

    line-height:1.25;

}

.youtube-content p{

    color:#bfbfbf;

    font-size:18px;

    line-height:1.9;

    max-width:760px;

    margin:0 auto 45px;

}

.youtube-content strong{

    color:#ffffff;

}

.youtube-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    background:#d4af37;

    color:#000;

    text-decoration:none;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.youtube-btn:hover{

    transform:translateY(-5px);

    background:#e4bc47;

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

}
