.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 350px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: fadeIn 0.5s;
    font-family: 'Arial', sans-serif;
    text-align: center;
    padding: 25px 20px;
}

.popup-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--gold);
}

.popup-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.close-btn {
    position: absolute;
    top: -18px;
    right: 3px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
}

.call-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--gold);
    color: var(--black);
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background-color: var(--dark-gold);
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {opacity: 0; transform: translate(-50%, -60%);}
    to {opacity: 1; transform: translate(-50%, -50%);}
}

/* ========== HEADER SECTION ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.header-container {
    padding: 0 2rem;
}

.special-offer-heading{
    font-size: 20px;
}

/* Desktop Header */
.desktop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 80px;
}

.logo-container {
    flex: 0 0 25%;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-container {
    flex: 0 0 50%;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    /*position: relative;*/
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.button-container {
    /*flex: 0 0 25%;*/
    /*display: flex;*/
    justify-content: flex-end;
}

.book-btn {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    min-width: 200px;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
}

.book-btn:active {
    transform: translateY(-1px);
}

/* Mobile Header */
.mobile-header {
    display: none;
    padding: 1rem 0;
}

.mobile-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.hamburger {
    width: 30px;
    height: 24px;
    cursor: pointer;
    /* padding: 0.5rem 0; */
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.hamburger.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(2px, -1px);
}

.hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 1px);
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: linear-gradient(135deg, var(--black), var(--spa-green));
    border-radius: 0 0 12px 12px;
    margin-top: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mobile-menu.open {
    max-height: 600px;
}

.mobile-nav {
    padding: 1rem 0.5rem;
    padding-top: 0px !important;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    padding-left: 1.5rem;
}

.mobile-nav-link.active {
    color: var(--gold);
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link i {
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
}

.special-offer {
    margin-top: 2rem;
}

.special-offer-box {
    background: linear-gradient(135deg, var(--light-black), var(--spa-green));
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.special-offer-box h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.special-offer-box p {
    color: var(--gray-300);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.special-offer-box button {
    background-color: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.special-offer-box button:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
}

@media (max-width: 1279px) {
    .nav-link{
        font-size: 12px;
    }
    
}

@media (max-width: 1199px) {

    /* Desktop header off */
    .desktop-header {
        display: none !important;
    }

    /* Mobile header on */
    .mobile-header {
        display: flex !important;
    }

}



.whatsapp-icon-fixed {
    position: fixed;
    bottom: 20px;
    width: 60px;
    left: 20px;
    z-index: 9999;
}

.call-icon-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.call-icon-right img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}