/*
=========================================================
 Global Computer – Fast Responsive Header R3
=========================================================
 केवल transform और opacity based छोटे transitions रखे गए हैं।
 कोई blur, backdrop-filter या भारी scroll animation नहीं है।
*/

:root {
    --gc-navy: #0d245d;
    --gc-blue: #16489f;
    --gc-blue-2: #2468d8;
    --gc-cyan: #08a8c7;
    --gc-red: #f23b32;
    --gc-orange: #ff8a1f;
    --gc-yellow: #ffc928;
    --gc-green: #12a86b;
    --gc-white: #ffffff;
    --gc-soft: #f4f7fd;
    --gc-text: #10245b;
    --gc-muted: #687695;
    --gc-border: #dfe7f5;
    --gc-shadow: 0 12px 32px rgba(13, 36, 93, .12);
    --gc-radius: 14px;
}

.gc-header,
.gc-header *,
.gc-header *::before,
.gc-header *::after {
    box-sizing: border-box;
}

.gc-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    font-family: inherit;
    background: var(--gc-white);
    color: var(--gc-text);
}

.gc-header a {
    text-decoration: none;
}

.gc-header .container {
    width: min(1180px, calc(100% - 36px));
    margin-inline: auto;
}

/* =====================================================
   Utility bar
===================================================== */

.gc-utility-bar {
    position: relative;
    min-height: 42px;
    color: var(--gc-white);
    background:
        linear-gradient(90deg,
            #0c235c 0%,
            #173f8b 45%,
            #0d245d 100%);
    border-bottom: 3px solid var(--gc-orange);
}

.gc-utility-bar::after {
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 31%;
    height: 3px;
    content: "";
    background: var(--gc-cyan);
}

.gc-utility-bar__inner {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gc-utility-links,
.gc-utility-contact {
    display: flex;
    align-items: center;
    min-width: 0;
}

.gc-utility-links {
    gap: 4px;
}

.gc-utility-contact {
    justify-content: flex-end;
    gap: 18px;
}

.gc-utility-links a,
.gc-utility-contact a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .96);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: color .18s ease, background-color .18s ease;
}

.gc-utility-links a {
    padding: 0 10px;
    border-radius: 8px;
}

.gc-utility-links a:hover,
.gc-utility-links a:focus-visible {
    color: var(--gc-white);
    background: rgba(255, 255, 255, .12);
}

.gc-utility-contact a:hover,
.gc-utility-contact a:focus-visible {
    color: var(--gc-yellow);
}

.gc-utility-links i,
.gc-utility-contact i {
    color: var(--gc-yellow);
    font-size: 13px;
}

/* =====================================================
   Brand row
===================================================== */

.gc-brandbar {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 15%, rgba(36, 104, 216, .09), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.gc-brandbar::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 34%;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, var(--gc-red), var(--gc-orange), var(--gc-yellow));
}

.gc-brandbar__inner {
    display: flex;
    min-height: 116px;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding-block: 17px;
}

.gc-brand {
    display: inline-flex;
    min-width: 290px;
    max-width: 500px;
    align-items: center;
    gap: 15px;
    color: var(--gc-text);
}

.gc-brand__logo-wrap,
.gc-brand__mark {
    position: relative;
    display: grid;
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: var(--gc-white);
    border: 3px solid var(--gc-red);
    box-shadow:
        0 0 0 5px rgba(255, 201, 40, .20),
        0 9px 22px rgba(13, 36, 93, .14);
}

.gc-brand__logo-wrap::after {
    position: absolute;
    inset: 4px;
    pointer-events: none;
    content: "";
    border: 1px dashed rgba(22, 72, 159, .25);
    border-radius: inherit;
}

.gc-brand__image {
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px;
    object-fit: contain;
}

.gc-brand__mark {
    color: var(--gc-white);
    border: 0;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--gc-red), var(--gc-orange));
    font-size: 30px;
}

