/* =========================
   RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --gold:#C6A24A;
    --gold-light:#D8B96A;
    --black:#050505;
    --dark:#0d0d0d;
    --charcoal:#161616;
    --white:#ffffff;
    --text-light:rgba(255,255,255,0.78);
    --border:rgba(255,255,255,0.08);
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--black);
    color:#fff;
    overflow-x:hidden;
    line-height:1.7;
}

a{
    text-decoration:none;
    transition:0.35s ease;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Playfair Display',serif;
    font-weight:700;
    line-height:1.15;
    margin:0;
}

p{
    margin:0;
}

/* =========================
   TOP BAR
========================= */
.top-luxury-bar{
    background:#000;
    border-bottom:1px solid rgba(255,255,255,0.06);
    padding:12px 0;
}

.luxury-top-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.top-left span,
.top-right a{
    color:rgba(255,255,255,0.72);
    font-size:14px;
    display:flex;
    align-items:center;
    gap:10px;
}

.top-right{
    display:flex;
    gap:24px;
}

.top-right a:hover{
    color:var(--gold);
}

/* =========================
   HEADER
========================= */
.luxury-header{
    position:sticky;
    top:0;
    z-index:9999;
}

.luxury-navbar{
    background:rgba(8,8,8,0.92);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,0.06);
    padding:20px 0;
}

.luxury-logo{
    color:#fff;
    font-size:28px;
    font-family:'Playfair Display',serif;
    font-weight:700;
}

.luxury-logo img{
    max-height:78px;
    width:250px;
}

.luxury-nav-link{
    color:#fff !important;
    font-weight:500;
    font-size:15px;
    letter-spacing:0.4px;
    padding:12px 18px !important;
    position:relative;
}

.luxury-nav-link::after{
    content:'';
    position:absolute;
    left:18px;
    bottom:6px;
    width:0;
    height:1px;
    background:var(--gold);
    transition:0.35s ease;
}

.luxury-nav-link:hover{
    color:var(--gold) !important;
}

.luxury-nav-link:hover::after{
    width:50%;
}

.luxury-cta-btn{
    padding:15px 34px;
    border-radius:60px;
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    color:#fff;
    font-weight:600;
    box-shadow:0 15px 35px rgba(198,162,74,0.22);
}

.luxury-cta-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

.luxury-toggler{
    border:none;
    box-shadow:none !important;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.luxury-toggler span{
    width:28px;
    height:2px;
    background:#fff;
    display:block;
}

/* =========================
   BUTTONS
========================= */
.btn-luxury-gold{
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    color:#fff;
    padding:16px 36px;
    border-radius:60px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    box-shadow:0 18px 45px rgba(198,162,74,0.22);
}

.btn-luxury-gold:hover{
    transform:translateY(-4px);
    color:#fff;
}

.btn-luxury-outline{
    padding:16px 36px;
    border-radius:60px;
    border:1px solid rgba(255,255,255,0.18);
    background:rgba(255,255,255,0.04);
    color:#fff;
    backdrop-filter:blur(10px);
}

.btn-luxury-outline:hover{
    color:#fff;
    border-color:var(--gold);
}

/* =========================
   SECTION BASE
========================= */
.section-padding{
    padding:120px 0;
}

.section-title{
    font-size:58px;
    color:#fff;
}

.section-subtitle{
    color:var(--gold);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:4px;
    margin-bottom:18px;
    display:block;
}

/* =========================
   HERO
========================= */
.premium-hero{
    position:relative;
}

.premium-hero-slide{
    min-height:100vh;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.72);
}

.gold-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right, rgba(198,162,74,0.18), transparent 35%);
}

.premium-hero-content{
    position:relative;
    z-index:10;
    max-width:850px;
    padding-top:80px;
}

.hero-subtitle{
    color:var(--gold);
    font-size:13px;
    letter-spacing:4px;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:24px;
}

.premium-hero-content h1{
    font-size:82px;
    color:#fff;
    margin-bottom:28px;
}

