/* RESET ALL DEFAULTS INSIDE HEADER */
.egc-header * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* HEADER CONTAINER */
.egc-header {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: 100px;
    background: white;

    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;

    padding: 0 40px;
    position: relative;
    z-index: 99999;
}

/* LEFT — LOGO + TITLE */
.header-left {
    display: flex !important;
    align-items: center !important;
    gap: 15px;
    text-decoration: none !important;   /* remove underline */
}

.egc-logo {
    width: 87px;
    height: 83px;
    object-fit: contain;
}

.egc-title {
    font-size: 24px;
    font-weight: 600;
    color: #333 !important;    /* FIX: Always dark */
    display: inline-block;
    text-decoration: none !important;   /* remove underline */
}

/* RIGHT — CONTACT BUTTON + MENU ICON */
.header-right {
    display: flex !important;
    align-items: center !important;
    gap: 25px;
}

/* CONTACT BUTTON */
.contact-btn {
    padding: 8px 22px;
    border: 1px solid #6a50ff;
    border-radius: 6px;
    color: #6a50ff !important;
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
    background: transparent;
}

.contact-btn:hover {
    background: #6a50ff;
    color: white !important;
}

/* MENU BUTTON */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-icon {
    width: 50px;        /* FIX: Smaller, consistent, no distortion */
    height: 50px;
    object-fit: contain;
}
