/* =============================================
   STICKY HEADER — Eagle Contractors
   - Sticks to top while scrolling
   - Hides top info-bar on scroll
   - Keeps main nav with solid white background
   ============================================= */

/* Sticky wrapper */
.ekit-template-content-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
}

/* ---- Top info-bar (dark bar with phone / social) ---- */
.ekit-template-content-header .elementor-element-692ab185 {
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 1;
}

/* Hide top bar when scrolled */
.ekit-template-content-header.is-scrolled .elementor-element-692ab185 {
    max-height: 0 !important;
    opacity: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* ---- Main nav bar (logo + menu + contact button) ---- */
.ekit-template-content-header .elementor-element-5a95152a {
    background-color: #ffffff !important;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Crisp white + shadow when scrolled */
.ekit-template-content-header.is-scrolled .elementor-element-5a95152a {
    background-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
}