.premium-hero-content p{
    color:var(--text-light);
    font-size:20px;
    max-width:720px;
    line-height:1.9;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-nav{
    width:70px;
    opacity:1;
}

.hero-nav span{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:#fff;
    font-size:34px;
    backdrop-filter:blur(12px);
}

.scroll-indicator{
    position:absolute;
    bottom:34px;
    left:50%;
    transform:translateX(-50%);
    z-index:20;
}

.scroll-indicator span{
    width:28px;
    height:48px;
    border:2px solid rgba(255,255,255,0.22);
    border-radius:40px;
    display:block;
    position:relative;
}

.scroll-indicator span::after{
    content:'';
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--gold);
    position:absolute;
    top:10px;
    left:50%;
    transform:translateX(-50%);
    animation:scrollAnim 1.7s infinite;
}

@keyframes scrollAnim{
    0%{
        opacity:1;
        top:10px;
    }
    100%{
        opacity:0;
        top:28px;
    }
}

/* =========================
   FOOTER PLACEHOLDER SAFE
========================= */
.site-footer{
    background:#000;
    padding:80px 0;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px){
    .luxury-top-inner{
        flex-direction:column;
        text-align:center;
    }

    .top-right{
        flex-wrap:wrap;
        justify-content:center;
    }

    .premium-hero-content h1{
        font-size:54px;
    }

    .premium-hero-content p{
        font-size:17px;
    }

    .navbar-collapse{
        margin-top:20px;
        padding-top:20px;
        border-top:1px solid rgba(255,255,255,0.08);
    }
}

@media(max-width:767px){
    .top-luxury-bar{
        display:none;
    }

    .premium-hero-content h1{
        font-size:38px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-luxury-gold,
    .btn-luxury-outline{
        width:100%;
        text-align:center;
    }

    .section-title{
        font-size:36px;
    }
}

/* PREMIUM ABOUT */
.luxury-about{
    background:
        radial-gradient(circle at left center, rgba(198,162,74,0.08), transparent 30%),
        linear-gradient(180deg,#090909 0%, #111 100%);
}

.luxury-about-visual{
    position:relative;
    padding-right:70px;
}

.main-about-image{
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 35px 70px rgba(0,0,0,0.45);
}

.main-about-image img{
    width:100%;
    height:680px;
    object-fit:cover;
}

.floating-exp-card{
    position:absolute;
    right:0;
    bottom:60px;
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    padding:32px 36px;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(198,162,74,0.28);
}

.floating-exp-card h3{
    font-size:54px;
    color:#fff;
    margin-bottom:8px;
}

.floating-exp-card p{
    color:#fff;
    font-weight:600;
}

.luxury-about-content{
    padding-left:20px;
}

.luxury-about-content p{
    color:rgba(255,255,255,0.72);
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

.about-feature-list{
    margin:32px 0;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.about-feature{
    display:flex;
    align-items:center;
    gap:14px;
    color:#fff;
    font-weight:500;
    font-size:16px;
}

.about-feature i{
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(198,162,74,0.14);
    color:var(--gold);
}

@media(max-width:991px){
    .luxury-about-visual{
        padding-right:0;
    }

    .main-about-image img{
        height:500px;
    }

    .floating-exp-card{
        right:20px;
        bottom:20px;
    }

    .luxury-about-content{
        padding-left:0;
    }
}

@media(max-width:767px){
    .main-about-image img{
        height:380px;
    }

    .floating-exp-card{
        padding:22px;
    }

    .floating-exp-card h3{
        font-size:36px;
    }
}

/* PREMIUM SERVICES */
.luxury-services{
    background:
        radial-gradient(circle at right top, rgba(198,162,74,0.08), transparent 30%),
        linear-gradient(180deg,#070707 0%, #101010 100%);
}

.services-heading-wrap{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
    margin-bottom:60px;
}

.luxury-service-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(198,162,74,0.12);
    border-radius:26px;
    overflow:hidden;
    backdrop-filter:blur(10px);
    transition:all 0.45s ease;
    height:100%;
}

.luxury-service-card:hover{
    transform:translateY(-12px);
    border-color:rgba(198,162,74,0.35);
    box-shadow:0 28px 70px rgba(198,162,74,0.12);
}

.luxury-service-image{
    position:relative;
    overflow:hidden;
    height:320px;
}

.luxury-service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.65s ease;
}

.luxury-service-card:hover .luxury-service-image img{
    transform:scale(1.08);
}

.service-image-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.12)),
        linear-gradient(to right, rgba(198,162,74,0.08), transparent);
}

