/* ======================
MEGA HEADER SECTION
====================== */

        .mega-header {

            background: #fff;
            padding: 12px 0;
            border-bottom: 3px solid var(--secondary-yellow);

        }

        .mega-header-wrapper {

            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;

        }

        .mega-header-left {

            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            gap: 0;
            flex: 1;
            min-width: 0;

        }

        .mega-trust-item {

            display: inline-flex !important;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            font-size: 14px;
            font-weight: 500;
            color: var(--dark);
            white-space: nowrap;
            padding: 0 18px;

        }

        .mega-trust-item:first-child {

            padding-left: 0;

        }

        .mega-trust-item:not(:last-child) {

            border-right: 1px solid rgba(0, 0, 0, .12);

        }

        .mega-trust-item i {

            color: var(--primary-red);
            font-size: 18px;

        }

        .mega-right {

            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;

        }

        .mega-menu-label {

            font-size: 14px;
            font-weight: 500;
            color: var(--dark);

        }

        .mega-menu-btn {

            width: 55px;
            height: 55px;
            border: none;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: .4s;
            flex-shrink: 0;

        }

        .mega-menu-btn:hover {

            transform: scale(1.06);
            box-shadow: 0 6px 20px rgba(227, 6, 19, .35);

        }

        .mega-menu-btn span {

            width: 24px;
            height: 3px;
            background: #fff;
            border-radius: 20px;

        }

        @media (max-width: 991px) {

            .mega-header {

                padding: 10px 0;

            }

            .mega-menu-btn {

                width: 50px;
                height: 50px;

            }

        }

        @media (max-width: 575px) {

            .mega-menu-btn {

                width: 46px;
                height: 46px;

            }

            .mega-menu-btn span {

                width: 20px;

            }

        }

        /* ======================
OVERLAY
====================== */

        .menu-overlay {

            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .25);
            backdrop-filter: blur(15px);
            z-index: 99998;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition:
                opacity 0.45s ease,
                visibility 0s linear 0.45s;

        }

        .menu-overlay.active {

            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transition:
                opacity 0.45s ease,
                visibility 0s linear 0s;

        }

        /* ======================
FULL SCREEN MENU
====================== */

        .fullscreen-menu {

            position: fixed;
            inset: 0;
            z-index: 99999;

            background: rgba(0, 0, 0, .55);

            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);

            opacity: 0;
            visibility: hidden;
            pointer-events: none;

            transform: translate3d(0, -100%, 0);

            transition:
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.45s ease,
                visibility 0s linear 0.55s;

            display: flex;
            flex-direction: column;
            overflow: hidden;
            will-change: transform, opacity;

        }

        .fullscreen-menu.active {

            opacity: 1;
            visibility: visible;
            pointer-events: auto;

            transform: translate3d(0, 0, 0);

            transition:
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.45s ease,
                visibility 0s linear 0s;

        }

        .fullscreen-menu-body .row > [class*="col-"] {

            opacity: 0;
            transform: translate3d(0, 24px, 0);
            transition:
                opacity 0.4s ease,
                transform 0.4s ease;

        }

        .fullscreen-menu.active .fullscreen-menu-body .row > [class*="col-"] {

            opacity: 1;
            transform: translate3d(0, 0, 0);
            transition-delay: 0.12s;

        }

        .fullscreen-menu-topbar {

            position: relative;
            z-index: 100;

            display: flex;
            align-items: center;
            justify-content: space-between;

            flex-shrink: 0;
            padding: 14px 16px;
            min-height: 58px;

            background: #ffffff6e;;
            border-bottom: 2px solid var(--secondary-yellow);
            box-shadow: 0 4px 12px rgba(0, 0, 0, .08);

            transform: translate3d(0, -16px, 0);
            opacity: 0;
            transition:
                transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
                opacity 0.35s ease 0.08s;

        }

        .fullscreen-menu.active .fullscreen-menu-topbar {

            transform: translate3d(0, 0, 0);
            opacity: 1;

        }

        .fullscreen-menu-title {

            font-size: 18px;
            font-weight: 800;
            color: var(--light);

        }

        .fullscreen-menu-scroll {
            flex: 1;
            min-height: 0;
            width: 100%;
            overflow-x: hidden;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.45) transparent;
        }

        .fullscreen-menu-scroll::-webkit-scrollbar {
            width: 6px;
        }

        .fullscreen-menu-scroll::-webkit-scrollbar-track {
            background: transparent;
        }

        .fullscreen-menu-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.38);
            border-radius: 10px;
        }

        .fullscreen-menu-scroll::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.58);
        }

        .fullscreen-menu-body {

            flex: 1;
            padding-top: 24px;
            padding-bottom: 30px;

        }

        .fullscreen-menu-body .row {
            align-items: flex-start;
        }

        .fullscreen-menu-body .row > [class*="col-"] {
            align-self: flex-start;
        }

        .menu-close {

            position: relative;
            top: auto;
            right: auto;

            width: 48px;
            height: 48px;
            min-width: 48px;
            min-height: 48px;

            border: 2px solid #fff;
            border-radius: 50%;

            background: var(--primary-red);
            color: #fff;

            display: flex;
            align-items: center;
            justify-content: center;

            cursor: pointer;
            flex-shrink: 0;
            z-index: 101;
            padding: 0;

            box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
            -webkit-tap-highlight-color: transparent;
            appearance: none;
            -webkit-appearance: none;

        }

        .menu-close .close-menu-symbol {

            display: block;
            font-size: 32px;
            font-weight: 700;
            line-height: 1;
            margin-top: -2px;
            pointer-events: none;

        }

        .menu-close:hover {

            background: #c00510;

        }

        .fullscreen-menu h4 {

            color: var(--primary-red);
            font-weight: 800;
            margin-top: 0;
            margin-bottom: 25px;

        }

        .fullscreen-menu ul {

            list-style: none;
            padding: 0;
            margin: 0;

        }

        .fullscreen-menu ul li {

            margin-bottom: 15px;

        }

        .fullscreen-menu ul li a {

            color: #fff;
            font-size: 18px;
            font-weight: 600;
            transition: .3s;

        }

        .fullscreen-menu ul li a:hover {

            color: var(--secondary-yellow);
            padding-left: 10px;

        }

        .fullscreen-menu-footer {
            margin-top: 28px;
            opacity: 0;
            transform: translate3d(0, 24px, 0);
            transition:
                opacity 0.45s ease,
                transform 0.45s ease;
        }

        .fullscreen-menu.active .fullscreen-menu-footer {
            opacity: 1;
            transform: translate3d(0, 0, 0);
            transition-delay: 0.18s;
        }

        .fullscreen-menu-footer-panel {
            height: auto;
            margin-top: 8px;
        }

        .fullscreen-menu-footer-panel .mega-about-logo {
            max-width: 150px;
        }

        .fullscreen-menu-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 4px;
        }

        .fullscreen-menu-highlights span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.92);
            background: rgba(0, 0, 0, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 50px;
            padding: 6px 12px;
        }

        .fullscreen-menu-highlights i {
            color: var(--secondary-yellow);
            font-size: 13px;
        }

        .fullscreen-menu-contact {
            margin-bottom: 16px;
        }

        .fullscreen-menu-contact strong {
            color: #fff;
            font-weight: 800;
        }

        .fullscreen-menu-quick-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .fullscreen-menu-quick-links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 50px;
            padding: 8px 14px;
            transition: 0.3s;
        }

        .fullscreen-menu-quick-links a:hover {
            background: var(--secondary-yellow);
            color: var(--dark);
            padding-left: 14px;
        }

        .fullscreen-menu-quick-links a i {
            color: var(--secondary-yellow);
            transition: 0.3s;
        }

        .fullscreen-menu-quick-links a:hover i {
            color: var(--dark);
        }

        .fullscreen-menu-social-wrap {
            text-align: left;
        }

        .fullscreen-menu-social-title {
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 14px;
        }

        .fullscreen-menu-call-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 18px;
            width: 100%;
            max-width: 220px;
            padding: 12px 18px;
            border-radius: 50px;
            background: #fff;
            color: var(--primary-red);
            font-weight: 800;
            text-decoration: none;
            transition: 0.3s;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .fullscreen-menu-call-btn:hover {
            background: var(--secondary-yellow);
            color: var(--dark);
            transform: translateY(-2px);
        }

        @media (max-width: 991px) {

            .fullscreen-menu {

                background: rgba(0, 0, 0, .65);

            }

            .fullscreen-menu .container,
            .fullscreen-menu-body {

                max-width: 100%;

            }

            .fullscreen-menu-scroll {
                width: 100%;
            }

            .fullscreen-menu-body {

                padding-top: 16px;

            }

            .fullscreen-menu-body .row {

                row-gap: 24px;
                align-items: flex-start !important;
                height: auto !important;

            }

            .fullscreen-menu h4 {

                font-size: 18px;
                margin-bottom: 12px;

            }

            .fullscreen-menu ul li {

                margin-bottom: 8px;

            }

            .fullscreen-menu ul li a {

                font-size: 16px;
                color: #fff;

            }

            .fullscreen-menu-footer {
                margin-top: 18px;
            }

            .fullscreen-menu-social-wrap {
                margin-top: 8px;
            }

            .fullscreen-menu-call-btn {
                max-width: 100%;
            }

        }