/**
 * XPND Header Styles - Premium Navigation with Mega Menu
 *
 * @package XPND
 * @since 2.0.0
 */

/* ==========================================================================
   HEADER - Main Styles
   ========================================================================== */
.xpnd-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Scrolled State */
.xpnd-header.scrolled .header-inner {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

/* ==========================================================================
   LOGO
   ========================================================================== */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.header-logo img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.02);
}

.header-logo .logo-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    background: linear-gradient(135deg, #1976D2 0%, #2E7D32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   DESKTOP NAVIGATION
   ========================================================================== */
.header-nav {
    display: none;
    flex: 1;
    justify-content: center;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #1976D2;
    background: rgba(25, 118, 210, 0.06);
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.nav-item.has-mega-menu:hover .dropdown-arrow,
.nav-item.has-mega-menu.mega-menu-active .dropdown-arrow,
.nav-item.has-dropdown:hover .dropdown-arrow,
.nav-item.has-dropdown.dropdown-active .dropdown-arrow {
    transform: rotate(180deg);
}

/* ==========================================================================
   INSIGHTS DROPDOWN - For Insights Menu
   ========================================================================== */
.nav-item.has-dropdown {
    position: relative;
}

.insights-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    padding-top: 12px;
    z-index: 1000;
}

.nav-item.has-dropdown.dropdown-active .insights-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.insights-dropdown-inner {
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.06) 0%, rgba(46, 125, 50, 0.06) 100%);
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1976D2 0%, #2E7D32 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.dropdown-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.dropdown-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #6b7280;
}

/* ==========================================================================
   MEGA MENU - Full Width
   ========================================================================== */
.nav-item.has-mega-menu {
    position: static;
}

.mega-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

/* Show mega menu via JavaScript class (more reliable than CSS :hover) */
.nav-item.has-mega-menu.mega-menu-active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    background: #fff;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 32px 0;
}

.mega-menu-column {
    padding: 0 10px;
    border-right: 1px solid #f1f5f9;
}

.mega-menu-column:last-child {
    border-right: none;
}

/* Mega Menu Heading */
.mega-menu-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    margin: -8px -8px 16px -8px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mega-menu-heading:hover {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.06) 0%, rgba(46, 125, 50, 0.06) 100%);
}

.mega-menu-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1976D2 0%, #2E7D32 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.mega-menu-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.mega-menu-heading-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.mega-menu-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.mega-menu-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #6b7280;
}

.mega-menu-arrow {
    color: #9ca3af;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mega-menu-heading:hover .mega-menu-arrow {
    color: #1976D2;
    transform: translateX(4px);
}

/* Mega Menu Links */
.mega-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-links li {
    margin: 0;
}

.mega-menu-links a {
    display: block;
    padding: 5px 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mega-menu-links a:hover {
    color: #1976D2;
    background: rgba(25, 118, 210, 0.06);
    padding-left: 20px;
}

/* Mega Menu Footer */
.mega-menu-footer {
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.mega-menu-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.mega-menu-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mega-menu-cta span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #6b7280;
}

.mega-menu-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1976D2 0%, #2E7D32 100%);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mega-menu-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.35);
    color: #fff;
}

