/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Base Styles & Container */
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    /* Keep this to prevent horizontal scroll issues */
}

.sigma-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Contact Bar */
.sigma-top-bar {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

.sigma-contact-info {
    display: flex;
    gap: 30px;
}

.sigma-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.sigma-contact-item:hover {
    color: #cbd5e0;
}

.sigma-social-links {
    display: flex;
    gap: 15px;
}

.sigma-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sigma-social-link:hover {
    background: #8e2157;
    /* Assuming this is your brand accent color */
    transform: translateY(-2px);
}

.sigma-icon {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.sigma-social-link .sigma-icon {
    width: 18px;
    height: 18px;
}

/* Main Header */
.sigma-header {
    position: sticky;
    /* Make it sticky */
    top: 0;
    /* Stick to the top */
    z-index: 99999;
    /* Ensure it stays above other content */
    background: white;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sigma-header .sigma-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

/* Logo */
.sigma-logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.sigma-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sigma-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.sigma-menu>li {
    position: relative;
}

.sigma-menu>li>a {
    color: #1a202c;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    text-transform: uppercase;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: block;
}

.sigma-menu>li>a:hover,
.sigma-menu>li.current-menu-item>a {
    color: #930846;
    /* Accent color */
}

/* Dropdown Menus */
.sigma-menu .sub-menu {
    position: absolute;
    top: calc(100% + 25px);
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.sigma-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sigma-menu .sub-menu li {
    list-style: none;
}

.sigma-menu .sub-menu a {
    display: block;
    padding: 12px 20px;
    color: #1a202c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    text-transform: none;
    transition: all 0.3s ease;
}

.sigma-menu .sub-menu a:hover,
.sigma-menu .sub-menu .current-menu-item>a {
    background: #f7fafc;
    color: #930846;
    padding-left: 25px;
}

/* Multi-level Dropdowns */
.sigma-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.sigma-menu .sub-menu .menu-item-has-children {
    position: relative;
}

/* Header Actions */
.sigma-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Search */
.sigma-search {
    position: relative;
}

.sigma-search-toggle {
    background: none !important;
    border: none !important;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #1a202c !important;
}

.sigma-search-toggle:hover,
.sigma-search-toggle:focus {
    background: #8e2157 !important;
    color: white !important;
}

.sigma-search-toggle:hover svg,
.sigma-search-toggle:focus svg {
    fill: white;
}

.sigma-search-toggle .sigma-icon {
    fill: #1a202c;
    transition: fill 0.3s ease;
}

.sigma-search-toggle:hover .sigma-icon {
    fill: white;
}

.sigma-search-popup {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
    /* Hidden by default, toggled by JS */
}

.sigma-search-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
    /* Show when 'show' class is present */
}

.sigma-search-popup form {
    display: flex;
    gap: 10px;
}

.sigma-search-popup input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
}

.sigma-search-popup button {
    padding: 10px 20px;
    background: #930846;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.sigma-search-popup button:hover {
    background: #7c1d3a;
}

/* Contact Button */
.sigma-contact-btn {
    background: #930846;
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    transition: all 0.3s ease;
}

.sigma-contact-btn:hover {
    background: #7c1d3a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(147, 8, 70, 0.3) !important;
    color: white !important;
}

.sigma-contact-btn:focus {
    outline: none;
    background: #7c1d3a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(147, 8, 70, 0.3) !important;
    color: white !important;
    border: 2px solid #930846 !important;
}

/* Server Locations Globe */
.sigma-server-locations {
    position: relative;
}

.sigma-globe-btn {
    background: #8e2157 !important;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.3rem 0.7rem;
}

.sigma-globe-btn:hover {
    background: #6d1940 !important;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.sigma-globe-icon {
    width: 25px;
    height: 25px;
    fill: white;
}

.sigma-locations-popup {
    position: fixed;
    /* Use fixed for popups that overlay the whole screen */
    top: 116px;
    right: 33px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 25px;
    min-width: 350px;
    max-width: 400px;
    max-height: none;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    pointer-events: none;
    /* No interaction when hidden */
    overflow: visible;
    display: none;
    /* Hidden by default, toggled by JS */
}

.sigma-locations-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    /* Allow interaction when visible */
    display: block;
    /* Show when 'show' class is present */
}

.sigma-locations-popup::before {
    content: "";
    position: absolute;
    top: -9px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid white;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

.sigma-popup-close {
    position: absolute;
    top: 10px !important;
    right: 5px !important;
    background: none !important;
    border: none !important;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    width: 32px;
    height: 32px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    z-index: 10;
}

.sigma-popup-close:hover {
    background: #f5f5f5;
    color: #666;
    transform: scale(1.1);
}

.sigma-popup-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 40px;
    padding-left: 5px;
}

.sigma-popup-title svg {
    width: 22px;
    height: 22px;
    fill: #8e2157;
}

.sigma-popup-content p {
    margin: 0 0 20px 0;
    color: #1a202c;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    padding-left: 5px;
    padding-right: 5px;
}

.sigma-location-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sigma-location-item {
    margin-bottom: 10px;
}

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

.sigma-location-link {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    text-decoration: none;
    color: #1a202c;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    background: #fafafa;
}

.sigma-location-link:hover,
.sigma-location-link.selected {
    background: #8e2157;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 33, 87, 0.25);
    border-color: #8e2157;
}

.sigma-location-link:hover .sigma-location-url,
.sigma-location-link.selected .sigma-location-url {
    opacity: 0.9;
}

.sigma-location-link:hover .sigma-external-icon,
.sigma-location-link.selected .sigma-external-icon {
    opacity: 1;
    transform: translateX(2px);
}

.sigma-flag-icon {
    font-size: 20px;
    margin-right: 14px;
}

.sigma-location-info {
    flex: 1;
}

.sigma-location-name {
    font-weight: 600;
    font-size: 15px;
    display: block;
    margin-bottom: 3px;
}

.sigma-location-url {
    font-size: 12px;
    opacity: 0.7;
    font-family: "Courier New", monospace;
}

.sigma-location-link:hover .sigma-location-url {
    opacity: 0.9;
}

.sigma-external-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    opacity: 0.6;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.sigma-location-link:hover .sigma-external-icon {
    opacity: 1;
    transform: translateX(2px);
}

/* Improved Dropdown Arrows - Font Awesome Style */
.sigma-menu .dropdown-arrow {
    width: 12px;
    height: 12px;
    margin-left: 8px;
    transition: all 0.3s ease;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 1;
    transform: translateY(0px);
    display: inline-block;
    vertical-align: middle;
}

.sigma-menu .menu-item-has-children>a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sigma-menu .menu-item-has-children>a .dropdown-arrow {
    transform: translateY(0px) rotate(0deg);
    margin-left: 8px;
}

.sigma-menu .menu-item-has-children:hover>a .dropdown-arrow {
    transform: translateY(0px) rotate(180deg);
    opacity: 1;
    color: #930846;
}

/* Submenu arrows point right */
.sigma-menu .sub-menu .menu-item-has-children>a .dropdown-arrow {
    transform: translateY(0px) rotate(-90deg);
    margin-left: auto;
    margin-right: 8px;
}

.sigma-menu .sub-menu .menu-item-has-children:hover>a .dropdown-arrow {
    transform: translateY(0px) rotate(90deg);
}

/* Mobile menu arrows */
.sigma-mobile-menu .menu-item-has-children>a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sigma-mobile-menu .menu-item-has-children>a .dropdown-arrow {
    margin-left: auto;
    margin-right: 8px;
    transform: translateY(0px) rotate(0deg);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: #f0f0f0;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.sigma-mobile-menu .menu-item-has-children>a .dropdown-arrow:hover {
    background: #930846;
    color: white;
}

.sigma-mobile-menu .menu-item-has-children.open>a .dropdown-arrow {
    transform: translateY(0px) rotate(180deg);
    background: #930846;
    color: white;
}

/* Mobile Controls Container */
.sigma-mobile-controls {
    display: none;
    /* Hidden by default, shown by media query */
    align-items: center;
    gap: 15px;
}

/* Show mobile controls on mobile devices */
@media (max-width: 768px) {
    .sigma-mobile-controls {
        display: flex;
        visibility: visible;
        opacity: 1;
    }
}

/* Mobile Globe Button - Match Desktop Style */
.sigma-mobile-globe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8e2157;
    border: none;
    cursor: pointer;
    padding: 2px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    width: 45px;
    height: 45px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sigma-mobile-globe-btn:hover {
    background: #6d1940 !important;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.sigma-mobile-globe-btn .sigma-globe-icon {
    width: 22px;
    height: 22px;
    fill: white;
    transition: all 0.3s ease;
}

.sigma-mobile-globe-btn:hover .sigma-globe-icon {
    fill: white;
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.sigma-mobile-toggle {
    display: none;
    /* Hidden by default, shown by media query */
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.sigma-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sigma-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.sigma-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.sigma-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.sigma-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Mobile Menu */
.sigma-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 80px 0 20px 0;
    display: block;
}

/* Hide mobile submenus by default */
.sigma-mobile-menu .sub-menu {
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
    background: rgba(0, 0, 0, 0.02);
}

/* Show submenu when open class is present */
.sigma-mobile-menu .menu-item-has-children.open>.sub-menu {
    display: block;
}

.sigma-mobile-menu .menu-item-has-children>a .dropdown-arrow {
    transition: transform 0.3s ease;
}

.sigma-mobile-menu .menu-item-has-children.open>a .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dark mode support for mobile submenus */
@media (prefers-color-scheme: dark) {
    .sigma-mobile-menu .sub-menu {
        /* background: rgba(255, 255, 255, 0.05); */
        background: white !important;
    }
}

.sigma-mobile-menu.show {
    transform: translateX(0);
}

.sigma-mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sigma-mobile-menu-list li {
    border-bottom: 1px solid #f0f0f0;
}

.sigma-mobile-menu-list a {
    display: block;
    padding: 15px 20px;
    color: #1a202c;
    /* No !important needed here */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sigma-mobile-menu-list a:hover,
.sigma-mobile-menu-list .current-menu-item>a {
    background: #c2c4c5 !important;
    color: #930846 !important;
    padding-left: 30px;
}

.sigma-mobile-contact {
    padding: 20px;
    border-top: 2px solid #f0f0f0;
    margin-top: 20px;
}

.sigma-mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #1a202c;
    text-decoration: none;
    font-size: 14px;
}

/* Additional mobile-specific location link improvements */
@media (max-width: 768px) {

    .sigma-top-bar {
        display: block;
    }

    .sigma-social-links {
        display: none;
    }

    .sigma-mobile-menu .sub-menu {
        padding-left: 1px !important;
    }

    .sigma-nav,
    .sigma-search,
    .sigma-contact-btn,
    .sigma-server-locations {
        display: none;
    }

    .sigma-locations-popup {
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .sigma-locations-popup .sigma-popup-content {
        height: auto;
        min-height: 0;
    }

    .sigma-location-link {
        background-color: #f9f9f9;
        border: 1px solid #f0f0f0;
        border-left: none;
        border-right: none;
        border-radius: 0;
        transition: all 0.3s ease;
        margin-bottom: 0;
        margin-top: 0;
        padding: 12px 10px;
    }

    .sigma-location-item {
        margin-bottom: 8px;
    }

    .sigma-location-link:hover,
    .sigma-location-link:active,
    .sigma-location-link.selected {
        background-color: #8e2157;
        color: white;
        border-color: #8e2157;
        transform: translateY(0);
        box-shadow: none;
    }

    .sigma-location-link:hover .sigma-location-url,
    .sigma-location-link.selected .sigma-location-url {
        color: rgba(255, 255, 255, 0.8);
    }

    .sigma-location-link.highlighted {
        border-color: rgb(142, 33, 87);
        background-color: rgb(248, 245, 247);
        border: 1px solid rgb(142, 33, 87) !important
    }

    .sigma-popup-header {
        padding-top: 10px;
    }

    /* FORCE MOBILE POPUP CENTERING */
    .sigma-locations-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        /* Use only transform for centering */
        margin: 0;
        width: 90vw;
        max-width: 350px;
        min-width: 300px;
        max-height: 80vh;
        z-index: 999999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        border-radius: 12px;
    }

    .sigma-locations-popup.show {
        opacity: 1;
        visibility: visible;
        display: block;
        pointer-events: auto;
        transform: translate(-50%, -50%);
        /* Ensure it stays centered when shown */
    }

    /* Remove scrolling since we have few items */
    .sigma-locations-popup,
    .sigma-locations-popup .sigma-popup-content,
    .sigma-locations-popup .sigma-location-links {
        overflow: visible;
        overflow-y: visible;
        overflow-x: visible;
        height: auto;
        max-height: none;
    }

    /* Prevent zoom on input focus (mobile safari) */
    .sigma-locations-popup * {
        -webkit-text-size-adjust: 100%;
    }

    /* Ensure mobile controls are visible */
    .sigma-mobile-controls,
    .sigma-mobile-toggle,
    .sigma-mobile-globe-btn {
        display: flex;
        /* Use flex display as base */
        visibility: visible;
        opacity: 1;
    }

    .sigma-mobile-toggle {
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
    }

    .elementor-element-c5f9ce0 a img {
        display: none !important;
    }

    /* Force mobile globe button icon to be visible */
    .sigma-mobile-globe-btn .sigma-globe-icon {
        width: 22px;
        height: 22px;
        fill: white;
        display: block;
        visibility: visible;
    }

    /* Force mobile toggle spans to be visible */
    .sigma-mobile-toggle span {
        display: block;
        visibility: visible;
        opacity: 1;
        width: 25px;
        height: 3px;
        background: #4a5568;
    }
}

@media (max-width: 992px) {
    .sigma-container {
        padding: 0 15px;
    }

    .sigma-menu {
        gap: 20px;
    }

    .sigma-contact-info {
        gap: 20px;
    }

    .sigma-contact-item {
        font-size: 13px;
        display: block !important;
         white-space: nowrap;
    }

    .sigma-social-links {
        gap: 10px;
    }
}

/* Ensure all location links have consistent hover styles */
.sigma-location-links .sigma-location-item .sigma-location-link:hover,
.sigma-location-links .sigma-location-item .sigma-location-link.selected {
    background-color: #8e2157;
    color: white;
    border-color: #8e2157;
}

/* Override inline styles applied by JavaScript for all location links on hover */
/* This is a bit aggressive, but might be necessary if JS adds inline styles */
.sigma-location-link[style]:hover,
.sigma-location-link[style].selected {
    background-color: #8e2157 !important;
    color: white !important;
    border-color: #8e2157 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(142, 33, 87, 0.25) !important;
}

/* Target the specific inline style pattern used by the JavaScript if still needed*/
.sigma-location-link[style*="background-color"]:hover {
    background-color: #8e2157 !important;
}

button:focus {
    outline: none;
    background-color: #8e2157;
    /* Use this as default focus */
}

.highlighted {
    border-color: rgb(142, 33, 87);
    background-color: rgb(248, 245, 247);
}

.clear_border_sigma_link {
    border-color: transparent;
    background-color: transparent;
}


/* Dark Mode Support */
@media (prefers-color-scheme: dark) {

    /* Keep header background white, but ensure text is visible */
    .sigma-header {
        background: white;
        /* Keep white for contrast with dark theme */
        color: #2d3748;
        /* Dark text on white background */
    }

    /* Main menu links - keep dark text on white background */
    .sigma-menu>li>a {
        color: #2d3748;
    }

    /* Menu hover and active states */
    .sigma-menu>li>a:hover,
    .sigma-menu>li.current-menu-item>a {
        color: #930846;
    }

    /* Dropdown menu background and text */
    .sigma-menu .sub-menu {
        background: #2d3748;
        border: 1px solid #4a5568;
    }

    .sigma-menu .sub-menu a {
        color: #cbd5e0;
    }

    .sigma-menu .sub-menu a:hover,
    .sigma-menu .sub-menu .current-menu-item>a {
        background: #4a5568;
        color: #f687b3;
    }

    /* Mobile menu */
    .sigma-mobile-menu {
        /* background: #1a202c;
         */
        background: white !important;
        color: black;
    }

    .sigma-mobile-menu-list a {
        color: #e2e8f0;
    }

    .sigma-mobile-menu-list a:hover,
    .sigma-mobile-menu-list .current-menu-item>a {
        background: #2d3748;
        color: #f687b3;
    }

    /* Mobile contact items */
    .sigma-mobile-contact-item {
        color: #e2e8f0;
    }

    /* Search and locations popups */
    .sigma-search-popup {
        background: #2d3748;
        color: white;
        border: 1px solid #4a5568;
    }

    .sigma-search-popup input {
        background: #1a202c;
        color: white;
        border: 2px solid #4a5568;
    }

    .sigma-search-popup input::placeholder {
        color: #a0aec0;
    }

    .sigma-locations-popup {
        background: #2d3748;
        color: white;
        border: 1px solid #4a5568;
    }

    .sigma-popup-title {
        color: #e2e8f0 !important;
    }

    .sigma-popup-content p {
        color: #cbd5e0 !important;
    }

    /* Location links in dark mode */
    .sigma-location-link {
        background: #1a202c;
        color: #e2e8f0;
        border: 1px solid #4a5568;
    }

    .sigma-location-link:hover,
    .sigma-location-link.selected {
        background: #8e2157;
        color: white;
        border-color: #8e2157;
    }

    /* Location name and URL text in dark mode */
    .sigma-location-name {
        color: #e2e8f0;
    }

    .sigma-location-url {
        color: #a0aec0;
    }

    .sigma-location-link:hover .sigma-location-name,
    .sigma-location-link.selected .sigma-location-name {
        color: white;
    }

    .sigma-location-link:hover .sigma-location-url,
    .sigma-location-link.selected .sigma-location-url {
        color: rgba(255, 255, 255, 0.8);
    }

    /* Close button in dark mode */
    .sigma-popup-close {
        color: #cbd5e0;
    }

    .sigma-popup-close:hover {
        background: #4a5568;
        color: #e2e8f0;
    }

    /* Mobile toggle button - keep dark on white background */
    .sigma-mobile-toggle span {
        background: #2d3748;
    }

    /* Search toggle button - keep dark on white background */
    .sigma-search-toggle {
        color: #2d3748;
    }

    .sigma-search-toggle .sigma-icon {
        fill: #2d3748;
    }

    /* Globe icon styling for dark mode */
    .sigma-globe-icon,
    .sigma-mobile-globe-btn .sigma-globe-icon {
        fill: white;
    }

    .sigma-location-link.highlighted {
        background-color: rgb(142, 33, 87);
        border-color: rgb(142, 33, 87);
        border: 1px solid rgb(142, 33, 87) !important;
    }

    /* Contact button text should remain white on colored background */
    .sigma-contact-btn {
        color: white;
    }
}

/* .elementor-element-4e1dd63 a img{
    display: none !important;
} */