/* ======================================================
   VARIABLES
====================================================== */
:root {
    --primary: #0b3c5d;
    --accent: #facc15;
    --dark: #020617;
    --light: #ffffff;
    --muted: #94a3b8;
}

/* ======================================================
   BASE
====================================================== */
body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: #f8fafc;
    color: #020617;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

.gc-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ======================================================
   HEADER
====================================================== */
.gc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 60, 93, .95);
    backdrop-filter: blur(10px);
}

.header-wrap {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gc-logo img {
    height: 56px;
}

/* ======================================================
   ACTIONS (LANG + BURGER)
====================================================== */
.gc-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gc-actions a {
    color: #ffffff;
    opacity: .6;
    font-weight: 600;
    padding: 6px 8px;
    border-radius: 6px;
    text-decoration: none;
}

.gc-actions a.active {
    opacity: 1;
    background: var(--accent);
    color: #020617;
}

/* ======================================================
   BURGER
====================================================== */
.gc-burger {
    display: none;
}

/* ======================================================
   MENU DESKTOP
====================================================== */
/* .gc-nav {
    display: block;
} */

.gc-menu {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu-item {
    position: relative;
}

.menu-item>a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-item>a:hover {
    color: var(--accent);
}

.arrow {
    font-size: 12px;
    opacity: .8;
}

/* ======================================================
   SUBMENU DESKTOP
====================================================== */
.submenu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 420px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
    display: none;
}

.menu-item.has-sub:hover .submenu-wrapper {
    display: block;
}

.submenu-scroll {
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px;
}

.submenu-group {
    margin-bottom: 18px;
}

.submenu-title {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 6px;
}

.submenu-list {
    list-style: none;
    padding-left: 14px;
    border-left: 2px solid #e5e7eb;
}

.submenu-list a {
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    display: block;
    padding: 4px 0;
}

/* ======================================================
   CLOSE BUTTON (DESKTOP HIDDEN)
====================================================== */
.menu-close {
    display: none;
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width: 1000px) {

    /* BURGER VISIBLE */
    .gc-burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 40px;
        height: 36px;
        background: var(--dark);
        border: none;
        border-radius: 8px;
        cursor: pointer;
    }

    .gc-burger span {
        width: 20px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
        margin: 0 auto;
    }

    /* NAV FULLSCREEN */
    /* .gc-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--dark);
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform .35s ease;
        overflow-y: auto;
    }

    .gc-nav.open {
        transform: translateX(0);
    } */

    .menu-close {
        display: block;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 18px;
        padding: 20px;
    }

    .gc-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 0 24px 80px;
    }

    .submenu-wrapper {
        position: static;
        width: 100%;
        background: none;
        box-shadow: none;
        display: block;
    }

    .submenu-scroll {
        max-height: none;
        padding: 0;
    }

    .submenu-title {
        color: #ffffff;
    }

    .submenu-list {
        border-left: 2px solid rgba(255, 255, 255, .2);
    }

    .submenu-list a {
        color: #cbd5f5;
    }
}

body.menu-open {
    overflow: hidden;
}

/* ======================================================
   FOOTER MOBILE SPACING FIX
====================================================== */

@media (max-width: 768px) {

    .gc-footer .gc-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-grid {
        gap: 40px;
    }

}