.mega-menu-all-services {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1976D2;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-menu-all-services:hover {
    color: #2E7D32;
}

.mega-menu-all-services svg {
    transition: transform 0.2s ease;
}

.mega-menu-all-services:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   HEADER ACTIONS
   ========================================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-contact {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

@media (min-width: 1200px) {
    .header-contact {
        display: flex;
    }
}

.header-contact:hover {
    color: #1976D2;
    background: rgba(25, 118, 210, 0.06);
}

.header-contact svg {
    color: #1976D2;
}

.header-cta-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1976D2 0%, #2E7D32 100%);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

@media (min-width: 768px) {
    .header-cta-btn {
        display: flex;
    }
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
    color: #fff;
}

.header-cta-btn svg {
    transition: transform 0.2s ease;
}

.header-cta-btn:hover svg {
    transform: translateX(3px);
}

/* ==========================================================================
   MOBILE TOGGLE
   ========================================================================== */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 5px;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle:hover {
    background: rgba(25, 118, 210, 0.06);
}

.toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Active State */
.mobile-toggle.active .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-inner {
    padding: 24px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav {
    flex: 1;
}

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

.mobile-nav-item {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-link {
    display: block;
    flex: 1;
    padding: 18px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #1976D2;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-dropdown-toggle:hover {
    background: rgba(25, 118, 210, 0.06);
}

.mobile-dropdown-toggle svg {
    color: #6b7280;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* Mobile Services Menu */
.mobile-services-menu {
    display: none;
    padding: 0 0 20px 0;
}

.mobile-nav-item.has-children.active .mobile-services-menu {
    display: block;
}

.mobile-service-group {
    margin-bottom: 20px;
}

.mobile-service-group:last-child {
    margin-bottom: 0;
}

.mobile-service-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.06) 0%, rgba(46, 125, 50, 0.06) 100%);
    border-radius: 10px;
    margin-bottom: 8px;
}

.mobile-service-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1976D2 0%, #2E7D32 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.mobile-service-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.mobile-service-heading span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.mobile-service-links {
    list-style: none;
    margin: 0;
    padding: 0 0 0 48px;
}

.mobile-service-links li {
    margin: 0;
}

.mobile-service-links a {
    display: block;
    padding: 10px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-service-links a:hover {
    color: #1976D2;
    background: rgba(25, 118, 210, 0.06);
}

/* Mobile Dropdown Menu (for Insights) */
.mobile-dropdown-menu {
    display: none;
    padding: 8px 0 16px 0;
}

.mobile-nav-item.has-children.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

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

.mobile-dropdown-item:hover {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.06) 0%, rgba(46, 125, 50, 0.06) 100%);
}

.mobile-dropdown-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1976D2 0%, #2E7D32 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.mobile-dropdown-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.mobile-dropdown-item span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}

.mobile-dropdown-item:hover span {
    color: #1976D2;
}

/* Legacy dropdown styles */
.mobile-dropdown {
    list-style: none;
    margin: 0;
    padding: 0 0 16px 16px;
    display: none;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown-link {
    display: block;
    padding: 12px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-dropdown-link:hover {
    color: #1976D2;
    background: rgba(25, 118, 210, 0.06);
}

/* Mobile CTA */
.mobile-cta {
    padding: 24px 0;
    border-top: 1px solid #f1f5f9;
    margin-top: 24px;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1976D2 0%, #2E7D32 100%);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
    color: #fff;
}

/* Mobile Contact */
.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-contact-item:hover {
    background: rgba(25, 118, 210, 0.06);
    color: #1976D2;
}

.mobile-contact-item svg {
    color: #1976D2;
    flex-shrink: 0;
}

/* ==========================================================================
   BODY PADDING FOR FIXED HEADER
   ========================================================================== */
body {
    padding-top: 80px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-menu-column:nth-child(2) {
        border-right: none;
    }

    .mega-menu-column:nth-child(3) {
        border-top: 1px solid #f1f5f9;
        padding-top: 24px;
    }

    .mega-menu-column:nth-child(4) {
        border-top: 1px solid #f1f5f9;
        padding-top: 24px;
    }
}

@media (max-width: 767px) {
    .header-content {
        height: 70px;
    }

    .header-logo img {
        height: 40px;
    }

    .mobile-menu {
        top: 70px;
    }

    .mega-menu {
        top: 70px;
    }

    body {
        padding-top: 70px;
    }
}

/* ==========================================================================
   OVERLAY
   ========================================================================== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* ==========================================================================
   LOCATIONS DROPDOWN - Custom Component
   ========================================================================== */
.locations-dropdown {
    position: relative;
    display: inline-block;
}

.locations-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.locations-dropdown-toggle:hover {
    color: #1976D2;
    background: rgba(25, 118, 210, 0.06);
}

.locations-dropdown-toggle svg {
    flex-shrink: 0;
}

.locations-dropdown-toggle .dropdown-arrow {
    transition: transform 0.2s ease;
}

.locations-dropdown.active .locations-dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.locations-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 320px;
    max-width: 380px;
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 1000;
    margin-top: 12px;
    overflow: hidden;
}

.locations-dropdown.active .locations-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Dropdown Header */
.locations-dropdown-menu .dropdown-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.04) 0%, rgba(46, 125, 50, 0.04) 100%);
    border-bottom: 1px solid #f1f5f9;
}

