body {
    background: #000;
    color: #f5f5f5;
    font-family: Arial, sans-serif;
    line-height: 1.7;
}


.hero {
    background-color: #000;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../img/j15.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    border-radius: 16px;
    min-height: 80vh;
    margin-bottom: 20px;
}

.hero h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}



.hero h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a24d, #e6c87a);
    border-radius: 4px;
}


.hero p {
    color: #e0e0e0;
}



.hero .btn {
    background: linear-gradient(135deg, #c9a24d, #e6c87a);
    color: #000;
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(201, 162, 77, 0.4);
    transition: 0.3s ease;
    animation: luxuryPulse 2.5s infinite;
}





.mobile-cta {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #8ca6db;
    padding: 12px 18px;
    border-radius: 30px;
    color: #fff;
    z-index: 1200;
}



/* Sidebar brand */
.sidebar .logo {
    color: #c9a24d;
    /* Gold brand name */
}

/* Normal links */
.sidebar .nav-link {
    color: #fff;
    opacity: 0.9;
    padding: 12px 0;
    border-bottom: 1px solid #444;
    transition: all 0.3s ease;
}


/* Hover */
.sidebar .nav-link:hover {
    color: #c9a24d;
    background: rgba(201, 162, 77, 0.08);
    padding-left: 14px;
}

/* Active link */
.sidebar .nav-link.active {
    color: #c9a24d;
    background: rgba(201, 162, 77, 0.15);
    border-left: 3px solid #c9a24d;
    padding-left: 12px;
}


.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 22px;
    color: #d6c27a;
    font-size: 14px;
    opacity: 0.95;
}

.hero-trust span {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-trust span::before {
    content: "✓";
    color: #e6c87a;
    margin-right: 6px;
}


.hero-content {
    max-width: 800px;
    color: #fff;
}


#pricing {
    background: linear-gradient(180deg, #121212, #0b0b0b);
    border: 1px solid rgba(201, 162, 77, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

#pricing .table {
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0;
}

#pricing thead th {
    background: linear-gradient(90deg, #1a1a1a, #111);
    color: #c9a24d;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
}

#pricing tbody td {
    color: #111;
    font-weight: 500;
    border-color: #ddd;
}

#pricing tbody tr:hover {
    background: rgba(201, 162, 77, 0.08);
    transition: 0.3s ease;
}

#pricing tbody td:last-child {
    font-weight: 700;
    color: #000;
}


/* SIDEBAR */
.sidebar {
    width: 220px;
    background: linear-gradient(180deg, #2c2c2c, #1a1a1a);
    color: #fff;
    min-height: 100vh;
    padding: 20px;
    position: fixed;
    left: 0;
    top: 0;
    transition: 0.3s ease;
    z-index: 1000;
}

.logo {
    margin-bottom: 25px;
    font-weight: bold;
}


.section p {
    color: #e5e5e5;
    /* soft white */
}


/* CONTENT */
.content {
    margin-left: 220px;
    padding: 25px;
}

#contact h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

#contact h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #c9a24d, #e6c87a);
    border-radius: 4px;
}


#contact p {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 14px;
    border: 1px solid rgba(201, 162, 77, 0.15);
}

#contact a {
    color: #e6c87a;
    font-weight: 600;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}



/* GALLERY */

/* SPA GALLERY CARD */
.gallerysection {
    background: #0f0f0f;
    color: #f5f5f5;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 12px;
    border-top: 1px solid #c9a24d;
    /* GOLD */
}

.spa-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 77, 0.25);
    transition: transform .3s ease, box-shadow .3s ease;
}

.spa-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border: 2px solid rgba(201, 162, 77, 0.4);
    border-radius: 14px;
    transition: all 0.3s ease;
}


.spa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(201, 162, 77, 0.35);
}

.spa-card-body {
    padding: 14px;
    text-align: center;
}

.spa-card-body h5 {
    margin: 0;
    font-size: 16px;
    color: #e6c87a;
    font-weight: 600;
}

.spa-card-body p {
    font-size: 13px;
    color: #ccc;
    margin: 4px 0 10px;
}

.spa-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.spa-actions a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.spa-actions a:hover {
    background: #c9a24d;
    color: #000;
}


.spa-card:hover img {
    box-shadow: 0 0 18px rgba(201, 162, 77, 0.6);
}


/* MOBILE HANDLE */
.menu-handle {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #2c2c2c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 1100;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* DESKTOP */


/* TABLET */
@media (max-width: 992px) {
    .hero {
        padding: 60px 30px;
        min-height: auto;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        background-color: #000;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../img/j2.jpg");
        padding: 48px 20px;
        min-height: 50vh;
        min-height: 70vh;
        padding: 40px 20px;
        background-position: center top;
    }

    .hero-content {
        margin-top: 17px;
    }

    .hero-content,
    .hero-trust {
        position: relative;
        z-index: 2;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .content {
        margin-left: 0;
    }

    .sidebar .nav-link {
        padding: 16px 0;
        font-size: 16px;
    }
}



/* =========================
   LUXURY FOOTER
========================= */

.luxury-footer {
    background: radial-gradient(circle at top, #1a1a1a, #000);
    padding: 70px 0 25px;
    color: #ddd;
    border-top: 2px solid #c9a24d;
    margin-top: 60px;
}

.footer-logo {
    font-size: 28px;
    color: #c9a24d;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-tagline {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    color: #bbb;
    line-height: 1.8;
}

.footer-title {
    color: #c9a24d;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #c9a24d;
    padding-left: 6px;
}

.luxury-footer p {
    font-size: 14px;
    color: #ccc;
}


/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgba(201, 162, 77, 0.3);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #999;
}

.footer-bottom span {
    color: #c9a24d;
}

/* MOBILE */
@media (max-width: 768px) {
    .luxury-footer {
        text-align: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 140px;
    }
}

@media (max-width: 768px) {
    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {

    #why,
    #contact {
        padding-right: 80px;
    }
}


.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.float-btn.call {
    background: #0d6efd;
}

.float-btn.whatsapp {
    background: #25d366;
}

.float-btn.telegram {
    background: #0088cc;
}

