*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#111111;
    color:#f5f5f5;
    overflow-x:hidden;
    scroll-behavior:smooth;
}

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

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:20px 8%;

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

    background:rgba(0,0,0,0.45);

    backdrop-filter:blur(14px);

    z-index:1000;

    overflow:visible;
    
}
.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-family:'Parisienne', cursive;

    font-size:2rem;

    color:#c8a96b;
}

.logo img{

    width:38px;

    height:auto;

    object-fit:contain;
}

nav a{

    text-decoration:none;

    color:white;

    margin-left:30px;

    font-weight:500;

    transition:0.4s ease;
}

nav a:hover{

    color:#c8a96b;
}

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

.hero{
    overflow:hidden;

    height:100vh;

    background-attachment:fixed;

    background:
    linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)
    ),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?q=80&w=1920')
    center/cover no-repeat;

    position:relative;

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

    text-align:center;

    padding:20px;
}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(200,169,107,0.15),
        transparent 40%
    );

    z-index:1;
}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,0.55);
}

.hero-content{

    animation:
    heroFade 1.8s ease;

    position:relative;

    z-index:2;

    max-width:800px;

    color:white;
}

.hero-content h1{

    font-size:4.5rem;

    margin-bottom:25px;

    line-height:1.1;

    font-weight:700;

    text-shadow:0 5px 20px rgba(0,0,0,0.4);
}

.hero-content p{

    font-size:1.2rem;

    line-height:1.9;

    margin-bottom:45px;

    color:#dddddd;

    max-width:700px;

    margin-left:auto;
    margin-right:auto;
}

/* BUTTONS */

.hero-buttons{

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

    flex-wrap:wrap;
}

.btn{

    background:#c8a96b;

    color:black;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s ease;

    box-shadow:0 10px 25px rgba(0,0,0,0.3);

    position:relative;

    overflow:hidden;

    isolation:isolate;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    contain:paint;
}

.btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-150%;

    width:60%;

    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.55),
        transparent
    );

    transform:skewX(-25deg);

    transition:left 0.8s ease;

    z-index:0;
}

.btn:hover::before{

    left:160%;
}

.btn:hover{    

    box-shadow:
    0 15px 35px rgba(200,169,107,0.35);

    transform:translateY(-5px);

    background:#d6b879;
}

.btn span{

    position:relative;

    z-index:2;
}


/* =========================
   ABOUT
========================= */

.about{

    padding:120px 8%;

    background:#181818;
}

.about-container{

    max-width:1200px;

    margin:auto;
}

.about-text h2{

    font-size:2.8rem;

    margin-bottom:30px;

    color:#ffffff;
}

.about-text p{

    font-size:1.1rem;

    line-height:1.9;

    margin-bottom:20px;

    color:#cfcfcf;
}

/* =========================
   SERVICES
========================= */

.services{

    position:relative;

    padding:130px 8%;

    overflow:hidden;

    background:
    radial-gradient(
        circle at 8% 5%,
        rgba(200,169,107,0.10),
        transparent 28%
    ),
    linear-gradient(
        180deg,
        #121212 0%,
        #171717 100%
    );
}

.services::before{

    content:"";

    position:absolute;

    width:460px;
    height:460px;

    right:-220px;
    top:25%;

    border:1px solid rgba(200,169,107,0.12);

    border-radius:50%;

    pointer-events:none;
}

.services-intro{

    position:relative;

    z-index:1;

    max-width:820px;

    margin:0 auto 92px;

    text-align:center;
}

.section-kicker,
.service-category-kicker{

    color:#c8a96b;

    font-size:0.78rem;

    font-weight:700;

    letter-spacing:0.18em;

    text-transform:uppercase;
}

.services h2{

    margin:18px 0 20px;

    color:#ffffff;

    font-size:3.1rem;

    line-height:1.15;
}

.services-lead{

    max-width:720px;

    margin:auto;

    color:#cfcfcf;

    font-size:1.08rem;

    line-height:1.9;
}

.service-category{

    position:relative;

    z-index:1;

    max-width:1300px;

    margin:0 auto 88px;
}

.service-category--last{

    margin-bottom:0;
}

.service-category-heading{

    display:flex;

    align-items:flex-end;

    gap:28px;

    margin-bottom:30px;
}

.service-category-heading h3{

    margin-top:9px;

    color:#ffffff;

    font-size:2rem;

    line-height:1.25;
}

.service-category-line{

    flex:1;

    height:1px;

    margin-bottom:10px;

    background:
    linear-gradient(
        90deg,
        rgba(200,169,107,0.48),
        transparent
    );
}

.services-grid{

    display:grid;

    gap:26px;

    align-items:stretch;
}