.locations-dropdown-menu .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1976D2;
    text-decoration: none;
    transition: all 0.2s ease;
}

.locations-dropdown-menu .view-all-link:hover {
    color: #2E7D32;
}

.locations-dropdown-menu .view-all-link svg {
    transition: transform 0.2s ease;
}

.locations-dropdown-menu .view-all-link:hover svg {
    transform: translateX(4px);
}

/* Dropdown Sections */
.locations-dropdown-menu .dropdown-section {
    padding: 16px 20px;
}

.locations-dropdown-menu .dropdown-hq {
    border-bottom: 1px solid #f1f5f9;
}

.locations-dropdown-menu .section-label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    margin-bottom: 12px;
}

/* Location Items */
.locations-dropdown-menu .location-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.locations-dropdown-menu .location-item:last-child {
    margin-bottom: 0;
}

.locations-dropdown-menu .location-item:hover {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.06) 0%, rgba(46, 125, 50, 0.06) 100%);
}

.locations-dropdown-menu .location-hq {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.08) 0%, rgba(46, 125, 50, 0.08) 100%);
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.locations-dropdown-menu .location-hq:hover {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.12) 0%, rgba(46, 125, 50, 0.12) 100%);
}

.locations-dropdown-menu .location-city {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.locations-dropdown-menu .location-region {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #6b7280;
}

/* Branches List */
.locations-dropdown-menu .branches-list {
    display: flex;
    flex-direction: column;
}

/* Nav Menu Locations Submenu */
.locations-submenu {
    min-width: 260px;
}

.locations-submenu .menu-item-all-locations a {
    font-weight: 600;
    color: #1976D2;
}

.locations-submenu .menu-item-divider {
    padding: 8px 16px;
    pointer-events: none;
}

.locations-submenu .menu-item-divider span {
    display: block;
    height: 1px;
    background: #f1f5f9;
}

.locations-submenu .menu-item-location a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.locations-submenu .location-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(135deg, #1976D2 0%, #2E7D32 100%);
    border-radius: 4px;
}

.locations-submenu .menu-item-hq a {
    font-weight: 600;
}

/* Mobile Locations Dropdown */
.mobile-locations-menu {
    display: none;
    padding: 8px 0 16px 0;
}

.mobile-nav-item.has-children.active .mobile-locations-menu {
    display: block;
}

.mobile-locations-menu .section-label {
    display: block;
    padding: 8px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
}

.mobile-location-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin: 0 8px 4px 8px;
}

.mobile-location-item:hover {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.06) 0%, rgba(46, 125, 50, 0.06) 100%);
}

.mobile-location-item.location-hq {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.08) 0%, rgba(46, 125, 50, 0.08) 100%);
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.mobile-location-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-location-city {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.mobile-location-region {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #6b7280;
}

.mobile-location-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(135deg, #1976D2 0%, #2E7D32 100%);
    border-radius: 6px;
}

.mobile-view-all-locations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 8px 0 8px;
    padding: 14px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1976D2;
    text-decoration: none;
    background: rgba(25, 118, 210, 0.06);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-view-all-locations:hover {
    background: rgba(25, 118, 210, 0.1);
    color: #2E7D32;
}
