/* ==========================================================================
   Base Reset & Variables
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root {
    --brand-yellow: #fbbb22;
    --brand-blue: #3b5cb0;
    --brand-red: #df3644;
    --text-dark: #111111;
    --text-gray: #777777;
    --bg-socials: #212121;
}

body {
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ==========================================================================
   Header Area (Static on Mobile)
   ========================================================================== */
.header-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    padding: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-size: 10px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-text strong {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 2px 0;
}

.logo-text small {
    font-size: 9px;
    font-weight: 600;
    color: #444;
    letter-spacing: 1px;
}

.mobile-toggle {
    background: transparent;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

/* Language Bar */
.language-bar {
    border-top: 1px solid #f0f0f0;
    padding: 12px 20px;
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #888;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.language-bar::-webkit-scrollbar { 
    display: none; 
}

.language-bar span, .language-bar strong {
    cursor: pointer;
}

.language-bar strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ==========================================================================
   Mobile Slide-Out Menu (Yellow Block)
   ========================================================================== */
.mobile-menu {
    position: fixed;
    top: 136px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 136px);
    background-color: var(--brand-yellow);
    padding: 24px 20px;
    overflow-y: auto;
    z-index: 40;
    transition: left 0.25s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.mobile-menu.open {
    left: 0;
}

/* Mobile Search Area */
.mobile-search-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.mobile-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.mobile-input-wrapper i {
    color: #444;
    font-size: 16px;
}

.mobile-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: #222;
}

.mobile-input-wrapper input::placeholder {
    color: #666;
}

.btn-search-mobile {
    background-color: var(--brand-blue);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

/* Mobile Links */
.mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 400;
}

.mt-links {
    margin-top: 30px;
}
/* Mobile Social Icons */
.mobile-socials {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.mobile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--bg-socials);
    color: var(--brand-yellow);
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
}

/* Red Banking Button */
.btn-banking {
    width: 100%;
    background-color: var(--brand-red);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    margin-top: 25px;
    cursor: pointer;
    margin-bottom: 40px;
}

/* ==========================================================================
   Desktop Interactive Strip Logic
   ========================================================================== */
.desktop-interactive-strip {
    display: none; 
    margin-top: 15px;
}

@media (min-width: 992px) {
    .mobile-toggle { display: none; }
    .mobile-menu { display: none !important; }

    .header-wrapper {
        padding: 10px 40px;
    }

    .main-header {
        padding: 12px 0;
    }

    .desktop-interactive-strip {
        display: block;
        max-width: 600px;
        margin-left: auto;
    }

    .strip-links {
        display: flex;
        align-items: center;
        background-color: var(--brand-yellow);
        padding: 8px 16px;
        border-radius: 30px;
        gap: 20px;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .strip-links.hidden {
        display: none;
    }

    .strip-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 14px;
    }

    .strip-links a:hover {
        text-decoration: underline;
    }

    .btn-strip-search {
        background: transparent;
        border: none;
        font-size: 16px;
        color: var(--text-dark);
        cursor: pointer;
        margin-left: auto;
    }

    .strip-input-bar {
        display: flex;
        align-items: center;
        background-color: #f5f5f5;
        padding: 8px 16px;
        border-radius: 30px;
        border: 1px solid #ddd;
        gap: 10px;
        transition: opacity 0.3s ease;
    }

    .strip-input-bar.hidden {
        display: none;
    }

    .strip-input-bar input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        font-size: 14px;
        padding: 5px;
    }

    .btn-strip-close {
        background: transparent;
        border: none;
        font-size: 16px;
        color: #666;
        cursor: pointer;
    }
}