.services-grid--two{

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

.services-grid--three{

    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
}

.services-grid--four{

    grid-template-columns:repeat(auto-fit, minmax(245px, 1fr));
}

.service-card{

    position:relative;

    display:flex;

    flex-direction:column;

    min-height:100%;

    padding:34px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,0.09);

    border-radius:25px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.055),
        rgba(255,255,255,0.018)
    );

    box-shadow:0 15px 36px rgba(0,0,0,0.25);

    backdrop-filter:blur(16px);

    transition:
    transform 0.5s cubic-bezier(0.22,1,0.36,1),
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    background 0.5s ease;
}

.service-card::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    top:-128px;
    right:-122px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(200,169,107,0.17),
        transparent 68%
    );

    opacity:0.52;

    pointer-events:none;

    transition:transform 0.6s ease, opacity 0.6s ease;
}

.service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(200,169,107,0.82);

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.078),
        rgba(255,255,255,0.028)
    );

    box-shadow:0 25px 50px rgba(0,0,0,0.40);
}

.service-card:hover::before{

    opacity:0.95;

    transform:scale(1.28);
}

.service-card--featured{

    padding:40px;
}

.service-card--signature{

    border-color:rgba(200,169,107,0.32);
}

.service-card-top{

    position:relative;

    z-index:1;
}

.service-card-tag{

    position:relative;

    z-index:1;

    display:inline-flex;

    align-items:center;

    width:fit-content;

    margin-bottom:17px;

    padding:7px 11px;

    border:1px solid rgba(200,169,107,0.28);

    border-radius:999px;

    color:#ddc48f;

    background:rgba(200,169,107,0.08);

    font-size:0.72rem;

    font-weight:700;

    letter-spacing:0.08em;

    text-transform:uppercase;
}

.service-card h3{

    position:relative;

    z-index:1;

    margin-bottom:16px;

    color:#ffffff;

    font-size:1.48rem;

    line-height:1.28;
}

.service-card p{

    position:relative;

    z-index:1;

    margin-bottom:24px;

    color:#cfcfcf;

    font-size:0.98rem;

    line-height:1.78;
}

.service-price-list{

    position:relative;

    z-index:1;

    display:flex;

    flex-direction:column;

    gap:0;

    margin-top:auto;

    border-top:1px solid rgba(255,255,255,0.08);
}

.price-row{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:16px;

    padding:13px 0;

    border-bottom:1px solid rgba(255,255,255,0.08);

    color:#ececec;

    font-size:0.93rem;
}

.price-row span{

    color:#dedede;
}

.price-row strong,
.addon-row strong{

    flex-shrink:0;

    color:#ddc48f;

    font-size:0.94rem;

    font-weight:700;

    white-space:nowrap;
}

.service-addons{

    position:relative;

    z-index:1;

    margin-top:22px;

    padding:19px;

    border:1px solid rgba(200,169,107,0.14);

    border-radius:17px;

    background:rgba(0,0,0,0.16);
}

.service-addons-title{

    margin:0 0 8px !important;

    color:#ddc48f !important;

    font-size:0.79rem !important;

    font-weight:700;

    letter-spacing:0.08em;

    text-transform:uppercase;
}

.addon-row{

    display:flex;

    justify-content:space-between;

    gap:14px;

    padding:8px 0;

    color:#d7d7d7;

    font-size:0.88rem;
}

.addon-row + .addon-row{

    border-top:1px solid rgba(255,255,255,0.07);
}

.services-note{

    position:relative;

    z-index:1;

    max-width:760px;

    margin:72px auto 0;

    color:#a8a8a8;

    font-size:0.93rem;

    line-height:1.7;

    text-align:center;
}

/* =========================
   EMAIL CONTACT BUTTON
========================= */

.email-contact-btn,
.call-contact-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    min-width:230px;

    padding:18px 34px;

    border-radius:60px;

    font-weight:700;

    font-size:1rem;

    text-decoration:none;

    transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease;
}

.email-contact-btn{

    background:
    linear-gradient(
        135deg,
        #c8a96b,
        #d6b879
    );

    color:black;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.35);
}

.email-contact-btn:hover{

    transform:
    translateY(-5px)
    scale(1.02);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.45);
}

.call-contact-btn{

    border:1px solid rgba(200,169,107,0.65);

    background:rgba(200,169,107,0.09);

    color:#f5f5f5;
}

.call-contact-btn:hover{

    transform:
    translateY(-5px)
    scale(1.02);

    border-color:#c8a96b;

    background:#c8a96b;

    color:#111111;

    box-shadow:
    0 25px 50px rgba(0,0,0,0.45);
}

/* CONTACT EMAIL WRAPPER */