.service-category-tag{
    position:absolute;
    top:22px;
    left:22px;
    padding:10px 16px;
    border-radius:40px;
    background:rgba(198,162,74,0.14);
    border:1px solid rgba(198,162,74,0.22);
    color:var(--gold);
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    backdrop-filter:blur(10px);
}

.luxury-service-content{
    padding:30px;
}

.luxury-service-content h3{
    color:#fff;
    font-size:30px;
    margin-bottom:16px;
}

.luxury-service-content p{
    color:rgba(255,255,255,0.72);
    line-height:1.9;
    margin-bottom:24px;
}

.service-read-more{
    color:var(--gold);
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.service-read-more span{
    transition:0.3s;
}

.service-read-more:hover{
    color:#fff;
}

.service-read-more:hover span{
    transform:translateX(6px);
}

.services-premium-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:18px 32px;
    border-radius:60px;
    background:linear-gradient(
        135deg,
        rgba(198,162,74,0.14),
        rgba(198,162,74,0.06)
    );
    border:1px solid rgba(198,162,74,0.25);
    color:#fff;
    font-weight:600;
    font-size:15px;
    letter-spacing:0.3px;
    backdrop-filter:blur(12px);
    box-shadow:0 14px 35px rgba(198,162,74,0.08);
    white-space:nowrap;
    transition:all 0.4s ease;
}

.services-premium-btn i{
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    color:#fff;
    font-size:14px;
    transition:0.35s ease;
}

.services-premium-btn:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 22px 50px rgba(198,162,74,0.18);
    border-color:rgba(198,162,74,0.45);
}

.services-premium-btn:hover i{
    transform:translateX(5px);
}

@media(max-width:991px){
    .services-heading-wrap{
        flex-direction:column;
        align-items:start;
    }
}

/* WHY CHOOSE */
.luxury-why{
    background:
        radial-gradient(circle at left top, rgba(198,162,74,0.08), transparent 28%),
        linear-gradient(180deg,#0a0a0a 0%, #121212 100%);
}

.why-intro{
    color:rgba(255,255,255,0.72);
    font-size:18px;
    line-height:1.9;
    margin-top:28px;
    max-width:600px;
}

.why-metrics{
    display:flex;
    gap:24px;
    margin-top:42px;
    flex-wrap:wrap;
}

.metric-box{
    min-width:220px;
    padding:28px;
    border-radius:24px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(198,162,74,0.12);
    backdrop-filter:blur(10px);
}

.metric-box h3{
    font-size:52px;
    color:var(--gold);
    margin-bottom:8px;
}

.metric-box p{
    color:#fff;
    font-weight:500;
}

.why-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.why-feature-card{
    padding:34px 28px;
    border-radius:26px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(198,162,74,0.12);
    backdrop-filter:blur(10px);
    transition:all 0.4s ease;
}

.why-feature-card:hover{
    transform:translateY(-10px);
    border-color:rgba(198,162,74,0.28);
    box-shadow:0 25px 55px rgba(198,162,74,0.10);
}

.why-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    color:#fff;
    font-size:24px;
    margin-bottom:22px;
}

.why-feature-card h4{
    color:#fff;
    font-size:26px;
    margin-bottom:14px;
}

.why-feature-card p{
    color:rgba(255,255,255,0.70);
    line-height:1.8;
}

@media(max-width:991px){
    .why-feature-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:767px){
    .metric-box{
        width:100%;
        min-width:100%;
    }
}

/* PREMIUM STATS */
.luxury-stats{
    padding:140px 0;
    background:
        radial-gradient(circle at center, rgba(198,162,74,0.07), transparent 32%),
        linear-gradient(180deg,#050505 0%, #0b0b0b 100%);
    border-top:1px solid rgba(255,255,255,0.04);
    border-bottom:1px solid rgba(255,255,255,0.04);
    position:relative;
    overflow:hidden;
}

.stats-heading{
    text-align:center;
    max-width:980px;
    margin:0 auto 95px;
}

.stats-heading .section-subtitle{
    margin-bottom:18px;
}

.stats-heading h2{
    font-size:68px;
    line-height:1.15;
    max-width:980px;
    margin:0 auto 26px;
}

.stats-heading p{
    color:rgba(255,255,255,0.68);
    font-size:18px;
    line-height:1.9;
    max-width:760px;
    margin:0 auto;
}

.luxury-stat-box{
    text-align:center;
    padding:52px 24px;
    border-radius:28px;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.03),
        rgba(255,255,255,0.015)
    );
    border:1px solid rgba(198,162,74,0.10);
    backdrop-filter:blur(10px);
    transition:all 0.45s ease;
    position:relative;
    overflow:hidden;
}

