/* =============================================================================
   GLOBAL NAVIGATION COMPONENT (navbar.css)
   Contains: Topbar, Navbar, Mega Menu, Search Overlay, Language Toggle
   ============================================================================= */

:root {
    --primary-red: #e41f26;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.05);
}

/* =========================
   GLOBAL RESET & BASE
   ========================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* --- TOP BAR --- */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.topbar a:hover {
    color: var(--white);
    opacity: 1;
}

.topbar-left,
.topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* --- SIMPLE LANGUAGE DROPDOWN --- */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: 0.3s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lang-list {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    list-style: none;
    padding: 10px 0;
    margin: 5px 0 0 0;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 10px, 0);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 10002;
    will-change: transform, opacity;
}

.lang-list.show {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    z-index: 10002;
}

.lang-list li {
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.lang-list li:hover {
    background: #f5f5f5;
    color: var(--primary-red);
}

/* RTL Mode Support */
body.rtl-mode {
    direction: rtl;
    text-align: right;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 80px;
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    isolation: auto;
}

/* Frosted glass effect via pseudo-element so backdrop-filter
   does NOT create a containing block for fixed children */
.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
    margin-top: -10px;
    margin-bottom: -10px;
    position: relative;
    z-index: 1005;
}

/* --- NAVIGATION --- */
.menu {
    display: flex;
    align-items: center;
    padding: 0 0 0 100px;
}

.nav-item {
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-item a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.nav-item span {
    position: relative;
    padding: 3px 0;
}

.nav-item .fa-chevron-down {
    font-size: 10px;
    margin-left: 6px;
    opacity: 0.6;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth), color var(--transition-smooth);
    vertical-align: middle;
    display: inline-block;
}

.nav-item:hover .fa-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary-red);
}

.lang-btn .fa-chevron-down {
    font-size: 13px;
}

.nav-item span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.nav-item:hover span::after {
    transform: scaleX(1);
}

.nav-item.active-nav {
    color: var(--primary-red);
}

/* --- MEGA MENU CONTAINER --- */
.mega-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate3d(-50%, 15px, 0);
    width: auto;
    max-width: 95vw;
    background: var(--white);
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    border-top: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
    z-index: 101;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.mega-menu-wrapper.active {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
    pointer-events: auto;
}

.mega-menu-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.mega-content {
    display: none;
    padding: 40px;
    gap: 40px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    max-height: 85vh;
    overflow-y: auto;
    animation: contentFadeIn 0.3s ease forwards;
}

.mega-content.active {
    display: flex;
}

#content-services {
    width: max-content;
    max-width: 95vw;
}

#content-events {
    width: max-content;
    max-width: 95vw;
}

#content-insights {
    width: 800px;
    max-width: 95vw;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.column {
    width: 220px;
    flex-shrink: 0;
}

.column h4 {
    margin-bottom: 15px;
    font-size: 15px;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 8px;
    color: var(--text-dark);
}

.column h4 a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color var(--transition-smooth), padding-left var(--transition-smooth);
}

.column h4 a:hover {
    color: var(--primary-red);
    padding-left: 4px;
}

.column h4 a i {
    transition: transform var(--transition-smooth), color var(--transition-smooth);
}

.column h4 a:hover i {
    transform: translateX(3px);
    color: var(--primary-red);
}

.column a {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    margin: 10px 0;
    font-size: 13px;
    transition: all 0.2s;
}

.column a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bullet-list li {
    margin: 0;
    padding: 0;
}

.highlight {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    flex-shrink: 0;
}

.highlight-content-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    transition: opacity 0.3s, transform 0.3s;
    will-change: transform, opacity;
}

.highlight img {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    margin-bottom: 12px;
    object-fit: cover;
    background: #e5e5e5;
}

.highlight strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.highlight p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.insight-card {
    flex: 1;
}

.insight-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #e5e5e5;
}

.nav-right-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.search-trigger {
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
}