.contact-email-wrapper{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:18px;

    margin-top:20px;
}

/* =========================
   CONTACT
========================= */
.contact-note{

    margin-top:20px;

    color:#9f9f9f;

    text-align:center;

    font-size:0.95rem;
}

.contact{

    padding:120px 8%;

    background:#181818;
}

.contact h2{

    text-align:center;

    font-size:2.8rem;

    margin-bottom:60px;
}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    max-width:1200px;

    margin:auto;
}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

    font-size:1.1rem;

    color: white;
}

.contact-link,
.footer-contact a{

    color:inherit;

    text-decoration:none;

    transition:color 0.3s ease;
}

.contact-link:hover,
.footer-contact a:hover{

    color:#c8a96b;
}

form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

input,
textarea{

    padding:18px;

    border:none;

    background:#222222;

    color:white;

    border-radius:15px;

    font-size:1rem;

    outline:none;
}

textarea{

    min-height:180px;

    resize:none;
}

form button{

    background:#c8a96b;

    color:black;

    border:none;

    padding:18px;

    border-radius:40px;

    font-size:1rem;

    font-weight:600;

    cursor:pointer;

    transition:0.4s ease;
}

form button:hover{

    transform:translateY(-3px);
}

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

footer{

    background:#0a0a0a;

    color:white;

    padding-top:80px;
}

.footer-container{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

    max-width:1300px;

    margin:auto;

    padding:0 8% 60px;
}

.footer-logo h3{

    font-size:1.8rem;

    margin-bottom:20px;

    color:#c8a96b;
}

.footer-logo p{

    line-height:1.8;

    color:#cccccc;
}

.footer-links h4,
.footer-contact h4{

    margin-bottom:20px;

    color:#c8a96b;
}

.footer-links{

    display:flex;

    flex-direction:column;
}

.footer-links a{

    color:#cccccc;

    text-decoration:none;

    margin-bottom:12px;

    transition:0.4s;
}

.footer-links a:hover{

    color:#c8a96b;
}

.footer-contact p{

    margin-bottom:15px;

    color:#cccccc;
}

.footer-bottom{

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

    text-align:center;

    padding:25px;

    color:#999999;
}

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

.menu-toggle{

    display:none;

    font-size:2rem;

    color:white;

    cursor:pointer;

    z-index:1001;

    position:relative;
}

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