.gc-brand__text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.gc-brand__text strong {
    color: var(--gc-navy);
    font-size: clamp(25px, 2.35vw, 37px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.9px;
}

.gc-brand__text > span {
    color: var(--gc-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.gc-brand-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: auto;
}

.gc-brand-shortcuts {
    display: flex;
    align-items: center;
    gap: 7px;
}

.gc-shortcut {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    color: var(--gc-navy);
    border: 1px solid var(--gc-border);
    border-radius: 12px;
    background: var(--gc-soft);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition:
        color .18s ease,
        border-color .18s ease,
        background-color .18s ease,
        transform .18s ease;
}

.gc-shortcut i {
    font-size: 15px;
}

.gc-shortcut--enquiry i {
    color: var(--gc-cyan);
}

.gc-shortcut--franchise i {
    color: var(--gc-green);
}

.gc-shortcut--payment i {
    color: var(--gc-orange);
}

.gc-shortcut:hover,
.gc-shortcut:focus-visible {
    color: var(--gc-white);
    border-color: var(--gc-blue);
    background: var(--gc-blue);
    transform: translateY(-2px);
}

.gc-shortcut:hover i,
.gc-shortcut:focus-visible i {
    color: inherit;
}

.gc-helpline {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    gap: 10px;
    padding: 7px 13px 7px 8px;
    color: var(--gc-navy);
    border: 1px solid #ffd46e;
    border-radius: 15px;
    background: linear-gradient(135deg, #fff9de, #fff4c0);
    box-shadow: 0 7px 18px rgba(224, 154, 0, .10);
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease;
}

.gc-helpline:hover,
.gc-helpline:focus-visible {
    color: var(--gc-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(224, 154, 0, .17);
}

.gc-helpline__icon {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    place-items: center;
    color: var(--gc-white);
    border-radius: 12px;
    background: linear-gradient(145deg, var(--gc-red), var(--gc-orange));
    font-size: 19px;
}

.gc-helpline__text {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.gc-helpline__text small {
    margin-bottom: 4px;
    color: #755a10;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.gc-helpline__text strong {
    color: var(--gc-navy);
    font-size: 16px;
    font-weight: 900;
}

.gc-apply-btn {
    display: inline-flex;
    min-height: 53px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    color: var(--gc-white);
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gc-red), #f05a27);
    box-shadow: 0 10px 22px rgba(242, 59, 50, .20);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease;
}

.gc-apply-btn:hover,
.gc-apply-btn:focus-visible {
    color: var(--gc-white);
    transform: translateY(-2px);
    box-shadow: 0 13px 26px rgba(242, 59, 50, .28);
}

/* =====================================================
   Navigation
===================================================== */

.gc-nav-shell {
    position: sticky;
    top: 0;
    z-index: 1002;
    min-height: 60px;
    background:
        linear-gradient(90deg,
            #0f2a69 0%,
            #19479a 44%,
            #163f89 100%);
    box-shadow: 0 6px 18px rgba(13, 36, 93, .17);
}

.gc-nav-shell::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(
        90deg,
        var(--gc-red) 0 22%,
        var(--gc-orange) 22% 42%,
        var(--gc-yellow) 42% 62%,
        var(--gc-green) 62% 82%,
        var(--gc-cyan) 82% 100%
    );
}

.gc-nav__inner {
    display: flex;
    min-height: 60px;
    align-items: center;
}

.gc-nav-brand {
    display: none;
    align-items: center;
    gap: 9px;
    color: var(--gc-white);
    font-weight: 800;
}

.gc-menu {
    display: flex;
    width: 100%;
    min-height: 60px;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gc-menu > li {
    position: relative;
    display: flex;
    align-items: stretch;
}

.gc-menu > li > a {
    position: relative;
    display: inline-flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 14px;
    color: rgba(255, 255, 255, .96);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: background-color .18s ease, color .18s ease;
}

.gc-menu > li > a::before {
    position: absolute;
    right: 12px;
    bottom: 3px;
    left: 12px;
    height: 3px;
    content: "";
    border-radius: 10px 10px 0 0;
    background: var(--gc-yellow);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.gc-menu > li:hover > a,
.gc-menu > li:focus-within > a,
.gc-menu > li.active > a,
.gc-menu > li.current > a,
.gc-menu > li.is-active > a {
    color: var(--gc-white);
    background: rgba(255, 255, 255, .11);
}

.gc-menu > li:hover > a::before,
.gc-menu > li:focus-within > a::before,
.gc-menu > li.active > a::before,
.gc-menu > li.current > a::before,
.gc-menu > li.is-active > a::before {
    transform: scaleX(1);
}

.gc-menu > li.active > a,
.gc-menu > li.current > a,
.gc-menu > li.is-active > a {
    background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
}

.gc-submenu-toggle {
    display: none;
}

.gc-submenu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    z-index: 1010;
    width: max-content;
    min-width: 230px;
    max-width: 320px;
    margin: 0;
    padding: 8px;
    visibility: hidden;
    list-style: none;
    border: 1px solid var(--gc-border);
    border-top: 3px solid var(--gc-orange);
    border-radius: 0 0 14px 14px;
    background: var(--gc-white);
    box-shadow: var(--gc-shadow);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition:
        opacity .16s ease,
        transform .16s ease,
        visibility .16s ease;
}

.gc-submenu li + li {
    border-top: 1px solid #eef2f8;
}

.gc-submenu a {
    display: flex;
    min-height: 40px;
    align-items: center;
    padding: 8px 11px;
    color: var(--gc-text);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    transition: color .16s ease, background-color .16s ease, padding-left .16s ease;
}

.gc-submenu a::before {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    margin-right: 9px;
    content: "";
    border-radius: 50%;
    background: var(--gc-orange);
}

.gc-submenu a:hover,
.gc-submenu a:focus-visible {
    color: var(--gc-blue);
    background: #f2f6ff;
    padding-left: 15px;
}

.gc-menu > li:hover > .gc-submenu,
.gc-menu > li:focus-within > .gc-submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.gc-submenu--courses {
    display: grid;
    width: min(580px, 90vw);
    max-width: 580px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* =====================================================
   Overlay
===================================================== */

.gc-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    display: none;
    visibility: hidden;
    background: rgba(5, 18, 50, .58);
    opacity: 0;
    transition: opacity .2s ease, visibility .2s ease;
}

body.gc-menu-open {
    overflow: hidden;
}

/* =====================================================
   Medium desktop
===================================================== */

@media (max-width: 1199.98px) {
    .gc-header .container {
        width: min(100% - 28px, 1120px);
    }

    .gc-brandbar__inner {
        gap: 15px;
    }

    .gc-brand {
        min-width: 265px;
    }

    .gc-brand__logo-wrap,
    .gc-brand__mark {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }

    .gc-brand__text strong {
        font-size: 28px;
    }

    .gc-brand__text > span {
        max-width: 270px;
        font-size: 11.5px;
    }

    .gc-shortcut {
        width: 45px;
        min-width: 45px;
        padding: 0;
    }

    .gc-shortcut span {
        display: none;
    }

    .gc-menu > li > a {
        padding-inline: 10px;
        font-size: 12px;
    }
}

/* =====================================================
   Tablet and mobile navigation
===================================================== */

@media (max-width: 991.98px) {
    .gc-header .container {
        width: calc(100% - 24px);
    }

    .gc-utility-bar__inner {
        min-height: 38px;
    }

    .gc-utility-bar {
        min-height: 38px;
    }

    .gc-utility-contact {
        gap: 10px;
    }

    .gc-utility-contact a {
        width: 30px;
        min-height: 30px;
        justify-content: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, .09);
    }

    .gc-utility-contact a span {
        display: none;
    }

    .gc-brandbar__inner {
        min-height: 88px;
        padding-block: 10px;
    }

    .gc-brand {
        min-width: 0;
        flex: 1 1 auto;
    }

    .gc-brand__logo-wrap,
    .gc-brand__mark {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }

    .gc-brand__text strong {
        font-size: clamp(22px, 4.5vw, 29px);
    }

    .gc-brand__text > span {
        font-size: 10.5px;
    }

    .gc-brand-shortcuts {
        display: none;
    }

    .gc-helpline {
        min-height: 48px;
        padding: 5px 9px 5px 5px;
    }

    .gc-helpline__icon {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
        font-size: 16px;
    }

    .gc-helpline__text small {
        display: none;
    }

    .gc-helpline__text strong {
        font-size: 13px;
    }

    .gc-apply-btn {
        min-height: 48px;
        padding-inline: 13px;
        font-size: 12px;
    }

    .gc-nav-shell {
        min-height: 56px;
    }

    .gc-nav__inner {
        min-height: 56px;
        justify-content: space-between;
    }

    .gc-nav-brand {
        display: inline-flex;
        min-height: 56px;
        max-width: calc(100% - 65px);
    }

    .gc-nav-brand span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .gc-mobile-toggle {
        display: inline-flex;
        width: 43px;
        height: 40px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        color: var(--gc-white);
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: 10px;
        background: rgba(255, 255, 255, .10);
        cursor: pointer;
    }

    .gc-mobile-toggle span {
        display: block;
        width: 21px;
        height: 2px;
        flex: 0 0 2px;
        margin: 0;
        border-radius: 10px;
        background: currentColor;
        transition: transform .2s ease, opacity .2s ease;
    }

    .gc-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .gc-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .gc-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .gc-menu {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        z-index: 1000;
        display: block;
        width: min(350px, 88vw);
        height: 100dvh;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 72px 12px 28px;
        background: #ffffff;
        box-shadow: -15px 0 38px rgba(9, 28, 70, .20);
        transform: translateX(105%);
        transition: transform .24s ease;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .gc-menu::before {
        position: fixed;
        top: 0;
        right: 0;
        width: min(350px, 88vw);
        height: 60px;
        content: "Navigation Menu";
        display: flex;
        align-items: center;
        padding: 0 18px;
        color: var(--gc-white);
        background: linear-gradient(135deg, var(--gc-navy), var(--gc-blue));
        font-size: 15px;
        font-weight: 900;
        letter-spacing: .2px;
    }

    .gc-menu.is-open {
        transform: translateX(0);
    }

    .gc-menu > li {
        display: block;
        border-bottom: 1px solid #e9eef7;
    }

    .gc-menu > li > a {
        min-height: 49px;
        justify-content: flex-start;
        padding: 0 47px 0 12px;
        color: var(--gc-text);
        font-size: 13px;
    }

    .gc-menu > li > a::before {
        display: none;
    }

    .gc-menu > li:hover > a,
    .gc-menu > li:focus-within > a,
    .gc-menu > li.active > a,
    .gc-menu > li.current > a,
    .gc-menu > li.is-active > a {
        color: var(--gc-blue);
        background: #f1f5fd;
    }

    .gc-submenu-toggle {
        position: absolute;
        top: 7px;
        right: 4px;
        display: grid;
        width: 36px;
        height: 35px;
        place-items: center;
        color: var(--gc-blue);
        border: 0;
        border-radius: 9px;
        background: #edf3ff;
        cursor: pointer;
    }

    .gc-submenu-toggle i {
        transition: transform .18s ease;
    }

    .has-dropdown.is-submenu-open > .gc-submenu-toggle i {
        transform: rotate(180deg);
    }

    .gc-submenu,
    .gc-submenu--courses {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        max-width: none;
        visibility: visible;
        grid-template-columns: 1fr;
        margin: 0 0 8px;
        padding: 5px 8px 8px 17px;
        border: 0;
        border-radius: 10px;
        background: #f7f9fe;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        transition: none;
    }

    .has-dropdown.is-submenu-open > .gc-submenu {
        display: block;
    }

    .has-dropdown.is-submenu-open > .gc-submenu--courses {
        display: grid;
    }

    .gc-submenu li + li {
        border-color: #e6ecf7;
    }

    .gc-submenu a {
        min-height: 39px;
        padding: 7px 9px;
        font-size: 12px;
    }

    .gc-menu-overlay {
        display: block;
    }

    .gc-menu-overlay.is-visible {
        visibility: visible;
        opacity: 1;
    }
}

/* =====================================================
   Small mobile
===================================================== */

@media (max-width: 767.98px) {
    .gc-header .container {
        width: calc(100% - 20px);
    }

    .gc-utility-links {
        width: 100%;
        justify-content: space-between;
        gap: 2px;
    }

    .gc-utility-links a {
        min-width: 0;
        padding: 0 5px;
        font-size: 10px;
    }

    .gc-utility-links i {
        font-size: 11px;
    }

    .gc-utility-contact {
        display: none;
    }

    .gc-brandbar__inner {
        min-height: 78px;
    }

    .gc-brand {
        gap: 10px;
    }

    .gc-brand__logo-wrap,
    .gc-brand__mark {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
        border-width: 2px;
    }

    .gc-brand__text strong {
        font-size: clamp(19px, 6vw, 25px);
        letter-spacing: -.5px;
    }

    .gc-brand__text > span {
        max-width: 220px;
        font-size: 9.5px;
    }

    .gc-brand-actions {
        gap: 6px;
    }

    .gc-helpline {
        width: 43px;
        min-height: 43px;
        padding: 3px;
        justify-content: center;
        border-radius: 12px;
    }

    .gc-helpline__icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
    }

    .gc-helpline__text {
        display: none;
    }

    .gc-apply-btn {
        width: 43px;
        min-height: 43px;
        padding: 0;
        border-radius: 12px;
        font-size: 16px;
    }

    .gc-apply-btn span {
        display: none;
    }
}

@media (max-width: 479.98px) {
    .gc-utility-links a:nth-child(2) {
        display: none;
    }

    .gc-utility-links {
        justify-content: space-around;
    }

    .gc-brand__text > span {
        max-width: 165px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .gc-header *,
    .gc-header *::before,
    .gc-header *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   R5 FINAL HEADER OVERRIDES
   - Enquiry / Franchise / Payment moved to utility bar
   - Compact brand row
   - Stable responsive spacing at browser zoom levels
========================================================= */
.gc-utility-right {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.gc-top-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gc-top-action {
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.09);
    font-size: 11px !important;
    font-weight: 800 !important;
    white-space: nowrap;
    transition: background-color .16s ease, transform .16s ease;
}

.gc-top-action i {
    color: #fff !important;
    font-size: 12px;
}

.gc-top-action--enquiry { background: rgba(6, 171, 199, .30); }
.gc-top-action--franchise { background: rgba(18, 168, 107, .30); }
.gc-top-action--payment { background: rgba(255, 138, 31, .34); }

.gc-top-action:hover,
.gc-top-action:focus-visible {
    color: #fff;
    background: rgba(255,255,255,.20);
    transform: translateY(-1px);
}

.gc-brand-shortcuts { display: none !important; }

.gc-brandbar__inner {
    min-height: 104px;
    padding-block: 13px;
}

.gc-brand-actions {
    flex: 0 0 auto;
}

@media (max-width: 1280px) {
    .gc-utility-right { gap: 10px; }
    .gc-utility-contact { gap: 10px; }
    .gc-utility-contact a:last-child span { display: none; }
    .gc-utility-contact a:last-child {
        width: 30px;
        justify-content: center;
        border-radius: 8px;
        background: rgba(255,255,255,.08);
    }
}

@media (max-width: 1080px) {
    .gc-utility-links a { padding-inline: 6px; font-size: 10.5px; }
    .gc-top-action { padding-inline: 8px; font-size: 10px !important; }
    .gc-utility-contact a span { display: none; }
    .gc-utility-contact a {
        width: 29px;
        justify-content: center;
        border-radius: 8px;
        background: rgba(255,255,255,.08);
    }
}

@media (max-width: 991.98px) {
    .gc-utility-bar,
    .gc-utility-bar__inner { min-height: 42px; }

    .gc-utility-right { gap: 7px; }
    .gc-top-actions { gap: 4px; }
    .gc-top-action { min-height: 28px; padding-inline: 7px; }
    .gc-utility-contact { display: none; }
    .gc-brandbar__inner { min-height: 82px; }
}

@media (max-width: 767.98px) {
    .gc-utility-bar { padding: 5px 0; }
    .gc-utility-bar__inner {
        min-height: 0;
        flex-wrap: wrap;
        gap: 4px 8px;
    }

    .gc-utility-links {
        order: 2;
        width: 100%;
        justify-content: space-between;
        border-top: 1px solid rgba(255,255,255,.12);
        padding-top: 3px;
    }

    .gc-utility-right {
        order: 1;
        width: 100%;
        justify-content: center;
    }

    .gc-top-actions { width: 100%; }
    .gc-top-action { flex: 1 1 0; min-width: 0; }

    .gc-brandbar__inner { min-height: 76px; }
}

@media (max-width: 479.98px) {
    .gc-top-action { gap: 4px; font-size: 9.5px !important; }
    .gc-utility-links a { justify-content: center; }
    .gc-utility-links a span { font-size: 9px; }
    .gc-utility-links a:nth-child(2) { display: inline-flex; }
}