.search-text {
    font-size: 15px;
    font-weight: 500;
}

.search-trigger:hover {
    color: var(--primary-red);
    background: rgba(0, 0, 0, 0.05);
}

/* --- BUTTONS --- */
.actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-dark {
    background: var(--text-dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary-red);
}

.btn-light {
    background: #f1f1f1;
    color: #333;
}

.btn-light:hover {
    background: #ddd;
}

/* --- SEARCH OVERLAY --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 30px;
    color: var(--text-dark);
    cursor: pointer;
    transition: 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.search-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-red);
    transform: rotate(90deg);
}

.search-container {
    width: 100%;
    max-width: 800px;
    padding: 0 30px;
    text-align: center;
}

.search-box {
    position: relative;
    margin-bottom: 40px;
}

.search-box input {
    width: 100%;
    border: none;
    background: transparent;
    border-bottom: 3px solid var(--text-dark);
    padding: 15px 65px 15px 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
    transition: 0.3s;
}

.search-box input::placeholder {
    color: #ccc;
}

.search-box input:focus {
    border-bottom-color: var(--primary-red);
}

.search-icon-inner {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--text-dark);
}

.search-suggestions {
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.search-overlay.active .search-suggestions {
    opacity: 1;
    transform: translateY(0);
}

.search-suggestions h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.suggestion-tags span {
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: 0.3s;
}

.suggestion-tags span:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* --- MOBILE-ONLY ELEMENTS: hidden by default on desktop --- */
.nav-toggle,
.mobile-actions,
.mobile-submenu,
.mobile-mega-panel,
.mobile-menu-subheader {
    display: none !important;
}

/* KEYBOARD ACCESSIBILITY: Visible Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: 3px solid var(--primary-red);
    outline-offset: 3px;
}

/* =============================================================================
   RESPONSIVE  single consolidated breakpoint set
   (The original code had this same @media(max-width:1024px) block duplicated
   twice with slightly different, conflicting values  e.g. .topbar-left had
   overflow:hidden in one copy and overflow:visible in the other, which broke
   the text-ellipsis truncation. Merged into one clean block below.)
   ============================================================================= */