@media(max-width:900px){

    .hero-content h1{

        font-size:2.8rem;
    }

    .contact-container{

        grid-template-columns:1fr;
    }

    .services-grid--three,
    .services-grid--four{

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

}

/* MOBILE */

@media(max-width:768px){

    header{

        gap:12px;

        padding:14px 5%;
    }

    .logo{

        flex:1;
        min-width:0;

        gap:9px;

        font-size:clamp(1.04rem, 4.25vw, 1.35rem);

        text-align:left;
    }

    .logo img{

        width:34px;

        flex-shrink:0;
    }

    .logo span{

        overflow:hidden;

        text-overflow:ellipsis;

        white-space:nowrap;
    }

    /* PREMIUM MOBILE MENU */

    .mobile-actions{

        gap:10px;

        flex-shrink:0;
    }

    .language-btn{

        min-width:48px;

        padding:9px 13px;
    }

    .menu-toggle{

        width:46px;
        height:46px;

        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:5px;

        padding:0;

        border:1px solid rgba(200,169,107,0.42);
        border-radius:50%;

        background:rgba(17,17,17,0.58);

        color:white;

        box-shadow:0 10px 25px rgba(0,0,0,0.24);

        cursor:pointer;

        transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    }

    .menu-toggle span{

        display:block;

        width:20px;
        height:2px;

        border-radius:999px;

        background:#ffffff;

        transition:
        transform 0.35s ease,
        opacity 0.25s ease,
        background 0.35s ease;
    }

    .menu-toggle:hover,
    .menu-toggle.is-open{

        transform:translateY(-1px);

        background:rgba(200,169,107,0.18);

        border-color:#c8a96b;

        box-shadow:0 14px 30px rgba(0,0,0,0.34);
    }

    .menu-toggle.is-open span{

        background:#ddc48f;
    }

    .menu-toggle.is-open span:nth-child(1){

        transform:translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2){

        opacity:0;
    }

    .menu-toggle.is-open span:nth-child(3){

        transform:translateY(-7px) rotate(-45deg);
    }

    nav{

        position:absolute;

        top:calc(100% + 10px);
        left:5%;
        right:5%;

        width:auto;

        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:5px;

        margin:0;
        padding:10px;

        border:1px solid rgba(200,169,107,0.32);
        border-radius:22px;

        background:
        linear-gradient(
            145deg,
            rgba(28,28,28,0.97),
            rgba(10,10,10,0.96)
        );

        box-shadow:
        0 22px 45px rgba(0,0,0,0.42),
        inset 0 1px 0 rgba(255,255,255,0.06);

        backdrop-filter:blur(18px);

        opacity:0;
        visibility:hidden;
        pointer-events:none;

        transform:translateY(-14px) scale(0.98);
        transform-origin:top center;

        transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.36s cubic-bezier(0.22,1,0.36,1);
    }

    nav.active{

        opacity:1;
        visibility:visible;
        pointer-events:auto;

        transform:translateY(0) scale(1);
    }

    nav a{

        width:100%;

        margin:0;
        padding:14px 16px;

        border:1px solid transparent;
        border-radius:14px;

        color:#f5f5f5;

        text-align:left;

        transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
    }

    nav a:hover,
    nav a.active{

        transform:translateX(3px);

        border-color:rgba(200,169,107,0.27);

        background:rgba(200,169,107,0.10);

        color:#ddc48f;
    }

    /* HERO */

    .hero{

        padding:20px;
    }

    .hero-content h1{

        font-size:2.5rem;

        line-height:1.2;
    }

    .hero-content p{

        font-size:1rem;

        line-height:1.8;
    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;
    }

    .btn,
    .btn-secondary{

        width:100%;

        max-width:320px;

        text-align:center;
    }

    /* TITLES */

    .services h2,
    .about-text h2,
    .gallery h2,
    .vip-content h2,
    .testimonials h2,
    .map-section h2,
    .why-us h2,
    .contact h2{

        font-size:2.1rem;
    }

    /* CARDS */

    .service-card,
    .testimonial-card,
    .why-card{

        padding:35px 25px;
    }

    /* GALLERY */

    .gallery-item{

        height:auto;
    }

    /* VIP */

    .vip-content h2{

        font-size:2.5rem;
    }

    /* STATS */

    .stat-item h2{

        font-size:3rem;
    }

    /* MAP */

    .map-container iframe{

        height:350px;
    }

    /* SERVICES */

    .services{

        padding:96px 6%;
    }

    .services-intro{

        margin-bottom:64px;
    }

    .services h2{

        font-size:2.35rem;
    }

    .services-lead{

        font-size:1rem;
    }

    .service-category{

        margin-bottom:64px;
    }

    .service-category-heading{

        align-items:flex-start;

        margin-bottom:24px;
    }

    .service-category-heading h3{

        font-size:1.62rem;
    }

    .service-category-line{

        display:none;
    }

    .services-grid--two,
    .services-grid--three,
    .services-grid--four{

        grid-template-columns:1fr;
    }

    .service-card,
    .service-card--featured{

        padding:30px 24px;
    }

    .service-card h3{

        font-size:1.36rem;
    }

    .price-row,
    .addon-row{

        font-size:0.88rem;
    }

    .services-note{

        margin-top:52px;
    }

    /* FOOTER */

    .footer-container{

        text-align:center;
    }

}

/* =========================
   SCROLL ANIMATIONS
========================= */

.hidden{

    opacity:0;

    transform:
    translateY(80px)
    scale(0.96);

    filter:blur(10px);

    transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.22,1,0.36,1),
    filter 1.2s ease;
}

.show{

    opacity:1;

    transform:
    translateY(0)
    scale(1);

    filter:blur(0);
}


/* HEADER SCROLL EFFECT */

.header-scrolled{

    background:rgba(0,0,0,0.9);

    transition:0.4s ease;
}



/* =========================
   GALLERY
========================= */

.gallery{

    padding:120px 8%;

    background:
    radial-gradient(
        circle at 8% 10%,
        rgba(200,169,107,0.09),
        transparent 26%
    ),
    #111111;
}

.gallery-heading{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;
}

.gallery-kicker{

    color:#c8a96b;

    font-size:0.78rem;

    font-weight:700;

    letter-spacing:0.18em;

    text-transform:uppercase;
}

.gallery h2{

    margin:16px 0 18px;

    text-align:center;

    font-size:2.8rem;

    color:white;
}

.gallery-lead{

    color:#cfcfcf;

    font-size:1.02rem;

    line-height:1.8;
}

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    max-width:1400px;

    margin:auto;
}

.gallery-item{

    position:relative;

    display:flex;

    flex-direction:column;

    overflow:hidden;

    border:1px solid rgba(255,255,255,0.09);

    border-radius:25px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.055),
        rgba(255,255,255,0.018)
    );

    box-shadow:0 15px 36px rgba(0,0,0,0.25);

    transition:
    transform 0.5s cubic-bezier(0.22,1,0.36,1),
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

