:root {
    --blue: #003087;
    --blue-deep: #001d55;
    --blue-mid: #0a4db5;
    --blue-light: #1a6bd4;
    --gold: #C9972A;
    --gold-light: #E8B84B;
    --gold-pale: #f5e6c0;
    --white: #ffffff;
    --off-white: #f8f5ee;
    --text: #1a1a2e;
    --text-muted: #5a6070;
    --border: rgba(0,48,135,.12);
    --shadow: 0 4px 32px rgba(0,30,100,.10);
    --radius: 4px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans',sans-serif;
    background: var(--off-white);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: min(1200px,92%);
    margin: auto;
}

/* ===========================
   NAVBAR
=========================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 25, 80, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--gold);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.nav-inner {
    width: min(1400px, 95%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.eu-navbar-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

    .logo-text span:first-child {
        font-family: "Cormorant Garamond", serif;
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        white-space: nowrap;
        letter-spacing: 0.02em;
    }

    .logo-text span:last-child {
        color: var(--gold-light);
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 2.5px;
        font-weight: 600;
        white-space: nowrap;
    }

/* Centralized Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 4px;
}

    .nav-links li {
        display: flex;
        align-items: center;
        margin: 0;
    }

    .nav-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.85);
        padding: 8px 12px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
        border-radius: 4px;
        transition: all 0.2s ease;
        text-decoration: none;
    }

        .nav-links a:hover {
            color: var(--gold-light);
            background: rgba(255, 255, 255, 0.08);
        }

.nav-cta {
    background: var(--gold) !important;
    color: var(--blue-deep) !important;
    border-radius: 4px;
    padding: 8px 16px !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(201, 151, 42, 0.3);
}

    .nav-cta:hover {
        background: var(--gold-light) !important;
        color: var(--blue-deep) !important;
        transform: translateY(-1px);
    }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        margin: 5px 0;
        background: #fff;
        transition: all 0.3s ease;
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(0, 20, 65, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 24px;
    border-bottom: 2px solid var(--gold);
    z-index: 999;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.mobile-menu a:hover {
    color: var(--gold-light);
}

/* =========================================================
   INTERNATIONAL OFFICE - USER ACCOUNT
   ========================================================= */

.eu-navbar-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 0;
    position: relative;
}

.eu-user-dropdown {
    position: relative;
}

.eu-user-btn,
.eu-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    padding: 8px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    text-decoration: none;
}

    .eu-user-btn:hover,
    .eu-login-btn:hover {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.6);
        color: #fff;
    }

    .eu-user-btn i {
        font-size: 16px;
    }

.user-arrow {
    font-size: 9px;
    margin-left: 3px;
    opacity: 0.8;
}

/* DROPDOWN */

.eu-user-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 200px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    display: none;
    z-index: 99999;
}

.eu-user-dropdown:hover .eu-user-menu {
    display: block;
}

.eu-user-item {
    display: block;
    color: #12366b;
    text-decoration: none;
    padding: 10px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

    .eu-user-item:hover {
        background: #f4f6f9;
        color: var(--blue-mid);
    }

.eu-user-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 6px 0;
}

.eu-login-icon {
    margin-right: 2px;
}


/* ===========================
   Announcement
=========================== */

.announcement-title {
    font-size: 2.6rem;
    color: #0d2f6f;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}

.announcement-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.announcement-section h5 {
    color: #0d2f6f;
    font-weight: 700;
    margin-bottom: 12px;
}

.announcement-section p {
    line-height: 1.9;
    text-align: justify;
}

.announcement-details {
    line-height: 2;
    text-align: justify;
}

    .announcement-details p {
        margin-bottom: 18px;
    }

@media(max-width:992px) {

    .announcement-title {
        font-size: 2rem;
        margin-top: 20px;
    }
}

.announcement-content {
    line-height: 2;
    text-align: justify;
    font-size: 16px;
    color: #444;
}

    .announcement-content p {
        margin-bottom: 20px;
    }

.badge {
    font-size: .75rem;
}

.container.py-5 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}


/* ===========================
   BODY OFFSET
=========================== */

main {
    padding-top: 105px;
    min-height: 70vh;
}

/* ===========================
   FOOTER
=========================== */

footer {
    background: #000d2e;
    padding: 70px 0 35px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .nav-logo {
    margin-bottom: 25px;
}

.footer-tagline {
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: #fff;
    transition: .25s;
}

    .social-btn:hover {
        background: var(--gold);
        color: var(--blue-deep);
    }

.footer-col h5 {
    color: var(--gold);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 11px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,.55);
    transition: .25s;
    font-size: 14px;
}

    .footer-col a:hover {
        color: #fff;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copy {
    color: rgba(255,255,255,.4);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

    .footer-links a {
        color: rgba(255,255,255,.4);
        font-size: 13px;
    }

        .footer-links a:hover {
            color: #fff;
        }

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width: 1280px) {
    .nav-links a {
        padding: 6px 8px;
        font-size: 11px;
    }

    .logo-text span:first-child {
        font-size: 20px;
    }

    .logo-text span:last-child {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .eu-navbar-logo {
        width: 44px;
        height: 44px;
    }
}

@media(max-width:992px) {

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .logo-text span:first-child {
        font-size: 18px;
    }

    .logo-text span:last-child {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .eu-navbar-logo {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
