@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

/* Global Override*/
fieldset {
    min-width: fit-content;
}

.btn {
    color: #fff !important;
}

.main-header {
    background: rgba(62, 58, 57, 0.35) !important;
    display: flex;
    align-items: center;
    padding: 20px 64px 16px 64px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

body {
    background: unset !important;
}

/* Header */
.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-center {
    flex: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-holder {
    position: unset;
    height: unset;
}

.logo-holder img {
    width: 100px;
    height: 32px;
}

.nav-holder {
    margin-left: 0px;
    position: unset;
}

.nav-holder nav li {
    margin-left: 0px;
    height: unset;
}

.nav-holder nav li ul {
    background: rgba(62, 58, 57, 0.35) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: none;
    min-width: unset;
    top: 85px;
    border-radius: 15px;
    padding: 5px;
}

.nav-holder nav li ul a {
    color: #fff;
}

.nav-holder nav li a {
    font-size: 16px;
    font-family: Lato;
    font-weight: 500;
    word-wrap: break-word;
    padding: 18px;
}

.nav-holder nav li a:hover {
    color: #50C3CB;
}

.nav-holder nav li a:hover i {
    color: #50C3CB;
}

.dropdown-menu li a:hover {
    color: white !important;
    background: rgba(247, 247, 247, 0.15);
    border-radius: 8px;
}

.nav-holder nav li a i {
    color: #fff;
    font-size: 10px;
}

.dropdown .submenu-title {
    font-size: 18px;
    font-weight: 600;
}

.dropdown .submenu-desc {
    font-size: 14px;
    font-weight: 400;
    color: #dcdcdc;
    white-space: nowrap;
}

.dropdown-toggle::after {
    display: none !important;
}

.main-menu a {
    text-decoration: none;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    height: 30px;
    padding: 6px 10px;

    background: #f7f7f7;
    border-radius: 24px;

    cursor: pointer;
}

/* flag */
.lang-flag {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* text ID | EN */
.lang-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: Lato, sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

/* garis pemisah */
.lang-separator {
    width: 1px;
    height: 14px;
    background: #bdbdbd;
}

/* arrow */
.lang-arrow {
    font-size: 12px;
    color: #717171;
}

/* =========================
   LANG SWITCHER CONTAINER
========================= */

.lang-switcher {
    position: relative;
    cursor: pointer;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-arrow {
    transition: transform 0.3s ease;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

/* =========================
   DROPDOWN PANEL
========================= */

.lang-dropdown {
    position: absolute;
    top: 70px;
    right: 0;
    width: 380px;
    background: rgba(62, 58, 57, 0.35);
    border-radius: 20px;
    padding: 16px;
    display: none;
    z-index: 999;
}

.lang-switcher.open .lang-dropdown {
    display: block;
}

.dropdown-inner {
    display: flex;
    flex-direction: column;
}

/* =========================
   CONTENT LAYOUT
========================= */

.dropdown-content {
    display: flex;
    gap: 16px;
    text-align: left;
}

/* =========================
   LANG SWITCHER IN MENU
========================= */

.menu-lang-switcher {
    position: relative !important;
    background: transparent !important;
    padding: 0 !important;
    height: auto !important;
    border-radius: 0 !important;
    cursor: auto !important;
}

.menu-lang-switcher .lang-current {
    border-radius: 24px;
    padding: 6px 10px;
    height: 30px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.menu-lang-switcher .lang-dropdown {
    position: absolute;
    top: 0;
    right: 112%;
    margin-right: 8px;
    width: 340px;
    background: rgba(62, 58, 57, 0.35);
    border-radius: 20px;
    padding: 16px;
}

.menu-lang-switcher .lang-text {
    color: white;
}

.lang-text .lang-separator {
    color: #717171;
}

.menu-lang-switcher .dropdown-content {
    flex-direction: row;
    gap: 16px;
}

.menu-lang-switcher .dropdown-group {
    gap: 6px;
    flex: 1;
}

.menu-lang-switcher .dropdown-divider {
    width: 1px;
    height: auto;
    margin: 0;
    background: rgba(255, 255, 255, 0.3);
}

/* =========================
   GUEST MOBILE LANG SWITCHER
========================= */

.guest-lang-switcher {
    position: relative !important;
    background: transparent !important;
    padding: 0 !important;
    height: auto !important;
    border-radius: 0 !important;
    cursor: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
}

.guest-lang-switcher .lang-current {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.guest-lang-switcher .lang-current:hover {
    background: rgba(255, 255, 255, 0.15);
}

.guest-lang-switcher .lang-flag {
    width: 20px;
    height: 20px;
}

.guest-lang-switcher .lang-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    flex: 1;
}

.guest-lang-switcher .lang-text .lang-separator {
    background: rgba(255, 255, 255, 0.3);
}

.guest-lang-switcher .lang-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.guest-lang-switcher .lang-dropdown {
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: 100% !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    margin: 0 !important;
    display: none;
    margin-top: 8px !important;
}

.guest-lang-switcher.open .lang-dropdown {
    display: block;
}

.guest-lang-switcher .dropdown-content {
    flex-direction: column;
    gap: 12px;
}

.guest-lang-switcher .dropdown-group {
    gap: 8px;
    flex: auto;
}

.guest-lang-switcher .dropdown-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.guest-lang-switcher .dropdown-option {
    padding: 10px 12px;
    font-size: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
}

.guest-lang-switcher .dropdown-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.guest-lang-switcher .dropdown-option.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.guest-lang-switcher .dropdown-option.active .check-icon {
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
}

.guest-lang-switcher .dropdown-divider {
    background: rgba(255, 255, 255, 0.15);
    margin: 4px 0;
}

.dropdown-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.dropdown-title {
    color: #F7F7F7;
    font-size: 18px;
    font-weight: 400;
}

/* vertical divider */
.dropdown-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    height: auto;
}

/* =========================
   OPTIONS
========================= */

.dropdown-option {
    position: relative;
    padding: 6px 8px 6px 8px;
    border-radius: 999px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #E8E8E8;
}

.dropdown-option .check-icon {
    opacity: 0;
    font-size: 14px;
}

.dropdown-option.active {
    background: #fff;
    color: #3E3A39;
}

.dropdown-option.active .check-icon {
    opacity: 1;
    color: #3E3A39;
}

/* =========================
   DONE BUTTON
========================= */

.dropdown-done {
    align-self: flex-end;
    margin-top: 20px;
    padding: 10px 28px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, #0A8091 0%, #00A4CA 100%);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* auth group */
.auth-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-actions .bars-icon {
    display: none;
}

@media (max-width: 991px) {
    .auth-actions {
        gap: 16px;
    }

    .auth-actions .bars-icon {
        display: flex;
    }
}

/* tombol dasar */
.btn {
    padding: 10px 18px;
    border-radius: 24px;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.btn.btn-join:hover {
    color: #fff;
}

/* Join Us */
.btn-join {
    color: #ffffff;
    background: transparent;
}

/* garis pemisah */
.auth-divider {
    width: 1px;
    height: 24px;
    background: #f7f7f7;
}

/* Sign In */
.btn-signin {
    color: #ffffff;
    background: radial-gradient(ellipse 140% 140% at 50% 120%,
            #ffffff 0%,
            #50c3cb 30%,
            #00a4ca 85%);
    border: 1px solid #00a4ca;
}

/* Jika sudah login */
.top-icons {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.icon-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.icon-btn i {
    font-size: 16px;
    color: white;
    transition: color 0.2s ease;
}

/* Hover effect */
.icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.icon-btn:active {
    transform: scale(0.95);
}

/* Notification dot */
.notif-dot {
    width: 8px;
    height: 8px;
    background: #EE4733;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 8px;
}

/* Divider */
.divider {
    width: 1px;
    height: 24px;
    background: #717171;
}

/* Overlay background */
.menu-overlay {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    z-index: 999;
}

/* Show state */
.menu-overlay.active {
    display: flex;
}

/* Dropdown box */
.menu-dropdown {
    background: rgba(62, 58, 57, 0.35);
    border-radius: 12px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    animation: fadeSlide 0.25s ease;
    position: absolute;
    top: 95px;
}

/* Animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile menu styling for logged-in users */
@media (max-width: 991px) {
    .menu-overlay {
        display: none !important;
    }
}

/* Sections */
.menu-section {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-title {
    font-size: 12px;
    color: #E8E8E8;
    opacity: 0.8;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    text-align: left;
}

/* Profile */
.profile-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.profile-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.profile-item span {
    font-size: 14px;
    color: #fff;
}

/* Divider */
.menu-divider {
    height: 1px;
    background: #717171;
    margin: 6px 0;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons i {
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    color: white;
}

.social-icons svg {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons i:hover,
.social-icons svg:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

@media (max-width: 991px) {
    .main-header {
        padding: 20px 25px 16px 25px;
    }

}

@media only screen and (max-width: 1290px) {
    .nav-holder nav li a {
        padding: 10px;
    }

    .header-left {
        gap: unset;
    }
}

@media only screen and (max-width: 1070px) {

    .lang-switcher.guest-lg,
    .btn-join,
    .auth-divider {
        display: none !important;
    }

    .auth-actions .bars-icon-guest {
        display: flex !important;
    }
}

/* End Header */

/* Footer */

.footer-main {
    background: #717171;
    color: #fff;
    font-family: Lato, sans-serif;
}

.footer-logo {
    height: 44px;
    margin-bottom: 0px;
}

.footer-tagline {
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
}

.footer-divider {
    border-color: #e8e8e8;
    opacity: 1;
}

.footer-address {
    font-weight: 700;
    font-size: 16px;
}

.footer-contact {
    margin-top: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.social-btn i {
    font-size: 23px;
}

.social-btn svg {
    width: 23px;
    height: 23px;
}

.footer-title {
    color: rgba(232, 232, 232, .75);
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.app-badges {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.footer-legal {
    font-size: 16px;
    color: #e8e8e8;
}

.footer-marquee {
    margin-top: 40px;
    overflow: hidden;
}

.footer-marquee marquee {
    font-size: 200px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    color: #e8e8e8;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 0.7;
    margin-bottom: -4px;
}

/* ===========================
   GUEST MOBILE MENU
============================= */

.bars-icon-guest {
    display: none;
}

.guest-mobile-menu {
    position: fixed;
    top: 79px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(62, 58, 57, 0.95);
    z-index: 997;
    display: none;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
}

.guest-mobile-menu.active {
    display: flex;
    transform: translateY(0);
}

.main-header.menu-active {
    background: rgba(62, 58, 57, 0.95) !important;
    transition: background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Show bars icon on mobile */
@media (max-width: 991px) {
    .bars-icon-guest {
        display: flex !important;
    }
}

.guest-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px;
    overflow-y: auto;
    max-height: calc(100vh - 79px);
}

.guest-menu-content .dropdown-title,
.guest-menu-content .dropdown-option {
    font-size: 16px;
}

/* Guest Mobile Menu Dropdowns */
.guest-nav-dropdown-wrapper {
    position: relative;
}

.guest-nav-dropdown {
    display: flex;
    align-items: center;
    cursor: pointer !important;
}

.guest-nav-dropdown i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.guest-nav-dropdown.active i {
    transform: rotate(180deg);
}

.guest-nav-submenu {
    display: none;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.guest-nav-submenu.active {
    display: flex;
    max-height: 500px;
    opacity: 1;
    padding: 0 0 0 16px;
}

.guest-submenu-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    padding-left: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.guest-submenu-item:hover {
    color: white !important;
    background: rgba(247, 247, 247, 0.15);
    border-radius: 8px;
}

.guest-submenu-item .submenu-title {
    font-weight: 500;
    display: block;
}

.guest-submenu-item .submenu-desc {
    font-size: 12px;
    opacity: 0.8;
    display: block;
}

.guest-menu-nav {
    display: flex;
    flex-direction: column;
}

.guest-nav-item {
    padding: 12px 18px;
    border-radius: 24px;
    color: white;
    font-size: 16px;
    font-family: Lato, sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background 0.2s ease;
    gap: 5px;
}

.guest-nav-item:hover {
    color: #50C3CB;
}

.guest-nav-dropdown {
    cursor: pointer;
}

.guest-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.guest-menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0px 18px;
}

.guest-lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    cursor: pointer;
}

.guest-lang-flag {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.guest-lang-display {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.guest-lang-text {
    color: #000;
    font-size: 12px;
    font-family: Lato, sans-serif;
    font-weight: 500;
    white-space: nowrap;
}

.guest-lang-separator {
    width: 1px;
    height: 12px;
    background: #bdbdbd;
}

.guest-lang-selector i {
    color: #717171;
    font-size: 10px;
    flex-shrink: 0;
}

.btn-join-mobile {
    padding: 10px 18px;
    font-size: 14px;
    white-space: nowrap;
}

.guest-lang-selector .lang-dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    width: 290px;
    background: rgba(62, 58, 57, 0.35);
    border-radius: 20px;
    padding: 16px;
    display: none;
    z-index: 999;
}

/* =============================
   LOGGED-IN MOBILE MENU (SAME AS GUEST)
============================= */

.logged-mobile-menu {
    position: fixed;
    top: 79px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(62, 58, 57, 0.95);
    z-index: 997;
    display: none;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
}

.logged-mobile-menu.active {
    display: flex;
    transform: translateY(0);
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    .logged-mobile-menu {
        display: none !important;
    }
}

.logged-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 16px;
    overflow-y: auto;
    max-height: calc(100vh - 79px);
}

.logged-menu-nav {
    display: flex;
    flex-direction: column;
}

/* Dropdown wrappers */
.logged-nav-dropdown-wrapper {
    position: relative;
}

.logged-nav-dropdown {
    display: flex;
    align-items: center;
    cursor: pointer !important;
}

.logged-nav-dropdown i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.logged-nav-dropdown.active i {
    transform: rotate(180deg);
}

.logged-nav-submenu {
    display: none;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.logged-nav-submenu.active {
    display: flex;
    max-height: 500px;
    opacity: 1;
    padding: 0 0 0 16px;
}

.logged-submenu-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    padding-left: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.logged-submenu-item:hover {
    color: white !important;
    background: rgba(247, 247, 247, 0.15);
    border-radius: 8px;
}

.logged-submenu-item .submenu-title {
    font-weight: 500;
    display: block;
}

.logged-submenu-item .submenu-desc {
    font-size: 12px;
    opacity: 0.8;
    display: block;
}

.logged-nav-item {
    padding: 12px 18px;
    border-radius: 24px;
    color: white;
    font-size: 16px;
    font-family: Lato, sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background 0.2s ease;
    gap: 5px;
}

.logged-nav-item:hover {
    color: #50C3CB;
}

.profile-item-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 24px;
    color: white;
}

.profile-item-mobile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-item-mobile span {
    font-size: 16px;
    font-weight: 500;
    font-family: Lato, sans-serif;
}

.logged-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.logged-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0px 18px;
}

.logged-menu-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.logged-menu-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    font-family: Lato, sans-serif;
    letter-spacing: 0.5px;
    text-align: left;
}

.logged-lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    cursor: pointer;
    width: fit-content;
}

.logged-lang-selector .lang-dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    width: 290px;
    background: rgba(62, 58, 57, 0.35);
    border-radius: 20px;
    padding: 16px;
    display: none;
    z-index: 999;
}

.logged-lang-switcher {
    width: 100%;
}

.logged-lang-switcher .lang-current {
    padding: 12px 18px;
    border-radius: 24px;
    background: rgba(247, 247, 247, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logged-lang-switcher .lang-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.logged-lang-switcher .lang-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.logged-lang-switcher .lang-text .lang {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
}

.logged-lang-switcher .lang-separator {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
}

.logged-lang-switcher .lang-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.logged-lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.logged-lang-switcher .lang-dropdown {
    position: static;
    background: rgba(62, 58, 57, 0.95);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 8px;
    display: none;
    z-index: 999;
}

.logged-lang-switcher.open .lang-dropdown {
    display: block;
}

.logged-lang-switcher .dropdown-inner {
    display: flex;
    flex-direction: column;
    max-height: 50vh;
    overflow-y: auto;
}

.logged-lang-switcher .dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logged-lang-switcher .dropdown-group {
    padding: 8px 0;
}

.logged-lang-switcher .dropdown-title {
    padding: 8px 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logged-lang-switcher .dropdown-option {
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease;
}

.logged-lang-switcher .dropdown-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.logged-lang-switcher .dropdown-option.active {
    background: rgba(80, 195, 203, 0.2);
    color: #50C3CB;
}

.logged-lang-switcher .dropdown-option .check-icon {
    display: none;
    color: #50C3CB;
}

.logged-lang-switcher .dropdown-option.active .check-icon {
    display: block;
}

.logged-lang-switcher .dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.logged-lang-switcher .dropdown-done {
    padding: 10px 18px;
    background: transparent;
    border: none;
    color: #50C3CB;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: right;
    margin-top: 8px;
    transition: color 0.2s ease;
}

.logged-lang-switcher .dropdown-done:hover {
    color: #45b4bb;
}

.logged-menu-section .social-icons {
    display: flex;
    gap: 12px;
}

.logged-menu-section .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.2s ease;
}

.logged-menu-section .social-icons a:hover {
    background: rgba(80, 195, 203, 0.2);
    color: #50C3CB;
}

/* responsive */
@media (max-width: 768px) {
    .social-col {
        justify-content: flex-start;
        display: grid;
    }

    .footer-content {
        margin-top: 34px;
    }

    .app-badges {
        justify-content: flex-start;
    }

    .footer-marquee {
        margin-top: 65px;
    }
}

/* EndFooter */