.gallery-item:hover{

    transform:translateY(-9px);

    border-color:rgba(200,169,107,0.72);

    box-shadow:0 24px 48px rgba(0,0,0,0.42);
}

.gallery-photo{

    position:relative;

    display:grid;

    place-items:center;

    aspect-ratio:4 / 3;

    min-height:270px;

    padding:12px;

    overflow:hidden;

    background:
    radial-gradient(
        circle at center,
        rgba(200,169,107,0.09),
        transparent 58%
    ),
    #101010;
}

.gallery-photo::after{

    pointer-events:none;

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.015),
        rgba(0,0,0,0.14)
    );
}

.gallery-item img{

    position:relative;

    z-index:1;

    width:100%;

    height:100%;

    max-width:100%;

    max-height:100%;

    display:block;

    object-fit:contain;

    object-position:center;

    cursor:zoom-in;

    transition:filter 0.45s ease;
}

.gallery-item:hover img{

    filter:brightness(1.06);
}

.gallery-caption{

    position:relative;

    padding:24px 26px 27px;

    min-height:142px;

    background:
    linear-gradient(
        135deg,
        rgba(21,21,21,0.98),
        rgba(31,29,27,0.98)
    );
}

.gallery-caption::before{

    content:"";

    position:absolute;

    top:0;
    left:26px;

    width:46px;
    height:2px;

    background:#c8a96b;
}

.gallery-caption h3{

    margin:0 0 10px;

    color:#f5f5f5;

    font-size:1.18rem;

    line-height:1.35;
}

.gallery-caption p{

    margin:0;

    color:#bdbdbd;

    font-size:0.93rem;

    line-height:1.7;
}

@media(max-width:768px){

    .gallery{

        padding:96px 6%;
    }

    .gallery-heading{

        margin-bottom:42px;
    }

    .gallery h2{

        font-size:2.1rem;
    }

    .gallery-photo{

        min-height:0;

        aspect-ratio:4 / 3;

        padding:10px;
    }

    .gallery-caption{

        min-height:0;

        padding:21px 22px 24px;
    }

    .gallery-caption::before{

        left:22px;
    }
}

/* =========================
   VIP SECTION
========================= */

.vip{

    padding:140px 8%;

    background:
    linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.75)
    ),
    url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?q=80&w=1920')
    center/cover no-repeat;

    text-align:center;
}

.vip-content{

    max-width:850px;

    margin:auto;

    color:white;
}

.vip-subtitle{

    color:#c8a96b;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:0.9rem;
}

.vip-content h2{

    font-size:3.5rem;

    margin:25px 0;
}

.vip-content p{

    font-size:1.15rem;

    line-height:1.9;

    color:#dddddd;

    margin-bottom:40px;
}

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

.testimonials{

    padding:120px 8%;

    background:#181818;
}

.testimonials h2{

    text-align:center;

    font-size:2.8rem;

    margin-bottom:60px;

    color:white;
}

.testimonials-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    max-width:1300px;

    margin:auto;
}

.testimonial-card{

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    padding:40px;

    border-radius:25px;

    backdrop-filter:blur(10px);

    transition:0.4s ease;
}

.testimonial-card:hover{

    transform:translateY(-8px);

    border-color:#c8a96b;
}

.testimonial-card p{

    line-height:1.9;

    color:#dddddd;

    margin-bottom:25px;

    font-style:italic;
}

.testimonial-card h4{

    color:#c8a96b;
}

/* TESTIMONIAL PREMIUM */

.testimonial-card{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.02)
    );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    transition:
    transform 0.5s cubic-bezier(0.22,1,0.36,1),
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

.testimonial-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(200,169,107,0.12),
        transparent 45%
    );

    opacity:0;

    transition:0.5s ease;
}

.testimonial-card:hover::before{

    opacity:1;
}

.testimonial-card:hover{

    transform:
    translateY(-10px)
    scale(1.02);

    border-color:#c8a96b;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.45);
}

/* STARS */

.stars{

    color:#c8a96b;

    font-size:1.2rem;

    letter-spacing:4px;

    margin-bottom:20px;
}

/* REVIEW FOOTER */

.review-footer{

    margin-top:30px;
}

.review-user{

    display:flex;

    align-items:center;

    gap:15px;
}

.review-user img{

    filter:
    grayscale(100%)
    brightness(1.05);

    width:58px;

    height:58px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid #c8a96b;
}

.testimonial-card:hover .review-user img{

    filter:grayscale(0%);
}

.review-user h4{

    margin:0;

    color:white;

    font-size:1rem;
}

.review-user span{

    color:#b8b8b8;

    font-size:0.9rem;
}

/* =========================
   REVIEW COLLAPSE
========================= */

