/* ========================
   IMPORTS & VARIABLES
======================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #0b2c55;
    --accent-blue: #3b82f6;
    --accent-light: #60a5fa;
    --accent-gold: #f59e0b;
    --text-dark: #1e293b;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --transition: all 0.3s ease;
}

/* ========================
   GLOBAL STYLES
======================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    padding-top: 56px;
    font-style: normal; /* enforce normal font-style for entire site */
}

/* ========================
   HEADER — CLEAN WHITE
======================== */

.uh-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    border-bottom: 1px solid #e5e7eb;
}

.uh-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

/* Logo */
.uh-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    flex-shrink: 0;
}

.uh-logo img {
    height: 38px;
    transition: var(--transition);
}

.uh-logo:hover img {
    transform: scale(1.04);
}

/* ========================
   NAVIGATION
======================== */

.uh-nav {
    display: flex;
    align-items: center;
}

.uh-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.uh-nav-link {
    text-decoration: none;
    font-weight: 500;
    color: var(--primary-blue);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.uh-nav-link:hover {
    color: var(--accent-blue);
}

.uh-nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 2px;
    background: var(--accent-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.uh-nav-link:hover::after {
    transform: scaleX(1);
}

/* ========================
   DROPDOWN
======================== */

.uh-dropdown {
    position: relative;
}

.uh-dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: rgba(11, 44, 85, 0.5);
}

.uh-dropdown:hover .uh-dropdown-icon {
    transform: rotate(180deg);
    color: var(--accent-blue);
}

.uh-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    list-style: none;
    border: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: var(--transition);
    margin-top: 0;
    z-index: 100;
}

.uh-dropdown:hover .uh-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.uh-dropdown-item {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.uh-dropdown-item:hover {
    background: #f0f5ff;
    color: var(--accent-blue);
}

/* ========================
   AWARD BADGE — Compact
======================== */

.uh-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 6px;
    background: linear-gradient(135deg, #fef9e7 0%, #fdf2d5 100%);
    border: 1px solid #f0d060;
    border-radius: 20px;
    flex-shrink: 0;
    cursor: default;
    animation: uh-pulse 3s ease-in-out infinite;
}

@keyframes uh-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
    }
}

.uh-badge-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.uh-badge-icon i {
    font-size: 13px;
    color: #fff;
}

.uh-badge-text {
    font-size: 10px;
    font-weight: 700;
    color: #92400e;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

/* ========================
   MOBILE MENU
======================== */

.uh-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.uh-mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========================
   RESPONSIVE HEADER
======================== */

@media (max-width: 900px) {
    body {
        padding-top: 56px;
    }

    .uh-mobile-toggle {
        display: flex;
    }

    .uh-badge {
        display: none;
    }

    .uh-nav {
        position: fixed;
        top: 56px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        padding: 16px 0;
        transition: 0.35s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 56px);
        overflow-y: auto;
        z-index: 9998;
    }

    .uh-nav.active {
        left: 0;
    }

    .uh-nav-list {
        flex-direction: column;
        gap: 0;
    }

    .uh-nav-link {
        display: block;
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .uh-nav-link::after {
        display: none;
    }

    .uh-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        border-radius: 0;
        padding: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .uh-dropdown.open .uh-dropdown-menu {
        display: block;
    }

    .uh-dropdown-item {
        padding-left: 40px;
    }
}

/* ========================
   FOOTER
======================== */

.uh-footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d3a6b 100%);
    color: var(--text-white);
    padding: 50px 40px 24px;
    margin-top: 60px;
}

.uh-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.uh-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.uh-footer-col h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-white);
    position: relative;
    padding-bottom: 8px;
}

.uh-footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 1px;
}

.uh-footer-col p {
    font-size: 13px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.uh-footer-links {
    list-style: none;
}

.uh-footer-links li {
    margin-bottom: 8px;
}

.uh-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.uh-footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.uh-footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.uh-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 8px;
    color: var(--accent-light);
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
}

.uh-social-icon:hover {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.uh-footer-email {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
}

.uh-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.uh-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.uh-footer-brand img {
    height: 36px;
}

/* ========================
   RESPONSIVE FOOTER
======================== */

@media (max-width: 768px) {
    .uh-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .uh-footer {
        padding: 36px 20px 20px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .uh-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}