.dth-wrapper-ea4de8af {
    font-family: 'Inter', 'Roboto', sans-serif;
    width: 100%;
}
.dth-top-bar-ea4de8af {
    background-color: #F7F9FA;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dth-top-menu-ea4de8af ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}
.dth-top-menu-ea4de8af a {
    font-size: 14px;
    color: #333333;
    text-decoration: none;
}
.dth-top-info-ea4de8af {
    display: flex;
    gap: 20px;
    align-items: center;
}
.dth-info-item-ea4de8af {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #214462;
}
.dth-info-item-ea4de8af .dth-icon {
    color: #E11C09;
    fill: #E11C09;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
}
.dth-phone-ea4de8af {
    color: #E11C09;
}

/* Main Header */
.dth-main-bar-ea4de8af {
    background-color: #FFFFFF;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.dth-logo-ea4de8af {
    width: 15%;
    max-width: 180px;
}
.dth-logo-ea4de8af img {
    max-width: 100%;
    height: auto;
}
.dth-primary-menu-ea4de8af {
    width: 55%;
}
.dth-primary-menu-ea4de8af ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* Submenu Dropdown Fixes */
.dth-primary-menu-ea4de8af ul li {
    position: relative;
}
.dth-primary-menu-ea4de8af ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    z-index: 1000;
}
.dth-primary-menu-ea4de8af ul li:hover > ul.sub-menu {
    display: flex;
}
.dth-primary-menu-ea4de8af ul li ul.sub-menu li {
    width: 100%;
}
.dth-primary-menu-ea4de8af ul li ul.sub-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
}
.dth-primary-menu-ea4de8af ul li ul.sub-menu li a:hover {
    background-color: #f7f9fa;
}

/* Sub-sub menus */
.dth-primary-menu-ea4de8af ul li ul.sub-menu ul.sub-menu {
    top: 0;
    left: 100%;
}

.dth-primary-menu-ea4de8af a {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #214462;
    text-decoration: none;
    transition: color 0.3s;
}
.dth-primary-menu-ea4de8af a:hover {
    color: #E11C09;
}
.dth-ctas-ea4de8af {
    width: 30%;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}
.dth-btn-ea4de8af {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}
.dth-btn-ghost-ea4de8af {
    border: 2px solid #E11C09;
    color: #E11C09;
    background: transparent;
}
.dth-btn-ghost-ea4de8af:hover {
    background: rgba(225, 28, 9, 0.1);
}
.dth-btn-solid-ea4de8af {
    background-color: #E11C09;
    color: #FFFFFF;
    border: 2px solid #E11C09;
}
.dth-btn-solid-ea4de8af:hover {
    background-color: #C01607;
    border-color: #C01607;
    color: #FFFFFF;
}

.dth-hamburger-ea4de8af {
    display: none;
    font-size: 24px;
    color: #E11C09;
    cursor: pointer;
}

.dth-mobile-menu-overlay-ea4de8af {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}
.dth-mobile-menu-drawer-ea4de8af {
    position: fixed;
    top: 0; left: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: left 0.3s ease;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}
.dth-mobile-menu-drawer-ea4de8af.open {
    left: 0;
}
.dth-drawer-header-ea4de8af {
    display: flex;
    justify-content: flex-end;
}
.dth-close-menu-ea4de8af {
    cursor: pointer;
    color: #E11C09;
}
.dth-mobile-menu-drawer-ea4de8af ul {
    list-style: none; margin:0; padding:0; display:flex; flex-direction:column; gap: 15px;
}
.dth-mobile-menu-drawer-ea4de8af a {
    color: #214462; font-weight: 700; text-decoration:none; font-size: 16px;
}

/* Mobile Submenu Dropdown Fixes */
.dth-mobile-menu-drawer-ea4de8af ul.sub-menu {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
    gap: 10px;
}
.dth-mobile-menu-drawer-ea4de8af li.menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dth-mobile-menu-drawer-ea4de8af li.menu-item-has-children > a::after {
    content: '+';
    font-size: 18px;
    font-weight: 400;
}
.dth-mobile-menu-drawer-ea4de8af li.menu-item-has-children.open > a::after {
    content: '-';
}
.dth-mobile-menu-drawer-ea4de8af li.menu-item-has-children.open > ul.sub-menu {
    display: flex;
}
.dth-mobile-menu-drawer-ea4de8af ul.sub-menu a {
    font-size: 14px;
    font-weight: 400;
}

/* Mobile CTA Bar */
.dth-mobile-cta-bar-ea4de8af {
    display: none;
    width: 100%;
}
.dth-mobile-cta-bar-ea4de8af .dth-btn-ea4de8af {
    display: block;
    width: 100%;
    border-radius: 0;
    padding: 15px;
    font-size: 18px;
    border-left: none;
    border-right: none;
}

/* Tablet Optimization (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .dth-primary-menu-ea4de8af ul {
        gap: 15px;
    }
    .dth-ctas-ea4de8af {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }
    .dth-btn-ea4de8af {
        padding: 8px 15px;
        font-size: 12px;
        width: 100%;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .dth-top-bar-ea4de8af {
        justify-content: center;
    }
    .dth-top-menu-ea4de8af, .dth-info-location-ea4de8af {
        display: none;
    }
    .dth-main-bar-ea4de8af {
        flex-wrap: wrap;
        padding: 10px 15px;
    }
    .dth-hamburger-ea4de8af {
        display: block;
        width: 20%;
    }
    .dth-logo-ea4de8af {
        width: 50%;
        text-align: center;
    }
    .dth-logo-ea4de8af img {
        max-width: 120px;
    }
    .dth-primary-menu-ea4de8af {
        display: none;
    }
    .dth-ctas-ea4de8af {
        width: 30%;
        justify-content: flex-end;
    }
    .dth-ctas-ea4de8af .dth-btn-ghost-ea4de8af {
        display: none;
    }
    .dth-ctas-ea4de8af .dth-btn-solid-ea4de8af {
        padding: 8px 10px;
        font-size: 11px;
    }
    .dth-mobile-cta-bar-ea4de8af {
        display: block;
    }
}