/* BASE LAYOUT STRUCTURAL STYLES */
.fn-41109781-outer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 9999;
}

.fn-41109781-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 9999px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* LOGO fallback styling */
.fn-41109781-logo-fallback {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    border-radius: 9999px;
    padding: 8px 16px 8px 8px;
}

.fn-41109781-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    width: 28px;
    height: 28px;
    font-size: 14px;
    background-color: #B91C1C;
    color: #ffffff;
}

.fn-41109781-logo-icon svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
}

.fn-41109781-logo-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #000000;
}

.fn-41109781-logo-img {
    max-height: 40px;
    width: auto;
    display: block;
}

/* DESKTOP MENU STRUCTURAL */
.fn-41109781-desktop-nav {
    display: block;
}

.fn-41109781-desktop-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fn-41109781-menu-item {
    margin: 0;
    padding: 0;
    position: relative;
}

.fn-41109781-menu-item a {
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

/* RED HOVER EFFECT FOR TEXTS */
.fn-41109781-desktop-menu .fn-41109781-menu-item > a:hover {
    color: #ef4444 !important;
}

.fn-41109781-desktop-menu .fn-41109781-submenu-item a:hover {
    color: #ef4444 !important;
}

.fn-41109781-mobile-menu .fn-41109781-menu-item a:hover,
.fn-41109781-mobile-menu .fn-41109781-submenu-item a:hover {
    color: #ef4444 !important;
}

/* LINK WRAPPER FOR DROPDOWN INDICATORS */
.fn-41109781-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fn-41109781-submenu-toggle {
    background: none;
    border: none;
    padding: 8px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.fn-41109781-submenu-toggle svg {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    pointer-events: none;
}

/* Rotate indicator on active state */
.fn-41109781-submenu-toggle.fn-active svg {
    transform: rotate(180deg);
}

/* DESKTOP HOVER SUBMENU */
.fn-41109781-desktop-menu .fn-41109781-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 180px;
    list-style: none;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
}

.fn-41109781-desktop-menu .fn-41109781-menu-item:hover .fn-41109781-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.fn-41109781-desktop-menu .fn-41109781-submenu-item {
    margin: 0;
    padding: 0;
}

.fn-41109781-desktop-menu .fn-41109781-submenu-item a {
    display: block;
    padding: 8px 20px;
    font-size: 11px;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.fn-41109781-desktop-menu .fn-41109781-submenu-item a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* CTA BUTTON STRUCTURAL */
.fn-41109781-cta {
    display: inline-block;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

/* HAMBURGER TRIGGER BUTTON */
.fn-41109781-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 40px;
    padding: 12px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
}

.fn-41109781-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* MOBILE DROPDOWN OVERLAY */
.fn-41109781-mobile-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fn-41109781-mobile-menu {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
}

.fn-41109781-mobile-menu .fn-41109781-menu-item {
    width: 100%;
    text-align: center;
}

.fn-41109781-mobile-menu .fn-41109781-menu-item > .fn-41109781-link-wrapper {
    justify-content: center;
}

.fn-41109781-mobile-menu .fn-41109781-menu-item a {
    font-size: 20px;
    font-weight: 600;
}

/* MOBILE SUBMENU ACCORDION */
.fn-41109781-mobile-menu .fn-41109781-submenu {
    display: none;
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.fn-41109781-mobile-menu .fn-41109781-submenu-item a {
    font-size: 16px;
    font-weight: 500;
    padding: 12px;
    display: block;
    opacity: 0.8;
}

.fn-41109781-mobile-cta-wrapper {
    display: flex;
    justify-content: center;
}

.fn-41109781-mobile-cta-wrapper .fn-41109781-cta {
    width: 100%;
    max-width: 250px;
    padding: 12px 24px;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 991px) {
    .fn-41109781-desktop-nav,
    .fn-41109781-cta-container {
        display: none !important;
    }
    
    .fn-41109781-hamburger {
        display: flex;
    }
}

/* HAMBURGER ACTIVE STATE TRANSITIONS */
.fn-41109781-open .fn-41109781-hamburger span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.fn-41109781-open .fn-41109781-hamburger span:nth-child(2) {
    opacity: 0;
}

.fn-41109781-open .fn-41109781-hamburger span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}
