/* ============================================================
   EIT SHARED HEADER — Navbar, Subnav, Mega Menu, Mobile Menu
   Used by: index-test.php, index-detail.php, and future redesigned pages
   ============================================================ */

.eit-container {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================================
   MAIN NAVBAR
   ============================================================ */
.eit-navbar {
    background: #ffffff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
}
.eit-navbar .eit-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.eit-nav-logo img {
    height: 52px;
    width: auto;
}
.eit-nav-search {
    flex: 1;
    max-width: 660px;
    margin: 0 32px;
    position: relative;
}
.eit-nav-search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: calc(100% - 8px);
    border: none;
    background: #dbeafe;
    color: #1e40af;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
    z-index: 2;
}
.eit-nav-search-btn:hover {
    background: #1e40af;
    color: #fff;
}
.eit-nav-search input {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    background: #f8fafc;
    color: #1e293b;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.eit-nav-search input::placeholder { color: #94a3b8; }
.eit-nav-search input:focus {
    background: #fff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
.eit-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.eit-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    box-sizing: border-box;
    vertical-align: middle;
}
.eit-nav-btn-red {
    position: relative;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: #fff;
    border-radius: 24px;
    padding: 9px 24px;
    box-shadow: 0 4px 14px rgba(185,28,28,.45), inset 0 1px 0 rgba(255,255,255,.22);
    text-shadow: 0 1px 1px rgba(0,0,0,.18);
    overflow: hidden;
    font-weight: 800;
    letter-spacing: .2px;
    animation: eitNavBtnPulse 2.4s ease-in-out infinite;
}
.eit-nav-btn-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-22deg);
    animation: eitNavBtnShimmer 3.2s ease-in-out infinite;
    pointer-events: none;
}
.eit-nav-btn-red:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(185,28,28,.62), inset 0 1px 0 rgba(255,255,255,.32);
    filter: brightness(1.08);
    animation-play-state: paused;
}
@keyframes eitNavBtnPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(185,28,28,.45),  inset 0 1px 0 rgba(255,255,255,.22); }
    50%      { box-shadow: 0 4px 22px rgba(185,28,28,.75),  inset 0 1px 0 rgba(255,255,255,.22); }
}
@keyframes eitNavBtnShimmer {
    0%, 55%, 100% { left: -75%; }
    80%           { left: 125%; }
}
.eit-nav-btn-blue {
    background: #2563eb;
    color: #fff;
    border-radius: 24px;
}
.eit-nav-btn-blue:hover { background: #1d4ed8; }
.eit-nav-btn-outline {
    background: transparent;
    color: #1a2b4a;
    border-color: #cbd5e1;
    border-radius: 24px;
}
.eit-nav-btn-outline:hover {
    border-color: #1a2b4a;
    background: #f1f5f9;
}

/* Hamburger */
.eit-hamburger {
    display: none;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #1a2b4a;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background .15s, color .15s;
}
.eit-hamburger i.fa-bars {
    font-size: 22px;
}
.eit-hamburger-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.eit-hamburger:hover,
.eit-hamburger:active {
    background: #f1f5f9;
}

/* ============================================================
   MOBILE SEARCH BAR (below navbar)
   ============================================================ */
.eit-mobile-search {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 16px;
    position: relative;
    z-index: 950;
}
.eit-mobile-search-row {
    display: flex;
    gap: 8px;
    max-width: 640px;
    margin: 0 auto;
    align-items: stretch;
}
.eit-mobile-search-row form {
    flex: 1;
    min-width: 0;
}
.eit-mobile-search form {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}
.eit-mobile-register-btn {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: #fff !important;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .3px;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 3px 10px rgba(185,28,28,.32);
    transition: filter .2s, transform .2s;
    text-transform: uppercase;
}
.eit-mobile-register-btn:hover,
.eit-mobile-register-btn:active {
    color: #fff !important;
    filter: brightness(1.08);
    transform: translateY(-1px);
}
/* Blue "Sign In" shown next to the red mobile Register Free button
   (logged-out only). Filled blue gradient to pair with the red button.
   Hidden on desktop; revealed in the <=992px media query. */
.eit-mobile-signin-btn {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    min-height: 36px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #fff !important;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .3px;
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(30,64,175,.32);
    transition: filter .2s, transform .2s;
}
.eit-mobile-signin-btn:hover,
.eit-mobile-signin-btn:active {
    color: #fff !important;
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.eit-mobile-search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: calc(100% - 8px);
    border: none;
    background: #dbeafe;
    color: #1e40af;
    font-size: 15px;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
    z-index: 2;
}
.eit-mobile-search-btn:hover {
    background: #1e40af;
    color: #fff;
}

/* ── Mobile Toll Free Bar ── */
.eit-mobile-tollfree {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f1f5fb 0%, #e2eaf6 100%);
    border-bottom: 1px solid #d1ddec;
    color: #1e3a5f !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
    transition: background .2s, transform .15s;
    position: relative;
    z-index: 940;
}
.eit-mobile-tollfree:hover,
.eit-mobile-tollfree:active {
    background: linear-gradient(135deg, #e2eaf6 0%, #cbd9ec 100%);
    color: #1e3a5f !important;
}
.eit-mobile-tollfree:active {
    transform: scale(.99);
}
.eit-mobile-tollfree-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    box-shadow: 0 3px 8px rgba(30,64,175,.32);
    flex-shrink: 0;
}
.eit-mobile-tollfree-label {
    color: #64748b;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .6px;
}
.eit-mobile-tollfree-num {
    color: #1e3a5f;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .2px;
}
@media (max-width: 480px) {
    .eit-mobile-tollfree {
        gap: 8px;
        padding: 8px 12px;
        flex-wrap: wrap;
    }
    .eit-mobile-tollfree-label {
        font-size: 11px;
    }
    .eit-mobile-tollfree-num {
        font-size: 14px;
    }
}
.eit-mobile-search input {
    width: 100%;
    padding: 12px 48px 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    background: #f8fafc;
    color: #1e293b;
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.eit-mobile-search input::placeholder { color: #94a3b8; }
.eit-mobile-search input:focus {
    background: #fff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}

/* ============================================================
   SUB NAVIGATION
   ============================================================ */
.eit-subnav {
    background: #f8fafc;
    position: relative;
    z-index: 900;
    border-bottom: 1px solid #e2e8f0;
}
.eit-subnav .eit-container {
    display: flex;
    align-items: center;
    gap: 0;
}
.eit-subnav > .eit-container > a,
.eit-subnav-item > a {
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 16px;
    white-space: nowrap;
    transition: all .2s;
    border-bottom: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.eit-subnav > .eit-container > a:hover,
.eit-subnav > .eit-container > a.active,
.eit-subnav-item:hover > a {
    color: #1a2b4a;
    border-bottom-color: #dc2626;
}
.eit-subnav-sell {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    padding: 7px 22px !important;
    margin: 0 6px !important;
    background: transparent !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: .4px;
    border-bottom: none !important;
    transition: filter .2s ease, transform .2s ease !important;
    z-index: 0;
}
.eit-subnav-sell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,#10b981 0%,#059669 100%);
    transform: skewX(-14deg);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(5,150,105,.32);
    z-index: -1;
    transition: filter .2s ease, box-shadow .2s ease;
}
.eit-subnav-sell::after {
    content: '$  $  $  $  $  $  $  $';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    transform: skewX(-14deg);
    color: rgba(255,255,255,0);
    font-size: 18px;
    font-weight: 900;
    overflow: hidden;
    border-radius: 4px;
    z-index: -1;
    transition: color .4s ease;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 2px;
}
.eit-subnav-sell:hover {
    color: #fff !important;
    transform: translateY(-1px);
    border-bottom: none !important;
}
.eit-subnav-sell:hover::before {
    filter: brightness(1.08);
    box-shadow: 0 6px 18px rgba(5,150,105,.45);
}
.eit-subnav-sell:hover::after {
    color: rgba(255,255,255,.22);
}
.eit-subnav-item > a .fa-caret-down {
    font-size: 11px;
    opacity: .6;
    transition: transform .2s;
}
.eit-subnav-item:hover > a .fa-caret-down {
    transform: rotate(180deg);
    opacity: 1;
}

/* ── Standard dropdown ── */
.eit-subnav-item {
    position: relative;
}
.eit-subnav-dd {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 36px rgba(0,0,0,.15);
    padding: 8px 0;
    z-index: 910;
}
.eit-subnav-item:hover .eit-subnav-dd {
    display: block;
}
.eit-subnav-dd a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #334155;
    font-weight: 400;
    border-bottom: none;
    transition: all .15s;
}
.eit-subnav-dd a:hover {
    background: #f1f5f9;
    color: #1a2b4a;
    padding-left: 24px;
}
.eit-subnav-dd-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 4px 12px;
}

/* ── Need Help (right-aligned) ── */
.eit-subnav-help {
    margin-left: auto;
}
.eit-subnav-help > a {
    color: #1a2b4a !important;
    font-weight: 600 !important;
}
.eit-subnav-help > a i.fa-life-ring {
    color: #dc2626;
    margin-right: 2px;
    font-size: 14px;
}
.eit-help-panel {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 320px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 16px 48px rgba(15,23,42,.18);
    padding: 22px 22px 20px;
    z-index: 910;
    border-top: 3px solid #dc2626;
}
.eit-subnav-help:hover .eit-help-panel { display: block; }
.eit-help-panel-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 4px;
}
.eit-help-panel-subtitle {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 16px;
}
.eit-help-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}
.eit-help-item:last-child { border-bottom: none; }
.eit-help-item-icon {
    width: 36px;
    height: 36px;
    background: #fef2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 15px;
    flex-shrink: 0;
}
.eit-help-item-text {
    flex: 1;
    min-width: 0;
}
.eit-help-item-label {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}
.eit-help-item-value {
    font-size: 13px;
    font-weight: 600;
    color: #1a2b4a;
    word-break: break-word;
}
.eit-help-item-value a {
    color: #1a2b4a;
    transition: color .15s;
}
.eit-help-item-value a:hover { color: #dc2626; }

/* ============================================================
   MEGA MENU (Search)
   ============================================================ */
.eit-subnav-mega-parent {
    position: static;
}
.eit-mega-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 12px 48px rgba(0,0,0,.12);
    z-index: 920;
}
.eit-subnav-mega-parent:hover .eit-mega-wrapper {
    display: block;
}
.eit-mega {
    max-width: 1540px;
    margin: 0 auto;
    padding: 28px 24px 20px;
    display: flex;
    gap: 0;
}
.eit-mega-left {
    flex: 0 0 520px;
    border-right: 1px solid #e2e8f0;
    padding-right: 28px;
}
.eit-mega-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.eit-mega-heading-icon {
    width: 40px;
    height: 40px;
    background: #dc2626;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.eit-mega-heading-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
.eit-mega-heading-text span {
    font-size: 12px;
    color: #94a3b8;
}
.eit-mega-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.eit-mega-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background .15s;
    text-decoration: none;
}
.eit-mega-card:hover {
    background: #f1f5f9;
}
.eit-mega-card-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 15px;
    flex-shrink: 0;
}
.eit-mega-card:hover .eit-mega-card-icon {
    background: #e0e7ff;
    color: #3b5998;
}
.eit-mega-card-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}
.eit-mega-card-text span {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.3;
}
.eit-mega-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-size: 13px;
}
.eit-mega-bottom a {
    color: #dc2626;
    font-weight: 600;
    font-size: 13px;
}
.eit-mega-bottom span {
    color: #94a3b8;
}
.eit-mega-right {
    flex: 1;
    padding-left: 28px;
    display: flex;
    gap: 0;
}
.eit-mega-col {
    flex: 1;
    min-width: 0;
}
.eit-mega-col-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    padding: 0 12px 8px;
    margin-bottom: 4px;
    border-bottom: 1px solid #f1f5f9;
}
.eit-mega-col a {
    display: block;
    padding: 7px 12px;
    font-size: 13px;
    color: #475569;
    border-radius: 4px;
    transition: all .15s;
}
.eit-mega-col a:hover {
    background: #f1f5f9;
    color: #1e293b;
}
.eit-mega-col a i {
    margin-right: 6px;
    width: 14px;
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
}