.review-text{

    display:-webkit-box;

    -webkit-line-clamp:3;

    line-clamp:3;

    -webkit-box-orient:vertical;

    overflow:hidden;

    text-overflow:ellipsis;

    transition:0.4s ease;
}

/* EXPANDED */

.review-text.expanded{

    -webkit-line-clamp: unset;

    line-clamp: unset;

    overflow:visible;
}

/* BUTTON */

.read-more-btn{

    margin-top:18px;

    background:none;

    border:none;

    color:#c8a96b;

    cursor:pointer;

    font-weight:600;

    font-size:0.95rem;

    transition:0.3s ease;

    position:relative;

    z-index:10;
}

.testimonial-card::before{

    pointer-events:none;
}

.read-more-btn:hover{

    color:white;
}

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

.map-section{

    padding:120px 8%;

    background:#111111;
}

.map-section h2{

    text-align:center;

    font-size:2.8rem;

    margin-bottom:60px;

    color:white;
}

.map-container{

    max-width:1300px;

    margin:auto;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 20px 40px rgba(0,0,0,0.35);
}

.map-container iframe{

    width:100%;

    height:550px;

    border:none;
}

.maps-button{

    display:inline-block;

    margin-top:25px;

    background:#c8a96b;

    color:black;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s ease;
}

.maps-button:hover{

    transform:translateY(-4px);

    background:#d6b879;
}

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

.why-us{

    padding:120px 8%;

    background:#181818;
}

.why-us h2{

    text-align:center;

    font-size:2.8rem;

    margin-bottom:70px;

    color:white;
}

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    max-width:1300px;

    margin:auto;
}

.why-card{

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:25px;

    padding:45px;

    text-align:center;

    transition:0.4s ease;

    backdrop-filter:blur(10px);
}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#c8a96b;
}

.why-icon{

    font-size:3rem;

    margin-bottom:25px;
}

.why-card h3{

    color:#c8a96b;

    margin-bottom:20px;

    font-size:1.5rem;
}

.why-card p{

    color:#d0d0d0;

    line-height:1.8;
}

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

.stats{

    padding:100px 8%;

    background:
    linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.75)
    ),
    url('https://images.unsplash.com/photo-1507652313519-d4e9174996dd?q=80&w=1920')
    center/cover fixed;
}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

    max-width:1200px;

    margin:auto;

    text-align:center;
}

.stat-item h2{

    font-size:4rem;

    color:#c8a96b;

    margin-bottom:15px;
}

.stat-item p{

    color:white;

    font-size:1.1rem;

    letter-spacing:1px;
}

/* =========================
   CUSTOM SCROLLBAR
========================= */

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#111111;
}

::-webkit-scrollbar-thumb{

    background:#c8a96b;

    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{

    background:#d6b879;
}

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

.language-btn{

    background:transparent;

    border:1px solid rgba(255,255,255,0.2);

    color:white;

    padding:10px 18px;

    border-radius:50px;

    cursor:pointer;

    transition:0.4s ease;

    font-weight:600;

    backdrop-filter:blur(10px);
}

/* =========================
   MOBILE HEADER FIX
========================= */

.mobile-actions{

    margin-left:auto;

    display:flex;

    align-items:center;

    gap:15px;
}

.language-btn:hover{

    background:#c8a96b;

    color:black;

    border-color:#c8a96b;

}

/* =========================
   LOADER
========================= */

.loader{

    position:fixed;

    inset:0;

    background:#111111;

    display:flex;

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

    z-index:99999;

    transition:opacity 1s ease,
    visibility 1s ease;
}

.loader.hidden-loader{

    opacity:0;

    visibility:hidden;
}

.loader-logo{

    color:#c8a96b;

    font-size:2rem;

    letter-spacing:3px;

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{

        opacity:0.5;

        transform:scale(0.98);
    }

    50%{

        opacity:1;

        transform:scale(1);
    }

    100%{

        opacity:0.5;

        transform:scale(0.98);
    }

}

/* =========================
   ACTIVE NAV LINK
========================= */

nav a.active{

    color:#c8a96b;
}

/* =========================
   HERO ANIMATION
========================= */

@keyframes heroFade{

    from{

        opacity:0;

        transform:
        translateY(50px)
        scale(0.98);
    }

    to{

        opacity:1;

        transform:
        translateY(0)
        scale(1);
    }

}

/* =========================
   LIGHTBOX GALLERY
========================= */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,0.92);

    backdrop-filter:blur(8px);

    display:flex;

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

    opacity:0;

    visibility:hidden;

    transition:0.4s ease;

    z-index:99999;
}

.lightbox.active{

    opacity:1;

    visibility:visible;
}

