.lang-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    padding: 6px 14px;
    border-radius: 30px;
}

.lang-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.lang-btn:hover {
    opacity: 0.8;
}

.divider {
    color: rgba(255,255,255,0.5);
}

/* Hide all Google UI */
.goog-logo-link,
.goog-te-gadget {
    display: none !important;
}

@media (max-width:767px) {
    .lang-wrapper {
        padding: 4px 10px;
    }

    .lang-btn {
        font-size: 14px;
    }
    .lang-wrapper {
        margin: 20px 0 10px;
    }
}
@media (max-width:450px) {
    .lang-btn {
        font-size: 12px;
    }
}



/* ======================================= SCROLL ANIMATION ======================================= */

.scroll-fade {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-zoom.show {
    opacity: 1;
    transform: scale(1);
}

/* ======================================= SPLASH SCREEN ======================================= */

#preloader {
    position: fixed;
    inset: 0;

    background: linear-gradient(
        135deg,
        #0f3d3e,   /* deep healing green */
        #1f6f78,   /* teal */
        #7fb7a4,   /* sage */
        #e8f3ef    /* soft mint */
    );
    background-size: 300% 300%;
    animation: gradientMove 8s ease infinite;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* LOGO */
#preloader img {
    width: 170px;
    animation: logoFadeZoom 2s ease forwards;
}

/* HIDE */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* PAGE FADE */
body.loaded {
    animation: pageFade 0.8s ease;
}

/* ANIMATIONS */
@keyframes logoFadeZoom {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pageFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================= NAVBAR BASE ============================= */

#mainNavbar {
    top: 0;
    transition: top 0.3s ease;
    padding-left:10%;
}
.healing-navbar {
    background: #0b1020;
    min-height: 60px;
    padding: 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.4);
}

.navbar-brand img {
    height: 60px;   
    width: 60px;
}

/* Links */
.healing-navbar .nav-link {
    color: #d7dbea;
    padding: 4px 8px;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
}

.healing-navbar .nav-link:hover {
    font-size: 17px;
}
.healing-navbar .nav-link:hover,
.healing-navbar .nav-link.active {
    color: #f5c16c;
}


/* Dropdown items */
.dropdown-menu-dark .dropdown-item {
    padding: 2px 10px;
    border-radius: 8px;
    color: #d7dbea;
    font-size: 14px;
}

.dropdown-menu-dark .dropdown-item:hover {
    background: rgba(245, 193, 108, 0.15);
    color: #f5c16c;
}

.translate{
    margin-left: 10px;
}

@media (max-width: 768px) {
    .healing-navbar .nav-link {
        font-size: 14px;
        padding: 6px 5px;
    }
    .healing-navbar .nav-link:hover {
        font-size: 15px;
    }
    /* Dropdown items */
    .dropdown-menu-dark .dropdown-item {
        font-size: 12px;
    }
}
@media (max-width: 450px) {
    .healing-navbar .nav-link {
        font-size: 12px;
        padding: 6px 5px;
    }
    .healing-navbar .nav-link:hover {
        font-size: 13px;
    }
}

/* ============================= */ /* PREMIUM TOGGLER */ /* ============================= */

.premium-toggler {
    border: none;
    background: transparent;
}

.premium-toggler span {
    display: block;
    width: 26px;
    height: 2px;
    background: #f5c16c;
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================= */
/* BODY OFFSET */
/* ============================= */

body {
    padding-top: 70px;
    background: #0e1525;
    color: #e6e8ee;
}

.main-content{
    min-height: 50vh;
}


@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
        min-width: 260px;
        background: #121a2f;
        border-radius: 14px;
        padding: 12px;
        box-shadow: 0 10px 35px rgba(0,0,0,0.5);
        pointer-events: none;
    }
    
    .navbar-collapse {
        background: #0b1020;
        padding: 15px;
        margin-top: 0;
        border-radius: 0 0 16px 16px;
    }

    .nav-link {
        padding: 12px 10px;
    }

}
@media (max-width: 992px) {

    .translate{
        margin-top: 10px;
    }
    
    #mainNavbar {
        padding-left:5%;
    }

}
@media (max-width: 450px) {

    
    #mainNavbar {
        padding-left:3%;
    }

}









/* ========================= HEALING FOOTER ========================= */
.healing-footer {
    background: linear-gradient(135deg, #0f2f2f, #143f3f);
    color: #d7f5f0;
    padding: 60px 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #9ff3e5;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #cceeee;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a {
    text-decoration: none;
    color: #cceeee;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #9ff3e5;
    padding-left: 5px;
}

.footer-contact i {
    margin-right: 8px;
    color: #9ff3e5;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    margin-top: 40px;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    color: #cceeee;
}

/* Tablet */
@media (max-width: 768px) {
    .healing-footer {
        text-align: center;
    }
    .footer-title {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    .footer-text {
        font-size: 14px;
        line-height: 1.6;
    }
    .footer-links a:hover {
        padding-left: 0;
    }
}
/* Mobile */
@media (max-width: 450px) {
    .footer-title {
        font-size: 14px;
    }
    .footer-text {
        font-size: 12px;
        line-height: 1.3;
    }
    .footer-links a:hover {
        padding-left: 0;
    }
    .footer-bottom {
        margin-top: 20px;
        padding: 10px 0;
        font-size: 12px;
    }
    .footer-links li,
    .footer-contact li {
        margin-bottom: 7px;
        font-size: 12px;
    }
}