.luxury-stat-box::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top, rgba(198,162,74,0.06), transparent 45%);
    opacity:0;
    transition:0.4s;
}

.luxury-stat-box:hover{
    transform:translateY(-12px);
    border-color:rgba(198,162,74,0.28);
    box-shadow:0 28px 65px rgba(198,162,74,0.10);
}

.luxury-stat-box:hover::before{
    opacity:1;
}

.luxury-stat-box h2{
    font-size:76px;
    color:var(--gold);
    display:inline-block;
    line-height:1;
    text-shadow:0 0 28px rgba(198,162,74,0.16);
    position:relative;
    z-index:2;
}

.luxury-stat-box span{
    font-size:36px;
    color:var(--gold);
    font-weight:700;
    vertical-align:top;
    margin-left:5px;
    position:relative;
    z-index:2;
}

.luxury-stat-box p{
    color:rgba(255,255,255,0.74);
    margin-top:18px;
    font-size:16px;
    letter-spacing:0.3px;
    position:relative;
    z-index:2;
}

@media(max-width:991px){
    .stats-heading h2{
        font-size:48px;
    }

    .stats-heading{
        margin-bottom:70px;
    }
}

@media(max-width:767px){
    .luxury-stats{
        padding:90px 0;
    }

    .stats-heading{
        margin-bottom:50px;
    }

    .stats-heading h2{
        font-size:34px;
        line-height:1.25;
    }

    .stats-heading p{
        font-size:16px;
    }

    .luxury-stat-box h2{
        font-size:54px;
    }

    .luxury-stat-box span{
        font-size:26px;
    }
}

/* PROJECTS */
.luxury-projects{
    background:
        radial-gradient(circle at right top, rgba(198,162,74,0.08), transparent 28%),
        linear-gradient(180deg,#080808 0%, #101010 100%);
}

.projects-heading-wrap{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
    margin-bottom:60px;
}

.luxury-project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    min-height:320px;
    border:1px solid rgba(198,162,74,0.10);
}

.featured-project{
    grid-column:span 2;
    grid-row:span 2;
    min-height:680px;
}

.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.7s ease;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.08)),
        linear-gradient(to right, rgba(198,162,74,0.08), transparent);
}

.project-content{
    position:absolute;
    left:30px;
    bottom:30px;
    z-index:5;
}