/* ============================================================
   MOBILE MENU (full-screen overlay)
   ============================================================ */
.eit-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a2b4a;
    z-index: 9999;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}
.eit-mobile-menu.open { display: flex; }
.eit-mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    margin-bottom: 16px;
}
.eit-mobile-menu a {
    color: #fff;
    font-size: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    display: block;
}
.eit-mob-section {
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.eit-mob-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 14px 0;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}
.eit-mob-section-title i {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    transition: transform .25s;
}
.eit-mob-section.open .eit-mob-section-title i {
    transform: rotate(180deg);
}
.eit-mob-section-links {
    display: none;
    padding-bottom: 8px;
}
.eit-mob-section.open .eit-mob-section-links {
    display: block;
}
.eit-mob-section-links a {
    display: block;
    padding: 10px 0 10px 16px;
    font-size: 14px;
    color: rgba(255,255,255,.7);
    border-bottom: none;
}
.eit-mob-section-links a:hover,
.eit-mob-section-links a:active {
    color: #fff;
}
.eit-mobile-sell-btn {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 16px 0 6px !important;
    padding: 14px 24px !important;
    background: transparent !important;
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: filter .2s, transform .2s !important;
    z-index: 0;
    width: 100%;
}
.eit-mobile-sell-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,#10b981 0%,#059669 100%);
    transform: skewX(-10deg);
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(5,150,105,.32);
    z-index: -1;
    transition: filter .2s ease, box-shadow .2s ease;
}
.eit-mobile-sell-btn::after {
    content: '$   $   $   $   $   $   $   $   $   $';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    transform: skewX(-10deg);
    color: rgba(255,255,255,.16);
    font-size: 22px;
    font-weight: 900;
    overflow: hidden;
    border-radius: 6px;
    z-index: -1;
    transition: color .3s ease;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 4px;
}
.eit-mobile-sell-btn:hover,
.eit-mobile-sell-btn:active {
    color: #fff !important;
    transform: translateY(-1px);
}
.eit-mobile-sell-btn:hover::before,
.eit-mobile-sell-btn:active::before {
    filter: brightness(1.08);
    box-shadow: 0 6px 18px rgba(5,150,105,.45);
}
.eit-mobile-sell-btn:hover::after,
.eit-mobile-sell-btn:active::after {
    color: rgba(255,255,255,.32);
}
.eit-mobile-menu-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.eit-mobile-menu-actions a {
    text-align: center;
    padding: 13px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    font-size: 14px;
}