@media screen and (max-width: 1024px) {

    .topbar {
        padding: 0 12px;
        height: 34px;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
        overflow: hidden;
    }

    .topbar-left {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 10.5px;
        white-space: nowrap;
        max-width: 80%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .topbar-right {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        width: auto;
        max-width: 25%;
    }

    .topbar-right a {
        display: none !important;
    }

    .lang-dropdown {
        margin-right: 0;
    }

    .navbar {
        padding: 0 15px;
        height: 70px;
        width: 100%;
        justify-content: center;
        position: sticky;
        top: 0;
        z-index: 2500;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1001;
    }

    .logo-img {
        height: 80px;
        width: auto;
        display: block;
        margin: 0;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
        transition: transform 0.3s ease;
    }

    .nav-toggle {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
        z-index: 2501;
        font-size: 20px;
        cursor: pointer;
        color: var(--text-dark);
    }

    .search-trigger {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        z-index: 2501;
        padding: 5px;
        color: var(--text-dark);
    }

    .search-text {
        display: none;
    }

    .actions {
        display: none !important;
    }

    .mega-menu-wrapper {
        display: none !important;
    }

    .menu {
        position: fixed;
        top: 70px;
        /* fallback  JS overrides with navbar.getBoundingClientRect().bottom */
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px 20px;
        display: flex;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 2000;
        border-top: 1px solid var(--border-light);
        overflow-y: auto;
        align-items: flex-start;
        transform: translateX(-100%);
        transition: transform var(--transition-smooth), opacity var(--transition-smooth), visibility var(--transition-smooth);
        will-change: transform, opacity;
        backface-visibility: hidden;
    }

    .menu.mobile-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }



    /* AWS-style utility row: language selector (left) + Socials + Contact us (right) */
    .mobile-menu-subheader {
        display: flex !important;
        width: 100%;
        margin-bottom: 12px;
        border-bottom: 1px solid var(--border-light);
        overflow: hidden;
        /* Prevent overflow vertical cropping */
        flex-shrink: 0;
        /* Extremely important: stops flex layout of .menu from squishing it */
    }

    .mobile-subheader-scroll-wrapper {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
        overflow-x: auto;
        /* Handle horizontal scrolling here */
        white-space: nowrap;
        padding: 4px 0 16px;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-subheader-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }


    .mobile-lang-btn {
        display: flex;
        align-items: center;
        gap: 7px;
        background: none;
        border: none;
        padding: 0;
        font-family: inherit;
        font-size: 13.5px;
        font-weight: 600;
        color: var(--text-dark);
        cursor: pointer;
        flex-shrink: 0;
        /* Prevent shrinking */
    }

    .mobile-lang-btn i.fa-globe {
        font-size: 13px;
        opacity: 0.8;
    }

    .mobile-lang-btn i.fa-chevron-down {
        font-size: 10px;
        opacity: 0.55;
    }

    .mobile-subheader-socials {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-shrink: 0;
        /* Prevent shrinking */
    }

    .mobile-subheader-socials a {
        color: var(--text-muted);
        font-size: 14.5px;
        text-decoration: none;
        transition: color 0.2s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
    }

    .mobile-subheader-socials a:hover {
        color: var(--primary-red);
    }

    .mobile-subheader-links {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
        /* Prevent shrinking */
    }

    .mobile-subheader-links a {
        text-decoration: none;
        color: var(--text-muted);
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 0.1px;
    }

    .contact-item {
        display: none !important;
    }

    .nav-item {
        width: 100%;
        height: auto;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
        flex-direction: column;
        align-items: flex-start;
        transition: background 0.3s;
        letter-spacing: 0.1px;
    }

    .nav-item span {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 14px;
        font-weight: 500;
        padding-right: 4px;
    }

    /* Remove the hover underline effect from spans on mobile */
    .nav-item span::after {
        display: none !important;
    }

    /* Keep the active nav color highlight but remove underline */
    .nav-item.active-nav {
        color: var(--primary-red);
    }

    .nav-item.active-nav span {
        color: var(--primary-red);
    }

    .nav-item.dropdown span i.fa-chevron-down::before {
        content: "\f054";
        /* FontAwesome chevron-right icon */
    }

    .nav-item.dropdown span i {
        transition: transform 0.3s;
    }

    .nav-item.dropdown.mobile-open span i {
        transform: rotate(90deg);
        /* Rotates right chevron to point downwards when active */
        color: var(--primary-red);
    }

    .nav-item.mobile-open {
        background: rgba(228, 31, 38, 0.02);
    }

    .mobile-submenu {
        display: none;
        list-style: none;
        padding: 5px 0 10px 20px;
        margin: 0;
        width: 100%;
        background: transparent;
    }

    .mobile-open .mobile-submenu {
        display: block !important;
        animation: slideInLeft 0.3s ease;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-10px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .mobile-submenu li a {
        display: block;
        padding: 10px 0;
        text-decoration: none;
        color: var(--text-muted);
        font-size: 13px;
        font-weight: 400;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        transition: 0.2s;
    }

    .mobile-submenu li a:hover {
        color: var(--primary-red);
        padding-left: 5px;
    }

    .mobile-submenu li:last-child a {
        border-bottom: none;
    }

    .mobile-actions {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
        width: 100%;
        align-items: center;
    }

    .mobile-actions .btn {
        width: 78% !important;
        max-width: 100%;
    }

    .search-container {
        padding: 0 20px;
    }

    .search-box input {
        font-size: 24px;
        padding: 12px 45px 12px 0;
    }

    /* =========================================================
       MOBILE FULL-CANVAS MEGA MENU
       Slides in on top of .menu (same top offset, header untouched)
       when a dropdown item (Services / Events / Insights) is tapped.
       ========================================================= */
    .mobile-mega-panel {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 70px;
        /* fallback  JS overrides with navbar.getBoundingClientRect().bottom */
        left: 0;
        right: 0;
        height: calc(100vh - 70px);
        /* fallback */
        height: calc(100dvh - 70px);
        /* Modern mobile viewport height */
        width: 100%;
        background: var(--white);
        z-index: 2000;
        transform: translate3d(100%, 0, 0);
        transition: transform var(--transition-smooth);
        will-change: transform;
        backface-visibility: hidden;
        overflow: hidden;
    }

    .mobile-mega-panel.open {
        transform: translate3d(0, 0, 0);
    }

    .mmp-header {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border-light);
        flex-shrink: 0;
    }

    .mmp-back {
        background: none;
        border: none;
        font-size: 18px;
        /* Slightly larger back arrow to match hamburger size */
        color: var(--text-dark);
        cursor: pointer;
        width: auto;
        height: auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: color 0.2s;
    }

    .mmp-back:active {
        color: var(--primary-red);
    }

    .mmp-title {
        font-size: 17px;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0;
    }

    .mmp-body {
        flex: 1 1 auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 6px 20px 40px;
    }

    .mmp-section+.mmp-section {
        margin-top: 22px;
    }

    .mmp-section-title {
        font-size: 12.5px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-muted);
        font-weight: 700;
        margin: 0 0 6px;
        padding-bottom: 8px;
        border-bottom: 2px solid #f5f5f5;
    }

    .mmp-item {
        display: flex;
        gap: 14px;
        align-items: center;
        text-decoration: none;
        padding: 12px 14px;
        background: #f7f7f7;
        border-radius: 12px;
        margin-bottom: 10px;
        border: 1px solid rgba(0, 0, 0, 0.03);
        transition: background 0.2s, transform 0.2s;
    }

    .mmp-item:last-child {
        margin-bottom: 0;
    }

    .mmp-item:active {
        background: #f0f0f0;
        transform: scale(0.98);
    }

    .mmp-item img {
        width: 54px;
        height: 54px;
        object-fit: cover;
        border-radius: 10px;
        flex-shrink: 0;
        background: #f2f2f2;
    }

    .mmp-item-text {
        flex: 1;
        min-width: 0;
    }

    .mmp-item-title {
        font-size: 13.5px;
        font-weight: 500;
        color: var(--text-dark);
        margin: 0 0 4px;
    }

    .mmp-item-desc {
        font-size: 12px;
        color: var(--text-muted);
        line-height: 1.5;
        margin: 0;
    }

    .mmp-highlight {
        margin-top: 18px;
        border-radius: 14px;
        overflow: hidden;
        background: #f9f9f9;
        border: 1px solid var(--border-light);
    }

    .mmp-highlight img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        display: block;
    }

    .mmp-highlight-body {
        padding: 14px 16px;
    }

    .mmp-highlight-body strong {
        display: block;
        font-size: 13.5px;
        font-weight: 500;
        margin-bottom: 6px;
        color: var(--text-dark);
    }

    .mmp-highlight-body p {
        font-size: 12px;
        color: var(--text-muted);
        line-height: 1.5;
        margin: 0;
    }
}

/* SMALL TABLET / LARGE PHONE */
@media screen and (max-width: 600px) {
    .topbar-left {
        font-size: 12px;
        gap: 6px;
    }

    .search-box input {
        font-size: 19px;
    }

    .search-close {
        top: 20px;
        right: 20px;
        font-size: 24px;
        width: 42px;
        height: 42px;
    }

    .suggestion-tags span {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* SMALL PHONE */
@media screen and (max-width: 360px) {
    .topbar-left span:nth-child(2) {
        display: none;
    }

    .topbar {
        padding: 0 10px;
    }

    .logo-img {
        height: 80px;
    }

    .nav-toggle,
    .search-trigger {
        font-size: 18px;
    }
}