.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0px;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding-bottom: @(controller=="SalesExperience" ? "8px" : "16px") */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    /*  margin-top: -8px;
                                                                margin-bottom: -8px;
                                                                height: 48px; */
    margin-left: 8px;
    max-width: 128px;
}

@media (max-width: 767.98px) {
    .logo {
        max-width: 100px;
    }
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #23745D, #48d1cc);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.3);
}

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

.logo-title {
    font-size: 28px;
    font-weight: 700;
    color: #23745D;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.main-nav {
    display: flex;
    gap: 20px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 0;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.main-nav a::after {
    content: '';
    position: absolute;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #23745D, #48d1cc);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #23745D;
}

.main-nav a.active {
    color: #23745D;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a.active::after {
    width: 100%;
}

.nav-item {
    position: relative;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-download {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    /* background: linear-gradient(135deg, #f8f9fa, #e9ecef); */
    /* background: var(--bado-green); */
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    justify-content: center;
}

.app-download:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.register-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(60.39deg, #FFD500 -51.1%, #FF8400 -11.86%, #FFAB00 20.24%, #FF8800 57.1%, #FFA424 96.33%, #CF4C00 129.62%, #E06900 196.21%) !important;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.3);
}

.register-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(32, 178, 170, 0.4);
}

.flag {
    width: 22px;
    height: 16px;
    background: linear-gradient(to bottom, #da020e 0%, #da020e 33%, #ffff00 33%, #ffff00 67%, #da020e 67%);
    border-radius: 3px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.flag::after {
    content: '★';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffff00;
    font-size: 9px;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    /* background: #f8f9fa; */
}

/*  .hamburger:hover {
                                                        background-color: #e9ecef;
                                                        transform: scale(1.05);
                                                    } */

.hamburger span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, #23745D, #48d1cc);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* .hamburger.active span:nth-child(1) {
                                                        transform: rotate(-45deg) translate(-6px, 7px);
                                                    }

                                                    .hamburger.active span:nth-child(2) {
                                                        opacity: 0;
                                                    }

                                                    .hamburger.active span:nth-child(3) {
                                                        transform: rotate(45deg) translate(-6px, -7px);
                                                    } */

/* Mobile Left Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -130%;
    width: 500px;
    min-width: 400px;
    height: 100%;
    background: white;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1052;
    bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* @@media (max-width: 576px) {
                                                     .mobile-menu {
                                                        width: 100%;
                                                     }
                                                 } */

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 12px 12px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.mobile-menu-close {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    border: none;
    color: #1A1A1A;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.mobile-menu-close:focus,
.mobile-menu-close:focus-visible {
    outline: none !important;
}

.mobile-menu-close:hover {
    background: #E7F4EF;
    color: #23745D;
    transform: scale(1.02);
}

.mobile-menu-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    flex: 1 1 auto;
    max-height: calc(100vh - 70px);
    min-height: 0;
}

.mobile-nav-section {
    margin-bottom: 0;
}

.mobile-nav-title {
    font-family: 'Nunito', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    line-height: 100%;
    color: #2A2D32;
    padding: 16px 24px;
    letter-spacing: 0%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.mobile-nav-title a {
    color: #2A2D32 !important;
    text-decoration: none;
    flex-grow: 1;
}

.mobile-nav-item {
    display: block;
    padding: 16px 24px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-item:hover {
    background: linear-gradient(90deg, #f0f8ff, transparent);
    border-left-color: #23745D;
    color: #23745D;
    transform: translateX(4px);
}

.mobile-nav-item.main-item {
    font-weight: 600;
    font-size: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid #f5f5f5;
    background: white;
}

.mobile-nav-item.main-item:hover {
    background: linear-gradient(90deg, #f0f8ff, transparent);
}

.mobile-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: #f8f9fa;
}

.mobile-category-column {
    padding: 16px 0;
}

.mobile-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 2px 8px;
    border-radius: 8px;
}

.mobile-category-item:hover {
    background: white;
    color: #23745D;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #23745D, #48d1cc);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(32, 178, 170, 0.3);
}

.mobile-actions {
    margin-top: 1rem;
    padding: 12px;
    /* border-top: 1px solid #333; */
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* background: linear-gradient(135deg, #f8f9fa, #e9ecef); */
    width: 100%;
    position: static;
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1051;
    backdrop-filter: blur(2px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: white;
    /* box-shadow: 0 8px 32px rgba(0,0,0,0.12); */
    border-radius: 16px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    min-width: 760px;
    margin: 0 auto;
    /* border-top: 3px solid #23745D; */
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
    width: fit-content;
}

.mega-menu.type2 {
    left: -150px;
    padding-bottom: 20px !important;
    width: fit-content;
    max-width: 95vw;
}

.mega-menu.type3 {
    left: -200px;
}

.mega-menu.type4 {
    min-width: 260px;
    width: max-content;
    max-width: 400px;
    right: auto;
    padding: 12px;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mega-category {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-category-title {
    font-size: 15px;
    font-weight: 700;
    color: #23745D;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 8px;
    padding-top: 0;
    border-bottom: 2px solid #e9ecef;
    position: relative;
    white-space: nowrap;
    line-height: inherit;
}

.mega-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #23745D, #48d1cc);
}

.mega-category-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Reset ul default styles */
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-category-items > li {
    /* Reset li default styles */
    margin: 0;
    padding: 0;
    list-style: none;
}


.mega-category-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    text-decoration: none;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 10px;
    /* border: 1px solid transparent; */
}

.mega-category-items.type2 .mega-category-item {
    padding: 4px 12px !important;
}

.mega-category-item:hover {
    color: #23745D;
    /* background: linear-gradient(135deg, #f0f8ff, #e6f3ff); */
    /* border-color: #23745D; */
    transform: translateX(4px);
    /* box-shadow: 0px 1px 12px rgba(32, 178, 170, 0.15); */
}

.mega-icon {
    width: 22px;
    height: 22px;
    /* background: linear-gradient(135deg, #23745D, #48d1cc); */
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    /* box-shadow: 0 2px 6px rgba(32, 178, 170, 0.3); */
}

/* Specific Mega Menu Styles */
.mega-menu.solutions-menu .mega-menu-content {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    /* Use 3 columns with safe minimum width */
}

.mega-menu.pricing-menu .mega-menu-content {
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns for pricing */
}

.mega-menu.pricing-menu .mega-category-title.main-title {
    grid-column: 1 / -1;
    /* Span all columns */
    text-align: center;
    font-size: 20px;
    margin-bottom: 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #e9ecef;
    color: #2A2D32;
    font-weight: 700;
}

.mega-menu.pricing-menu .mega-category-title.main-title::after {
    width: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.mega-menu.guide-menu .mega-menu-content {
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    /* Smaller columns for guide */
    gap: 12px;
}

.mega-menu.guide-menu .mega-category-item {
    padding: 10px 12px;
    gap: 10px;
}

.mega-menu.guide-menu.type2 .mega-category-item {
    padding: 4px 12px;
    gap: 10px;
}

.mega-menu.guide-menu .mega-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
}

.mega-menu .highlight-column {
    background: #E7F7F2;
    border-radius: 12px;
    padding: 20px;
    box-shadow: inset 0 0 10px rgba(32, 178, 170, 0.1);
    margin-top: -20px;
    margin-bottom: -20px;
    margin-right: -20px;
}

.mega-menu .highlight-column .mega-category-title {
    color: #00796b;
    /* Darker teal for title */
    border-bottom-color: #e9ecef;
}

.mega-menu .highlight-column .mega-category-title::after {
    background: linear-gradient(90deg, #00796b, #26a69a);
}

.mega-menu .highlight-column .mega-category-item {
    /* background: white; */
    border-color: #b2dfdb;
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.05); */
}

.mega-menu .highlight-column .mega-category-item:hover {
    /* background: #e0f2f7; */
    /* border-color: #00796b; */
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
}

.mega-menu .highlight-column .mega-icon {
    /*  background: linear-gradient(135deg, #00796b, #26a69a);
                                                                        box-shadow: 0 2px 4px rgba(0,121,107,0.3); */
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .main-nav a {
        font-size: 12px;
    }

    .header-actions {
        font-size: 12px;
    }

    .register-btn {
        font-size: 12px;
    }

    .logo {
        max-width: 100px;
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-actions .app-download {
        display: none;
    }

    .mega-menu {
        display: none;
    }

    .logo-title {
        font-size: 24px;
    }

    .logo-subtitle {
        font-size: 11px;
    }

    .top-nav {
        padding: 12px 10px;
    }
}

@media (max-width: 767.98px) {
    .top-nav {
        padding: 4px 20px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100vw;
        min-width: 100vw;
    }

    .register-btn {
        padding: 8px 16px;
        font-size: 15px;
    }

    .mobile-category-grid {
        grid-template-columns: 1fr;
        /* Stack columns on very small screens */
    }
}

/* Animation for mobile menu items */
.mobile-menu.active .mobile-nav-item,
.mobile-menu.active .mobile-category-item {
    animation: slideInLeft 0.3s ease forwards;
}

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

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

/* Specific styling for Giải pháp section - NOW DRILL DOWN */
.mobile-solutions-content {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10;
    transition: left 0.3s ease;
    display: block !important;
    overflow-y: auto;
    padding-bottom: 20px;
}

.mobile-solutions-content.active {
    left: 0;
}

.drilldown-back-btn {
    padding: 16px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2A2D32;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-solutions-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-solutions-item.parent {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 800;
    font-size: 14px;
    color: #23745D !important;
    text-transform: uppercase;
    background: none;
    border: 0;
    padding-top: 24px;
    padding-bottom: 8px;
    pointer-events: none;
    /* acts as a headline */
}

.mobile-menu-tree .menu-tree-children .mobile-solutions-item.child {
    padding-left: 48px;
}

.mobile-menu-tree > .menu-tree-child > .mobile-solutions-item.child {
    padding-left: 24px;
}

.mobile-solutions-item.child {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 600;
    font-size: 16px;
    color: #2A2D32 !important;
    padding: 12px 24px;
}

.drilldown-large-title {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    color: #2A2D32;
    text-align: center;
    padding: 32px 16px 16px;
}

.mobile-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    background: linear-gradient(135deg, #20b2aa, #48d1cc);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(32, 178, 170, 0.3);
}

/* .mobile-actions {
                                                    padding: 24px;
                                                    border-top: 1px solid #333;
                                                    display: flex;
                                                    flex-direction: column;
                                                    gap: 16px;
                                                    background: #2a2a4a;
                                                    position: absolute;
                                                    bottom: 0;
                                                    right: 0;
                                                    left: 0;
                                                } */

.mobile-actions .app-download {
    background: #F1F5F9 !important;
    color: #2A2D32 !important;
    box-shadow: 0px 0px 4px 0px #00000040 inset;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.mobile-actions .register-btn {
    background: linear-gradient(60.39deg, #FFD500 -51.1%, #FF8400 -11.86%, #FFAB00 20.24%, #FF8800 57.1%, #FFA424 96.33%, #CF4C00 129.62%, #E06900 196.21%) !important;
    color: #fff !important;
    text-align: right;
    box-shadow: 0px 0px 4px 0px #00000040 inset;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.mobile-actions .app-download:hover,
.mobile-actions .register-btn:hover {
    transform: translateY(-1px);
}

.submenuHeader a.active {
    border-bottom: 1px solid #333;
    color: #333;
}

.submenuHeader a {
    white-space: nowrap;
    font-size: 14px;
}

@media (max-width: 767.98px) {
    .submenuHeader {
        overflow-x: scroll;
        gap: 10px !important;
    }
}

.header-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 7px 16px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e0e0e0;
    z-index: 1000;
    border-radius: 10px 10px 0 0;
}

.header-footer__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.header-footer__container>* {
    flex: 1;
}

.header-footer__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    width: 100%;
    color: #fff !important;
}

.header-footer__button span {
    white-space: nowrap;
}

.header-footer__button--consult {
    background-color: #2196F3;
    color: white;
}

.header-footer__button--consult:hover {
    background-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.header-footer__button--contact {
    background-color: #4CAF50;
    color: white;
    position: relative;
}

.header-footer__button--contact:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.header-footer__button--contact.header-footer__button--active {
    background-color: #45a049;
    transform: translateY(-2px);
}

.header-footer__button--try {
    background-color: #9E9E9E;
    color: white;
    background: linear-gradient(103.8deg, #22A897 6.98%, #4596DE 93.02%);
}

.header-footer__button--try:hover {
    background-color: #757575;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(158, 158, 158, 0.3);
}

.header-footer__button.header-footer__button--pressed {
    transform: scale(0.95);
}

.header-footer__icon {
    font-size: 16px;
}

.header-footer__arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Contact Container */
.header-footer__contact-container {
    position: relative;
}

/* Contact Dropdown */
.header-footer__dropdown {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.15);
    /* padding: 10px 0; */
    margin-bottom: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.header-footer__dropdown--show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.header-footer__dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: white;
}

.header-footer__dropdown-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.header-footer__dropdown-option:hover {
    background-color: #f5f5f5;
}

.header-footer__dropdown-option .header-footer__icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.header-footer__dropdown-option--phone .header-footer__icon {
    color: #4CAF50;
}

.header-footer__dropdown-option--email .header-footer__icon {
    color: #2196F3;
}

/* Overlay to close dropdown */
.header-footer__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 999;
    display: none;
}

.header-footer__overlay--show {
    display: block;
}

/* Responsive design */
@media (max-width: 767.98px) {
    /*  .header-footer__container {
                                                            flex-direction: column;
                                                            gap: 10px;
                                                        } */

    .header-footer__button {
        width: 100%;
        padding: 12px 8px;
    }

    .header-footer__dropdown {
        position: fixed;
        bottom: 52px;
        left: 20px;
        right: 20px;
        transform: none;
        min-width: auto;
    }

    .header-footer__dropdown--show {
        transform: translateY(-5px);
    }

    .header-footer__dropdown::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .header-footer {
        padding: 10px 15px;
    }

    .header-footer__button {
        font-size: 11px;
        padding: 12px 8px;
        min-width: auto;
    }

    body {
        /* padding-bottom: 60px;
        /* More space for mobile */

    }
}

.button-inLeftMenu {
    background: #F1F5F9;
    border: 1px solid #DEE8FF;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #2A2D32 !important;
    font-weight: 700;
}

.button-inLeftMenu:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.3);
}

@media (min-width: 768px) {
    nav#submenuHeader::before {
        content: "";
        background: #a1a1a11a;
        width: 100%;
        position: absolute;
        left: 0;
        display: block;
        height: 1px;
        margin-top: -4px;
    }
}

.navbar-item__dropdown__text--title {
    white-space: nowrap;
}

.navbar-item__dropdown__item {
    width: 100% !important;
}

.mega-menu-content4 {
    display: flex;
}

/* Menu Top Before Section */
.menu-top-before {
    background: linear-gradient(90deg, #185241 0%, #23745d 100%);
    color: white;
    padding: 5px 0;
    font-size: 13px;
    z-index: 1050;
    /* Above sticky header if needed */
    position: relative;
}

.menu-top-before a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
}

.menu-top-before a:hover {
    opacity: 0.8;
    color: white;
}

.menu-top-before .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-toggle-box {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 1px 6px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.lang-toggle-box img {
    height: 16px;
    width: auto;
    border-radius: 2px;
}

.lang-toggle-box .arrow-down {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid white;
    border-bottom: 1.5px solid white;
    transform: rotate(45deg);
    margin-top: -4px;
}

.menu-top-before .divider {
    margin: 0 12px;
    opacity: 0.5;
}

.btn-trial-mobile {
    background: linear-gradient(270deg, #FF6F00 0%, #FFA000 100%);
    color: white !important;
    padding: 5px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hotline-text {
    font-weight: 500;
}

.menu-top-before .navbar-item__drop {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
}

.menu-top-before .navbar-item__drop::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.menu-top-before .navbar-item__drop:hover .navbar-item__dropdown {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    animation: 0.6s ease 0s normal forwards 1 fadein;
    height: fit-content;
}

.menu-top-before .navbar-item__dropdown {
    opacity: 1;
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    width: fit-content;
    height: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0px 6px 12px #4d94ec33;
    border-radius: 4px;
    padding: 10px 0;
    overflow: hidden;
    z-index: 1051;
    cursor: default;
}

.menu-top-before .navbar-item__dropdown__item {
    display: flex;
    padding: 22px 24px;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 4px;
    padding: 4px 10px;
    width: 225px;
}

.menu-top-before .navbar-item__dropdown__item:hover {
    background: #f2f8ff;
}

.menu-top-before .navbar-item__dropdown__item .navbar-item__dropdown__img {
    height: 40px;
    width: 40px;
}

.menu-top-before .navbar-item__dropdown__item .navbar-item__dropdown__text {
    color: #2a2d32;
}

.menu-top-before .navbar-item__dropdown__item .navbar-item__dropdown__text--title {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: bold;
}

.menu-top-before .navbar-item__dropdown__item .navbar-item__dropdown__text--desription {
    font-weight: normal;
    margin: 0;
    color: #2a2d32;
    font-size: 14px;
}

.menu-top-before .navbar-item__dropdown a {
    color: #2a2d32 !important;
}

.menu-top-before .navbar-item__dropdown a:hover {
    opacity: 1;
}