/* ============================================================
   RESPONSIVE (header components only)
   ============================================================ */
@media (max-width: 992px) {
    .eit-nav-search { display: none; }
    .eit-nav-actions .eit-nav-btn { display: none; }
    .eit-hamburger { display: inline-flex; }
    .eit-mobile-register-btn { display: inline-flex; }
    .eit-mobile-signin-btn { display: inline-flex; }
    .eit-topbar-right { display: none; }
    .eit-subnav { display: none; }
    .eit-mobile-search { display: block; }
    .eit-mobile-tollfree { display: flex; }
}

@media (max-width: 768px) {
    .eit-topbar .eit-container { flex-direction: column; gap: 4px; text-align: center; }
    .eit-topbar-left { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

@media (max-width: 480px) {
    .eit-container { padding: 0 16px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.eit-footer {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #dbeafe;
    padding: 60px 0 0;
}
.eit-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.3fr 1.2fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}
.eit-footer-grid .eit-footer-col h4 {
    font-size: 13px;
    letter-spacing: .4px;
}
.eit-footer-grid .eit-footer-col a {
    font-size: 13px;
    padding: 4px 0;
}
.eit-footer-brand p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-top: 16px;
}
.eit-footer-brand img {
    height: 36px;
}
.eit-footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: .3px;
}
.eit-footer-col a {
    display: block;
    color: #dbeafe;
    font-size: 14px;
    padding: 5px 0;
    transition: color .2s;
}
.eit-footer-col a:hover { color: #fff; }
.eit-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}
.eit-footer-contact-item i {
    color: #fbbf24;
    width: 18px;
    text-align: center;
    margin-top: 3px;
}
.eit-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}
.eit-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    padding: 0;
    transition: all .2s;
}
.eit-footer-social a:hover {
    background: #fff;
    border-color: #fff;
    color: #1e40af;
}
.eit-footer-social a svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.eit-footer-categories {
    border-top: 1px solid rgba(255,255,255,.18);
    padding: 32px 0 28px;
}
.eit-footer-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.eit-footer-cat-col h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.22);
}
.eit-footer-cat-col a {
    display: block;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 0;
    transition: color .15s, padding-left .2s;
    border-left: 2px solid transparent;
    padding-left: 0;
}
.eit-footer-cat-col a:hover {
    color: #fff;
    padding-left: 8px;
    border-left-color: #fbbf24;
}
@media (max-width: 768px) {
    .eit-footer-categories-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
    .eit-footer-categories-grid { grid-template-columns: 1fr; gap: 18px; }
    .eit-footer-categories { padding: 24px 0 20px; }
}

.eit-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.18);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #cbd5e1;
}

/* Footer responsive */
@media (max-width: 1200px) {
    .eit-footer-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}
@media (max-width: 992px) {
    .eit-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 600px) {
    .eit-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
    .eit-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
