:root {
    --black: #080808;
    --dark: #101010;
    --dark-gray: #181818;
    --gold: #d4af37;
    --white: #ffffff;
    --light: #f5f5f5;
    --gray: #b5b5b5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    background: var(--black);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.96);
    padding: 8px 0;
    backdrop-filter: blur(10px);
}


/* =========================================================
   NAVBAR BRAND
========================================================= */

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-logo {
    width: 90px !important;
    height: auto !important;
    max-width: 90px !important;
    display: block !important;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-text span:first-child {
    font-size: 18px;
    color: #ffffff;
}

.brand-text span:last-child {
    font-size: 13px;
    letter-spacing: 2px;
    color: #d4af37;
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.nav-link {
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 22px;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--gold) !important;
}


/* =========================================================
   GOLD BUTTON
========================================================= */

.btn-gold {
    background: var(--gold);
    color: #000;
    border: 2px solid var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 25px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.nav-book-btn {
    padding: 9px 20px;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.25)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-small-title {
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(50px, 7vw, 95px);
    font-weight: 800;
    line-height: 0.95;
    margin: 20px 0;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-description {
    max-width: 650px;
    color: #ddd;
    font-size: 18px;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================================================
   SECTIONS
========================================================= */

.section-dark {
    background: var(--dark);
    padding: 110px 0;
}

.section-light {
    background: var(--light);
    color: #111;
    padding: 110px 0;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-heading span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
}

.section-heading h2 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    margin: 15px 0;
}

.section-heading p {
    color: var(--gray);
    line-height: 1.8;
}


/* =========================================================
   PACKAGE CARDS
========================================================= */

.package-card {
    position: relative;
    height: 100%;
    background: #161616;
    border: 1px solid #292929;
    padding: 40px 32px;
    transition: all 0.4s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.package-card.featured {
    border: 2px solid var(--gold);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: var(--gold);
    color: #000;
    padding: 8px 15px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.package-label {
    color: var(--gold);
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 3px;
}

.package-header h3 {
    font-size: 34px;
    margin: 10px 0 20px;
}

.package-header p {
    color: #aaa;
    line-height: 1.7;
    min-height: 110px;
}

.package-price {
    margin: 30px 0;
    color: #aaa;
    font-size: 13px;
}

.package-price strong {
    display: block;
    color: var(--white);
    font-size: 36px;
    margin-top: 5px;
}

.package-card h5 {
    font-size: 14px;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-list li {
    color: #bbb;
    font-size: 13px;
    padding: 9px 0;
    border-bottom: 1px solid #252525;
}

.service-list li::before {
    content: "✓";
    color: var(--gold);
    font-weight: bold;
    margin-right: 10px;
}

.recommended {
    font-size: 11px;
    color: #888;
    font-style: italic;
    margin-bottom: 25px;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
}


/* =========================================================
   ADDITIONAL SERVICES
========================================================= */

.service-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    height: 100%;
    overflow: hidden;
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #111111;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-content {
    padding: 28px 25px 30px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #111111;
}

.service-card p {
    color: #666666;
    font-size: 13px;
    line-height: 1.8;
    margin: 0 0 18px;
}

.service-card strong {
    display: block;
    color: var(--gold);
    font-size: 20px;
    font-weight: 800;
    margin-top: 10px;
    letter-spacing: 0.5px;
}


/* =========================================================
   MOBILE SPA
========================================================= */

.mobile-spa {
    position: relative;
    min-height: 650px;
    padding: 120px 0;

    background:
        url("../images/mobile-spa.jpg")
        center center / cover no-repeat;
}

.mobile-spa-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.3)
    );
}

.mobile-spa h2 {
    font-size: clamp(30px, 4vw, 55px);
    font-weight: 800;
    line-height: 1;
    margin: 20px 0;
}

.mobile-spa h2 span {
    color: var(--gold);
}

.mobile-spa p {
    color: #ccc;
    max-width: 600px;
    line-height: 1.8;
    font-size: 17px;
}

.benefits {
    margin: 35px 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 17px 0;
    color: #eee;
}

.benefit i {
    color: var(--gold);
    font-size: 20px;
}

.mobile-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================================================
   GET IN TOUCH
========================================================= */

.contact-section {
    background: #101010;
    color: #ffffff;
    padding: 110px 0;
}

.section-label {
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.contact-content h2 {
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 800;
    line-height: 1;
    margin: 20px 0 30px;
}

.contact-content h2 span {
    color: #d4af37;
}

.contact-content > p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.9;
    max-width: 520px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 35px;
}

.contact-phone > i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4af37;
    color: #000;
    font-size: 20px;
}

.contact-phone small {
    display: block;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.contact-phone a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.contact-phone a:hover {
    color: #d4af37;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {
    background: #181818;
    border: 1px solid #292929;
    padding: 45px;
}

.contact-form label {
    display: block;
    color: #ddd;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.contact-form .form-control {
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 0;
    color: #ffffff;
    padding: 14px 16px;
    font-size: 14px;
}

.contact-form .form-control::placeholder {
    color: #666;
}

.contact-form .form-control:focus {
    background: #0d0d0d;
    border-color: #d4af37;
    color: #ffffff;
    box-shadow: none;
}

.contact-form textarea {
    resize: vertical;
}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit {
    min-width: 160px;
}

.contact-submit i {
    margin-left: 10px;
}


/* =========================================================
   HONEYPOT
========================================================= */

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* =========================================================
   INSTAGRAM SECTION
========================================================= */

.instagram-section {
    padding: 100px 0;
    background: #111111;
}

.instagram-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.instagram-header .section-label {
    display: block;
    margin-bottom: 15px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
}

.instagram-header h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
}

.instagram-header h2 span {
    color: #d4af37;
}

.instagram-header p {
    margin-bottom: 20px;
    color: #a9a9a9;
    font-size: 16px;
    line-height: 1.7;
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-handle:hover {
    color: #ffffff;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.instagram-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #1a1a1a;
    text-decoration: none;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-overlay i {
    color: #ffffff;
    font-size: 34px;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover .instagram-overlay i {
    transform: scale(1);
}

.instagram-footer {
    margin-top: 45px;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    padding: 110px 0;
    background: #f5f5f5;
    color: #111111;
}

.testimonials-section .section-heading p {
    color: #666666;
}

.testimonial-card {
    position: relative;
    height: 100%;
    padding: 40px 35px;
    background: #ffffff;
    border: 1px solid #dddddd;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonial-quote {
    position: absolute;
    top: 25px;
    right: 30px;
}

.testimonial-quote i {
    color: #e8e8e8;
    font-size: 55px;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    color: #555555;
    font-size: 15px;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111111;
    color: var(--gold);

    font-size: 16px;
    font-weight: 800;

    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-author span {
    display: block;
    margin-top: 3px;
    color: #888888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 120px 20px;
    background: var(--black);
}

.cta-section span {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 700;
}

.cta-section h2 {
    font-size: clamp(35px, 5vw, 60px);
    font-weight: 800;
    margin: 20px 0 35px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 80px 0 30px;
    background: #0b0b0b;
    color: #ffffff;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1;
    text-decoration: none;
}

.footer-brand span {
    color: #d4af37;
}

.footer-description {
    max-width: 420px;
    margin-bottom: 25px;
    color: #999999;
    font-size: 15px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #333333;
    border-radius: 50%;

    color: #ffffff;

    font-size: 18px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: #d4af37;
    background: #d4af37;
    color: #111111;
    transform: translateY(-3px);
}

.footer-title {
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999999;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact > a:not(.footer-book-btn) {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #999999;
    font-size: 15px;
    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-contact > a:not(.footer-book-btn):hover {
    color: #d4af37;
}

.footer-contact i {
    width: 18px;
    color: #d4af37;
    font-size: 15px;
}

.footer-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: fit-content;

    margin-top: 5px;
    padding: 12px 20px;

    background: #d4af37;
    color: #111111 !important;

    font-size: 14px !important;
    font-weight: 700;

    text-decoration: none;
    border-radius: 3px;

    transition: all 0.3s ease;
}

.footer-book-btn:hover {
    background: #ffffff;
    color: #111111 !important;
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    margin: 55px 0 25px;
    background: #292929;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom small {
    color: #666666;
    font-size: 12px;
    letter-spacing: 0.3px;
}


/* =========================================================
   MOBILE CALL BUTTON
========================================================= */

.mobile-call-button {
    display: none;

    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 9999;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 13px 20px;

    background: #d4af37;
    color: #111111;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 30px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
}

.mobile-call-button:hover {
    background: #ffffff;
    color: #111111;
    transform: translateY(-2px);
}


/* =========================================================
   HERO LOCATION
========================================================= */

.hero-location {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.location-line {
    display: block;
    width: 38px;
    height: 1px;
    background: #d4af37;
    flex-shrink: 0;
}

.hero-location .hero-small-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* =========================================================
   GOOGLE TRANSLATE
========================================================= */

.google-translate-mobile {
    position: fixed;
    top: 82px;
    right: 300px;

    z-index: 99999;

    display: block;
}


/* GOOGLE TRANSLATE CONTAINER */

#google_translate_element {
    display: block;
}


/* GOOGLE TRANSLATE SELECT */

#google_translate_element select {
    display: block !important;

    width: auto !important;
    min-width: 125px;

    height: 36px;

    padding: 5px 30px 5px 10px;

    background: #ffffff;
    color: #333333;

    border: 1px solid #d4af37;
    border-radius: 4px;

    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}


/* GOOGLE TRANSLATE GADGET */

#google_translate_element .goog-te-gadget {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0 !important;
}


/* HIDE GOOGLE BRANDING */

#google_translate_element .goog-te-gadget span {
    display: none !important;
}


/* =========================================================
   HIDE GOOGLE TRANSLATE TOP BANNER
========================================================= */

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body > .skiptranslate {
    display: none !important;
}

html {
    margin-top: 0 !important;
}

body {
    top: 0 !important;
    margin-top: 0 !important;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .navbar {
        background: rgba(0,0,0,0.95);
    }

    .nav-link {
        margin-left: 0;
        padding: 12px 0 !important;
    }

    .hero-section {
        min-height: 650px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* GOOGLE TRANSLATE */

    .google-translate-mobile {
        top: 73px;
        right: 28px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .navbar {
        padding: 10px 0;
    }

    .navbar-logo {
        width: 60px !important;
        max-width: 60px !important;
    }

    .brand-text span:first-child {
        font-size: 16px;
    }

    .brand-text span:last-child {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .contact-section {
        padding: 80px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-content h2 {
        font-size: 42px;
    }

    .contact-submit {
        width: 100%;
    }

    .footer {
        padding: 60px 0 100px;
    }

    .footer-brand {
        font-size: 23px;
        letter-spacing: 2px;
    }

    .footer-title {
        margin-bottom: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .mobile-call-button {
        display: flex;
    }
}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 576px) {

    .navbar-logo {
        width: 55px !important;
        max-width: 55px !important;
    }

    .brand-text span:first-child {
        font-size: 15px;
    }

    .brand-text span:last-child {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .hero-section {
        min-height: 700px;
    }

    .hero-content {
        padding: 100px 20px 30px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-dark,
    .section-light {
        padding: 80px 0;
    }

    .package-card {
        padding: 30px 25px;
    }

    .mobile-spa {
        padding: 90px 20px;
    }

    .mobile-spa h2 {
        font-size: 43px;
    }

    .mobile-buttons .btn {
        width: 100%;
    }

    .instagram-section {
        padding: 70px 0;
    }

    .instagram-header {
        margin-bottom: 35px;
    }

    .instagram-header h2 {
        font-size: 32px;
    }

    .instagram-header p {
        font-size: 15px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .instagram-overlay i {
        font-size: 26px;
    }

    .instagram-footer {
        margin-top: 35px;
    }

    .instagram-follow-btn {
        width: 100%;
    }

    /* GOOGLE TRANSLATE */

    .google-translate-mobile {
        top: 80px;
        right: 20px;
    }

    #google_translate_element select {
        min-width: 115px;
        height: 34px;
        font-size: 11px;
    }
}

/* ================================
   FLOATING WHATSAPP BUTTON
================================ */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;

    background-color: #25D366;
    color: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    text-decoration: none;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.30);

    z-index: 9999;

    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.40);
}

/* MOBILE */
@media (max-width: 768px) {

    .whatsapp-float {
        width: 55px;
        height: 55px;

        bottom: 20px;
        right: 20px;

        font-size: 29px;
    }

}