/* ═══════════════════════════════════════════════════
   Shivalik Header-Footer Templates – Shared CSS
   ═══════════════════════════════════════════════════ */

/* ── Base / Reset ── */
.shf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.shf-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.shf-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all .3s;
}
.shf-sticky {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* ══════════════════════════════════════════════════
   HEADER 1 – Classic Top Bar
   ══════════════════════════════════════════════════ */
.shf1-topbar {
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,.85);
}
.shf1-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.shf1-topbar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.shf1-topbar-left span { display: flex; align-items: center; gap: 6px; }
.shf1-topbar-left i { font-size: 11px; }

/* Ticker */
.shf1-topbar-ticker {
    overflow: hidden;
    max-width: 380px;
    white-space: nowrap;
}
.shf-ticker-track {
    display: inline-block;
    animation: shf-ticker 18s linear infinite;
}
@keyframes shf-ticker {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.shf1-header {
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    padding: 14px 0;
}
.shf1-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.shf1-logo img { display: block; }
.shf1-logo-text {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.shf1-logo-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a2744;
    letter-spacing: -.3px;
}
.shf1-logo-tag { font-size: 11px; color: #888; letter-spacing: .5px; }

.shf1-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.shf1-nav-link {
    padding: 8px 14px;
    color: #1a2744;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: background .2s, color .2s;
}
.shf1-nav-link:hover { background: #f3f4f6; }
.shf1-cta {
    color: #fff !important;
    border-radius: 5px;
    font-weight: 600;
}
.shf1-cta:hover { opacity: .9; }

/* ══════════════════════════════════════════════════
   HEADER 2 – Split Nav + Search
   ══════════════════════════════════════════════════ */
.shf2-topstrip {
    padding: 7px 0;
    font-size: 13px;
}
.shf2-topstrip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,255,255,.8);
}
.shf2-util { display: flex; align-items: center; gap: 12px; }
.shf2-portal-link {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}
.shf2-portal-link:hover { color: #c9a84c; }
.shf2-cta {
    padding: 5px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #1a2744;
    text-decoration: none;
    transition: opacity .2s;
}
.shf2-cta:hover { opacity: .85; }

.shf2-header { padding: 16px 0; box-shadow: 0 2px 10px rgba(0,0,0,.07); }
.shf2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.shf2-logo img { display: block; }
.shf2-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #1a2744;
    text-decoration: none;
}
.shf2-nav { display: flex; gap: 2px; }
.shf2-nav-link {
    padding: 8px 13px;
    color: #1a2744;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: background .2s;
}
.shf2-nav-link:hover { background: #f3f4f6; }

.shf2-actions { display: flex; align-items: center; gap: 10px; position: relative; }
.shf2-search-btn {
    background: none;
    border: 1px solid #e5e7eb;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: #1a2744;
    font-size: 14px;
    transition: background .2s;
}
.shf2-search-btn:hover { background: #f3f4f6; }
.shf2-search-box {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 280px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.shf2-search-box input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    color: #1a2744;
    background: transparent;
}
.shf2-search-btn:focus + .shf2-search-box,
.shf2-search-box:hover { display: flex; align-items: center; gap: 8px; }

/* ══════════════════════════════════════════════════
   HEADER 3 – Centered Logo + Full-Width Nav
   ══════════════════════════════════════════════════ */
.shf3-logo-area { box-shadow: 0 2px 10px rgba(0,0,0,.07); }

.shf3-logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 24px;
}
.shf3-contact-strip {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #555;
    flex-wrap: wrap;
}
.shf3-contact-strip span { display: flex; align-items: center; gap: 6px; }
.shf3-contact-strip i { color: #c9a84c; }

.shf3-logo { text-align: center; }
.shf3-logo img { display: inline-block; }
.shf3-logo-text {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shf3-logo-text strong { font-size: 22px; color: #1a2744; }
.shf3-logo-text em { font-size: 12px; color: #888; font-style: normal; }

.shf3-navbar { padding: 0; }
.shf3-nav-inner {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.shf3-nav-link {
    padding: 13px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.shf3-nav-link:hover { background: rgba(255,255,255,.12); }
.shf3-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    color: #1a2744;
    letter-spacing: .3px;
}
.shf3-hamburger { color: #fff; margin-left: auto; }

/* ══════════════════════════════════════════════════
   HEADER 4 – Transparent Hero Overlay
   ══════════════════════════════════════════════════ */
.shf4-header {
    padding: 18px 0;
    transition: background .35s;
}
.shf4-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.shf4-logo img { display: block; }
.shf4-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -.3px;
}
.shf4-nav { display: flex; gap: 4px; }
.shf4-nav-link {
    padding: 9px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    transition: background .2s;
}
.shf4-nav-link:hover { background: rgba(255,255,255,.15); }
.shf4-cta {
    padding: 9px 20px !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    color: #1a2744 !important;
}
.shf4-hamburger { color: #fff; }

/* ══════════════════════════════════════════════════
   HEADER 5 – Minimal Dark
   ══════════════════════════════════════════════════ */
.shf5-header { padding: 0; box-shadow: 0 1px 0 rgba(255,255,255,.05); }
.shf5-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 64px;
}
.shf5-logo {
    display: flex;
    align-items: center;
    padding: 0 8px 0 0;
}
.shf5-logo img { display: block; }
.shf5-logo-text {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.shf5-logo-text strong { font-size: 18px; color: #fff; letter-spacing: -.2px; }
.shf5-logo-text span   { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .5px; }

.shf5-nav { display: flex; align-items: stretch; }
.shf5-nav-link {
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.shf5-nav-link:hover { color: #fff; border-color: #c9a84c; }
.shf5-nav-link.active {
    color: #fff;
    border-radius: 0;
    padding: 0 16px;
    border-bottom: 2px solid #c9a84c;
}

.shf5-actions { display: flex; align-items: center; gap: 10px; }
.shf5-cta {
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s;
}
.shf5-cta:hover { opacity: .85; }
.shf5-hamburger { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════════════
   HEADER 6 – Magazine + Social
   ══════════════════════════════════════════════════ */
.shf6-topbar { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.08); }
.shf6-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shf6-date { font-size: 12px; color: #666; }
.shf6-social { display: flex; gap: 10px; }
.shf6-social a {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #1a2744;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    transition: background .2s;
}
.shf6-social a:hover { background: #c9a84c; }

.shf6-header { padding: 16px 0; box-shadow: 0 1px 0 #eee; }
.shf6-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.shf6-logo img { display: block; }
.shf6-logo-text {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.shf6-logo-text strong { font-size: 22px; color: #1a2744; font-weight: 800; }
.shf6-logo-text em { font-size: 12px; color: #c9a84c; font-style: normal; }

.shf6-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 8px 16px;
}
.shf6-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    width: 200px;
}
.shf6-search i { color: #999; font-size: 14px; }

.shf6-navstrip { border-bottom: 1px solid rgba(255,255,255,.05); }
.shf6-navstrip-inner {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.shf6-nav-link {
    padding: 13px 16px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-top: 3px solid transparent;
    transition: background .2s;
    letter-spacing: .2px;
}
.shf6-nav-link:hover { background: rgba(255,255,255,.08); }
.shf6-hamburger { color: #fff; margin-left: auto; }

/* ══════════════════════════════════════════════════
   FOOTER 1 – Classic 4-Column
   ══════════════════════════════════════════════════ */
.shff1-wrap { padding: 60px 0 0; }
.shff1-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}
.shff1-logo { margin-bottom: 16px; }
.shff1-logo img { display: block; }
.shff1-logo-text { font-size: 22px; font-weight: 800; color: #fff; }
.shff1-col > p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.shff1-social { display: flex; gap: 10px; margin-top: 18px; }
.shff1-social a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.8);
    font-size: 14px;
    text-decoration: none;
    transition: all .2s;
}
.shff1-social a:hover { color: #fff; }
.shff1-col-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.shff1-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 2px;
    border-radius: 2px;
}
.shff1-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.shff1-links a {
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s, gap .2s;
}
.shff1-links a:hover { gap: 12px; }
.shff1-links i { font-size: 10px; }
.shff1-contact p { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.6; margin-bottom: 10px; }
.shff1-contact i { color: #c9a84c; margin-top: 3px; flex-shrink: 0; }
.shff1-contact a { text-decoration: none; color: inherit; }
.shff1-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.shff1-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
    color: rgba(255,255,255,.45);
}

/* ══════════════════════════════════════════════════
   FOOTER 2 – Centered Minimal
   ══════════════════════════════════════════════════ */
.shff2-wrap { padding: 60px 0 0; }
.shff2-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding-bottom: 0;
}
.shff2-logo img { display: inline-block; margin-bottom: 8px; }
.shff2-logo-text { font-size: 26px; font-weight: 800; text-decoration: none; }
.shff2-tagline { font-size: 13px; margin-top: 6px; opacity: .65; }
.shff2-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 4px; }
.shff2-nav a {
    padding: 6px 14px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: background .2s;
}
.shff2-nav a:hover { background: rgba(255,255,255,.1); }
.shff2-social { display: flex; gap: 12px; justify-content: center; }
.shff2-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.7);
    font-size: 15px;
    text-decoration: none;
    transition: all .2s;
}
.shff2-social a:hover { color: #fff; border-color: rgba(255,255,255,.5); }
.shff2-divider { width: 100%; border: none; border-top: 1px solid; margin: 0; }
.shff2-copy { font-size: 13px; opacity: .45; padding-bottom: 30px; }

/* ══════════════════════════════════════════════════
   FOOTER 3 – Two-Column + Newsletter
   ══════════════════════════════════════════════════ */
.shff3-wrap { padding: 60px 0 0; }
.shff3-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 50px;
}
.shff3-logo { margin-bottom: 14px; }
.shff3-logo img { display: block; }
.shff3-logo-text { font-size: 22px; font-weight: 800; text-decoration: none; color: #fff; }
.shff3-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 8px; }
.shff3-brand i { margin-right: 6px; color: #c9a84c; }
.shff3-col-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-left: 10px;
    position: relative;
}
.shff3-col-title::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 3px; height: 14px;
    border-radius: 2px;
}
.shff3-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.shff3-links a { font-size: 14px; text-decoration: none; transition: padding-left .2s; display: block; }
.shff3-links a:hover { padding-left: 4px; }

.shff3-newsletter p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.shff3-nl-form { display: flex; flex-direction: column; gap: 8px; }
.shff3-nl-form input {
    padding: 11px 14px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 14px;
    outline: none;
}
.shff3-nl-form input::placeholder { color: rgba(255,255,255,.35); }
.shff3-nl-btn {
    padding: 11px 16px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: opacity .2s;
}
.shff3-nl-btn:hover { opacity: .85; }
.shff3-bottom { padding: 18px 0; font-size: 13px; color: rgba(255,255,255,.4); }
.shff3-bottom .shf-container { display: flex; justify-content: center; }

/* ══════════════════════════════════════════════════
   FOOTER 4 – Dark + Map
   ══════════════════════════════════════════════════ */
.shff4-wrap { padding: 60px 0 0; }
.shff4-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    align-items: start;
}
.shff4-logo { margin-bottom: 12px; }
.shff4-logo img { display: block; }
.shff4-logo-text { font-size: 22px; font-weight: 800; text-decoration: none; color: #e2eaf5; }
.shff4-slogan { font-size: 13px; font-style: italic; margin-top: 6px; }
.shff4-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 18px; }
.shff4-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.shff4-links a { font-size: 14px; text-decoration: none; transition: color .2s; }
.shff4-contact-col p { font-size: 14px; display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; line-height: 1.6; }
.shff4-contact-col i { color: #c9a84c; margin-top: 3px; flex-shrink: 0; }
.shff4-map { margin-top: 18px; border-radius: 8px; overflow: hidden; }
.shff4-map iframe { width: 100%; height: 180px; border: none; display: block; border-radius: 8px; }
.shff4-bottom { padding: 18px 0; font-size: 13px; }
.shff4-bottom .shf-container { display: flex; justify-content: center; }

/* ══════════════════════════════════════════════════
   FOOTER 5 – Light + Accreditation
   ══════════════════════════════════════════════════ */
.shff5-wrap { }
.shff5-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding: 60px 20px 50px;
}
.shff5-logo { margin-bottom: 14px; }
.shff5-logo img { display: block; }
.shff5-logo-text { font-size: 24px; font-weight: 800; text-decoration: none; }
.shff5-brand p { font-size: 14px; line-height: 1.7; color: #555; margin-bottom: 18px; }
.shff5-social { display: flex; gap: 10px; }
.shff5-social a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #1a2744;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: opacity .2s;
}
.shff5-social a:hover { opacity: .8; }

.shff5-badges-wrap h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .6px; color: #888; margin-bottom: 18px; }
.shff5-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.shff5-badge {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}
.shff5-badge img { max-height: 48px; object-fit: contain; }

.shff5-bottom { padding: 18px 0; }
.shff5-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
}
.shff5-links { display: flex; gap: 4px; flex-wrap: wrap; }
.shff5-links a {
    padding: 4px 10px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}
.shff5-links a:hover { color: #c9a84c; }

/* ══════════════════════════════════════════════════
   FOOTER 6 – Mega + CTA Banner
   ══════════════════════════════════════════════════ */
.shff6-cta-strip { padding: 36px 0; }
.shff6-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.shff6-cta-text h3 { font-size: 24px; font-weight: 800; color: #1a2744; margin-bottom: 4px; }
.shff6-cta-text p { font-size: 14px; color: #1a2744; opacity: .75; }
.shff6-cta-btn {
    padding: 13px 30px;
    background: #1a2744;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    transition: opacity .2s;
    white-space: nowrap;
}
.shff6-cta-btn:hover { opacity: .88; }

.shff6-main { padding: 60px 0 0; }
.shff6-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.shff6-logo { margin-bottom: 10px; }
.shff6-logo img { display: block; }
.shff6-brand-name { font-size: 22px; font-weight: 800; text-decoration: none; }
.shff6-tag { font-size: 12px; opacity: .55; margin: 4px 0 12px; }
.shff6-brand-col p { font-size: 14px; line-height: 1.7; }
.shff6-social { display: flex; gap: 10px; margin-top: 18px; }
.shff6-social a {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.7);
    font-size: 13px;
    text-decoration: none;
    transition: all .2s;
}
.shff6-social a:hover { color: #fff; }
.shff6-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 10px;
    position: relative;
}
.shff6-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    border-radius: 2px;
}
.shff6-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.shff6-links a { font-size: 13.5px; text-decoration: none; transition: padding-left .2s; }
.shff6-links a:hover { padding-left: 4px; }
.shff6-bottom { padding: 18px 0; }
.shff6-bottom .shf-container { display: flex; justify-content: center; font-size: 13px; color: rgba(255,255,255,.35); }

/* ══════════════════════════════════════════════════
   RESPONSIVE – Mobile
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
    /* Headers */
    .shf1-nav, .shf2-nav, .shf3-nav-inner, .shf4-nav, .shf5-nav, .shf6-navstrip-inner {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a2744;
        z-index: 998;
        padding: 12px 0;
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }
    .shf1-nav.shf-open, .shf2-nav.shf-open, .shf4-nav.shf-open, .shf5-nav.shf-open { display: flex; }
    .shf3-nav-inner.shf-open, .shf6-navstrip-inner.shf-open { display: flex; }

    .shf1-nav-link, .shf2-nav-link, .shf3-nav-link,
    .shf4-nav-link, .shf5-nav-link, .shf6-nav-link {
        color: #fff !important;
        padding: 12px 20px !important;
        border: none !important;
        border-radius: 0 !important;
        width: 100%;
    }
    .shf1-header, .shf2-header, .shf3-logo-area, .shf4-header, .shf5-header, .shf6-header {
        position: relative;
    }
    .shf-hamburger { display: flex !important; }
    .shf1-topbar-left { display: none; }
    .shf2-actions .shf2-search-btn + .shf2-search-box { display: none; }
    .shf3-contact-strip { display: none; }
    .shf6-search input { width: 120px; }

    /* Footers */
    .shff1-grid { grid-template-columns: 1fr 1fr; }
    .shff3-grid { grid-template-columns: 1fr 1fr; }
    .shff4-grid { grid-template-columns: 1fr; }
    .shff5-top  { grid-template-columns: 1fr; }
    .shff6-grid { grid-template-columns: 1fr 1fr; }
    .shff1-bottom-inner { flex-direction: column; text-align: center; }
    .shff5-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .shff1-grid { grid-template-columns: 1fr; }
    .shff2-nav  { flex-direction: column; align-items: center; }
    .shff3-grid { grid-template-columns: 1fr; }
    .shff5-badges { grid-template-columns: 1fr 1fr; }
    .shff6-grid { grid-template-columns: 1fr; }
    .shff6-cta-inner { flex-direction: column; text-align: center; }
    .shf6-topbar-inner { flex-direction: column; gap: 8px; text-align: center; }
    .shf1-topbar-inner { flex-direction: column; }
    .shf2-topstrip-inner { flex-direction: column; }
}
