.custom-header-container {
    position: relative;
    width: 100%;
}

.custom-header-container.has-sticky-behavior .custom-header-wrapper.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    animation: stickySlideDown 0.3s ease-out forwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes stickySlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.custom-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #ffffff; /* Default, overridden by Elementor controls */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-wrap: nowrap;
    gap: 20px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.custom-header-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.custom-header-logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    line-height: 1.2;
}

.custom-header-logo-subtext {
    font-size: 14px;
    color: #666666;
    margin-top: 4px;
}

.custom-header-logo-subtext-2 {
    font-size: 13px;
    color: #888888;
    margin-top: 2px;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #333;
}

.custom-header-nav {
    padding: 10px 20px;
    border-radius: 4px;
}

.custom-header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
}

.custom-header-nav a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.custom-header-nav a:hover {
    color: #0073aa;
}

.custom-header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #0073aa;
}

.contact-item svg,
.contact-item i {
    width: 1em;
    height: 1em;
    fill: currentColor;
    color: currentColor;
    font-size: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .custom-header-wrapper {
        flex-wrap: wrap;
    }
    
    .hamburger-menu {
        display: block;
        order: 2;
    }
    
    .custom-header-contact {
        display: none;
    }
    
    .custom-header-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 15px;
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        box-sizing: border-box;
    }
    
    .custom-header-nav.active {
        display: block;
    }
    
    .custom-header-nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}