.project-tag{
    display:inline-block;
    padding:10px 16px;
    border-radius:40px;
    background:rgba(198,162,74,0.16);
    border:1px solid rgba(198,162,74,0.22);
    color:var(--gold);
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.project-content h3{
    color:#fff;
    font-size:34px;
    margin-bottom:18px;
    max-width:420px;
}

@media(max-width:991px){
    .projects-heading-wrap{
        flex-direction:column;
        align-items:start;
    }

    .luxury-project-grid{
        grid-template-columns:1fr;
    }

    .featured-project{
        grid-column:auto;
        grid-row:auto;
        min-height:420px;
    }
}

/* TESTIMONIALS */
.luxury-testimonials{
    background:
        radial-gradient(circle at center, rgba(198,162,74,0.07), transparent 30%),
        linear-gradient(180deg,#090909 0%, #111 100%);
}

.testimonial-heading{
    margin-bottom:70px;
}

.luxury-testimonial-card{
    max-width:950px;
    margin:0 auto;
    padding:70px;
    border-radius:30px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(198,162,74,0.12);
    backdrop-filter:blur(10px);
    text-align:center;
}

.quote-icon{
    width:82px;
    height:82px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 34px;
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    color:#fff;
    font-size:28px;
}

.testimonial-message{
    font-size:24px;
    line-height:1.9;
    color:rgba(255,255,255,0.82);
    max-width:780px;
    margin:0 auto 40px;
}

.testimonial-author{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
}

.testimonial-author img{
    width:76px;
    height:76px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid rgba(198,162,74,0.25);
}

.testimonial-author h4{
    color:#fff;
    font-size:24px;
    margin-bottom:6px;
}

.testimonial-author span{
    color:rgba(255,255,255,0.68);
}

@media(max-width:767px){
    .luxury-testimonial-card{
        padding:40px 24px;
    }

    .testimonial-message{
        font-size:18px;
    }

    .testimonial-author{
        flex-direction:column;
    }
}

.testimonial-nav{
    width:70px;
    opacity:1;
}

.testimonial-nav span{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(198,162,74,0.16);
    backdrop-filter:blur(12px);
    color:var(--gold);
    font-size:18px;
    transition:all 0.35s ease;
}

.testimonial-nav:hover span{
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(198,162,74,0.18);
}

@media(max-width:767px){
    .testimonial-nav{
        display:none;
    }
}

/* BLOGS */
.luxury-blogs{
    background:
        radial-gradient(circle at left top, rgba(198,162,74,0.08), transparent 30%),
        linear-gradient(180deg,#060606 0%, #101010 100%);
}

.blogs-heading-wrap{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
    margin-bottom:60px;
}

.luxury-blog-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:24px;
}

.featured-blog{
    grid-row:span 2;
}

.blog-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    min-height:320px;
    border:1px solid rgba(198,162,74,0.10);
    transition:0.4s ease;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-image{
    width:100%;
    height:100%;
    position:absolute;
    inset:0;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.7s ease;
}

.blog-card:hover img{
    transform:scale(1.08);
}

.blog-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(to top, rgba(0,0,0,0.90), rgba(0,0,0,0.08)),
        linear-gradient(to right, rgba(198,162,74,0.08), transparent);
}

.blog-content{
    position:absolute;
    left:30px;
    bottom:30px;
    z-index:5;
}

.blog-tag{
    display:inline-block;
    padding:10px 16px;
    border-radius:40px;
    background:rgba(198,162,74,0.14);
    border:1px solid rgba(198,162,74,0.20);
    color:var(--gold);
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.blog-content h3{
    color:#fff;
    font-size:32px;
    max-width:520px;
    margin-bottom:18px;
}

@media(max-width:991px){
    .blogs-heading-wrap{
        flex-direction:column;
        align-items:start;
    }

    .luxury-blog-grid{
        grid-template-columns:1fr;
    }

    .featured-blog{
        grid-row:auto;
    }
}

/* FINAL CTA */
.luxury-final-cta{
    position:relative;
    padding:160px 0;
    overflow:hidden;
    background-image:url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
}

.cta-bg-layer{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.80);
}

.cta-gold-layer{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at center, rgba(198,162,74,0.16), transparent 35%);
}

.luxury-cta-content{
    position:relative;
    z-index:5;
    max-width:950px;
    margin:0 auto;
    text-align:center;
}

.luxury-cta-content h2{
    font-size:72px;
    color:#fff;
    line-height:1.15;
    margin:22px 0 28px;
}

.luxury-cta-content p{
    color:rgba(255,255,255,0.76);
    font-size:19px;
    line-height:1.9;
    max-width:760px;
    margin:0 auto 42px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

@media(max-width:991px){
    .luxury-cta-content h2{
        font-size:48px;
    }
}

@media(max-width:767px){
    .luxury-final-cta{
        padding:100px 0;
    }

    .luxury-cta-content h2{
        font-size:34px;
    }

    .luxury-cta-content p{
        font-size:16px;
    }

    .cta-buttons{
        flex-direction:column;
    }
}

/* PREMIUM FOOTER */
.luxury-footer{
    background:linear-gradient(180deg,#080808 0%, #000 100%);
    border-top:1px solid rgba(198,162,74,0.08);
    padding:100px 0 30px;
}

.footer-logo{
    max-height:90px;
    margin-bottom:24px;
}

.footer-brand p{
    color:rgba(255,255,255,0.68);
    line-height:1.9;
    max-width:360px;
}

.footer-widget h5{
    color:#fff;
    font-size:22px;
    margin-bottom:24px;
}

.footer-widget ul li{
    margin-bottom:14px;
    color:rgba(255,255,255,0.66);
}

.footer-widget ul li a{
    color:rgba(255,255,255,0.66);
}

.footer-widget ul li a:hover{
    color:var(--gold);
}

.footer-socials{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.footer-socials a{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    color:#fff;
}

.footer-socials a:hover{
    background:var(--gold);
    color:#fff;
    transform:translateY(-4px);
}

.footer-bottom{
    margin-top:60px;
    padding-top:28px;
    border-top:1px solid rgba(255,255,255,0.06);
    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,0.55);
}