.lightbox-img{

    max-width:90%;

    max-height:90vh;

    border-radius:20px;

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

    animation:zoomIn 0.4s ease;
}

.lightbox-close{

    position:absolute;

    top:30px;

    right:40px;

    font-size:2rem;

    color:white;

    cursor:pointer;

    transition:0.3s ease;

    z-index:2;
}

.lightbox-close:hover{

    color:#c8a96b;

    transform:scale(1.1);
}

@keyframes zoomIn{

    from{

        transform:scale(0.85);

        opacity:0;
    }

    to{

        transform:scale(1);

        opacity:1;
    }
}

/* =========================
   JUNE & JULY PROMOTION
========================= */

.promotion{

    position:relative;

    padding:128px 8%;

    overflow:hidden;

    background:
    radial-gradient(
        circle at 8% 24%,
        rgba(200,169,107,0.12),
        transparent 30%
    ),
    radial-gradient(
        circle at 92% 78%,
        rgba(209,74,126,0.12),
        transparent 28%
    ),
    linear-gradient(135deg, #141414 0%, #1a1718 100%);
}

.promotion::before{

    content:"";

    position:absolute;

    width:440px;
    height:440px;

    right:-230px;
    top:-185px;

    border:1px solid rgba(200,169,107,0.16);

    border-radius:50%;

    pointer-events:none;
}

.promotion-shell{

    position:relative;

    z-index:1;

    display:grid;

    grid-template-columns:minmax(0, 1fr) minmax(300px, 460px);

    align-items:center;

    gap:clamp(42px, 7vw, 105px);

    max-width:1250px;

    margin:auto;
}

.promotion-copy{

    max-width:620px;
}

.promotion h2{

    margin:18px 0 22px;

    color:#ffffff;

    font-size:clamp(2.45rem, 4.1vw, 4rem);

    line-height:1.08;
}

.promotion-lead{

    max-width:565px;

    color:#d5d5d5;

    font-size:1.1rem;

    line-height:1.9;
}

.promotion-details{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin:31px 0;
}

.promotion-details span{

    display:inline-flex;

    align-items:center;

    min-height:39px;

    padding:9px 15px;

    border:1px solid rgba(200,169,107,0.29);

    border-radius:999px;

    color:#e8d4a5;

    background:rgba(200,169,107,0.08);

    font-size:0.88rem;

    font-weight:600;
}

.promotion-actions{

    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:14px;
}

.promotion-call-btn,
.promotion-email-btn{

    display:inline-flex;

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

    min-height:54px;

    padding:15px 28px;

    border-radius:999px;

    text-decoration:none;

    font-weight:700;

    box-shadow:0 16px 34px rgba(0,0,0,0.28);

    transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.promotion-email-btn{

    border:1px solid rgba(200,169,107,0.64);

    color:#f5f5f5;

    background:rgba(200,169,107,0.08);
}

.promotion-email-btn:hover{

    transform:translateY(-4px);

    border-color:#ddc48f;

    color:#111111;

    background:#ddc48f;

    box-shadow:0 21px 42px rgba(0,0,0,0.42);
}

.promotion-call-btn{

    border:1px solid rgba(200,169,107,0.7);

    color:#121212;

    background:linear-gradient(135deg, #c8a96b, #dfc686);
}

.promotion-call-btn:hover{

    transform:translateY(-4px);

    filter:brightness(1.05);

    box-shadow:0 21px 42px rgba(0,0,0,0.42);
}

.promotion-poster-wrap{

    width:100%;

    max-width:460px;

    margin-left:auto;

    text-align:center;
}

.promotion-poster{

    position:relative;

    display:block;

    width:100%;

    margin:0;

    padding:0;

    overflow:hidden;

    border:1px solid rgba(200,169,107,0.42);

    border-radius:28px;

    background:#0c0c0c;

    box-shadow:
    0 28px 60px rgba(0,0,0,0.45),
    0 0 0 9px rgba(255,255,255,0.025);

    cursor:zoom-in;

    transition:
    transform 0.5s cubic-bezier(0.22,1,0.36,1),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.promotion-poster::before{

    content:"";

    position:absolute;

    inset:0;

    z-index:1;

    background:linear-gradient(145deg, rgba(255,255,255,0.16), transparent 24%, transparent 70%, rgba(0,0,0,0.16));

    pointer-events:none;
}

.promotion-poster:hover{

    transform:translateY(-10px) rotate(0.35deg);

    border-color:#ddc48f;

    box-shadow:
    0 35px 72px rgba(0,0,0,0.58),
    0 0 0 9px rgba(200,169,107,0.055);
}

.promotion-poster:focus-visible{

    outline:3px solid #ddc48f;

    outline-offset:5px;
}

.promotion-poster img{

    display:block;

    width:100%;

    height:auto;
}

.promotion-poster-hint{

    display:inline-flex;

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

    gap:8px;

    margin:15px auto 0;

    color:#ddc48f;

    font-size:0.84rem;

    font-weight:600;

    line-height:1.4;

    transition:color 0.3s ease, transform 0.3s ease;
}

.promotion-poster:hover + .promotion-poster-hint{

    color:#f3dcaa;

    transform:translateY(1px);
}

.promotion-zoom-icon{

    display:inline-grid;

    place-items:center;

    width:19px;
    height:19px;

    color:#ddc48f;

    font-size:1.25rem;

    line-height:1;
}

body.lightbox-open{

    overflow:hidden;
}

@media(max-width:900px){

    .promotion{

        padding:105px 8%;
    }

    .promotion-shell{

        grid-template-columns:1fr;

        gap:47px;
    }

    .promotion-copy{

        max-width:700px;

        margin:auto;

        text-align:center;
    }

    .promotion-lead{

        margin-left:auto;
        margin-right:auto;
    }

    .promotion-details,
    .promotion-actions{

        justify-content:center;
    }

    .promotion-poster-wrap{

        margin:0 auto;
    }
}

@media(max-width:768px){

    .promotion{

        padding:88px 6%;
    }

    .promotion h2{

        font-size:2.35rem;
    }

    .promotion-lead{

        font-size:1rem;
    }

    .promotion-details{

        margin:26px 0;
    }

    .promotion-details span{

        width:100%;

        justify-content:center;
    }

    .promotion-actions{

        flex-direction:column;

        align-items:center;
    }

    .promotion-call-btn,
    .promotion-email-btn{

        width:100%;

        max-width:330px;
    }

    .promotion-poster-wrap{

        max-width:390px;
    }

    .promotion-poster{

        border-radius:22px;
    }

    .promotion-poster-hint{

        margin-top:13px;

        font-size:0.78rem;
    }
}

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

.custom-button-container{

    display:flex;

    justify-content:center;

    padding:40px 20px;
    
}

.image-button{

    display:inline-block;

    transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;

    border-radius:25px;

    overflow:hidden;
}

.image-button img{

    width:220px;

    height:auto;

    display:block;

    border-radius:25px;
}

.image-button:hover{

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

    box-shadow:
    0 20px 40px rgba(0,0,0,0.4);
}

/* =========================
   ACCESSIBILITY: REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce){

    *,
    *::before,
    *::after{

        scroll-behavior:auto !important;

        transition-duration:0.01ms !important;
        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
    }
}


/* =========================
   GOOGLE REVIEWS EXPANSION
========================= */

.testimonials{
    position:relative;
    overflow:hidden;
    background:
    radial-gradient(circle at 92% 4%, rgba(200,169,107,0.10), transparent 26%),
    #181818;
}

.testimonials-heading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.testimonials-heading h2{
    margin:16px 0 18px;
}

.testimonials-heading > p:last-child{
    color:#cfcfcf;
    font-size:1.04rem;
    line-height:1.8;
}

.testimonials-grid{
    align-items:stretch;
}

.testimonial-card{
    display:flex;
    flex-direction:column;
}

.review-footer{
    margin-top:auto;
    padding-top:28px;
}

.review-avatar{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    border:2px solid #c8a96b;
    border-radius:50%;
    background:
    linear-gradient(145deg, rgba(200,169,107,0.95), rgba(92,70,34,0.92));
    color:#111111;
    font-size:0.92rem;
    font-weight:800;
    letter-spacing:0.04em;
}

.reviews-actions{
    display:flex;
    justify-content:center;
    margin-top:52px;
}

.reviews-maps-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:58px;
    padding:16px 30px;
    border:1px solid rgba(200,169,107,0.75);
    border-radius:999px;
    background:linear-gradient(135deg, #d9bd7e, #b89042);
    color:#121212;
    box-shadow:0 14px 32px rgba(0,0,0,0.28);
    font-weight:800;
    text-align:center;
    text-decoration:none;
    transition:transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.reviews-maps-button:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 42px rgba(0,0,0,0.38);
    filter:brightness(1.05);
}

.reviews-maps-button > span:first-child{
    font-size:1.15rem;
}

@media(max-width:768px){
    .testimonials-heading{
        margin-bottom:42px;
    }

    .testimonials-heading > p:last-child{
        font-size:0.98rem;
    }

    .review-footer{
        padding-top:22px;
    }

    .reviews-actions{
        margin-top:38px;
    }

    .reviews-maps-button{
        width:100%;
        max-width:360px;
        padding:16px 22px;
        font-size:0.94rem;
        line-height:1.35;
    }
}
