* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f7fb;
    color: #0b1a2e;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #0b1a2e;
    color: #b0c7de;
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 2px solid #c52a2a;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar a {
    color: #b0c7de;
    margin: 0 8px;
    transition: 0.2s;
    text-decoration: none;
}

.top-bar a:hover {
    color: #facc15;
}

.top-bar .social a {
    margin: 0 6px;
    font-size: 0.9rem;
}

/* ===== HEADER ===== */
.main-header {
    background: #ffffff;
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(2px);
    border-bottom: 1px solid rgba(197, 42, 42, 0.15);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0b1a2e;
    letter-spacing: -0.5px;
}

.logo h1 span {
    color: #c52a2a;
}

.logo small {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: #5a6f87;
    letter-spacing: 1px;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 28px;
    font-weight: 600;
    align-items: center;
}

.nav-links a {
    color: #1e2f44;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #c52a2a;
    transition: 0.25s;
}

.nav-links a:hover {
    color: #c52a2a;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #c52a2a;
}

.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #c52a2a;
    padding: 8px 20px;
    border-radius: 40px;
    color: #c52a2a;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-outline:hover {
    background: #c52a2a;
    color: white;
    box-shadow: 0 6px 14px rgba(197, 42, 42, 0.25);
}

.btn-solid {
    background: #c52a2a;
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-solid:hover {
    background: #a31f1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(197, 42, 42, 0.3);
}

.logo {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h4 {
    font-size: 25px;
    margin: 0;
    color: #feb504;
}

.logo .top-title {
    font-size: 15.5px;
    color: grey;
    margin: 0;
}

.logo .sub-title {
    font-size: 5.9px;
    color: #9d242c;
    margin: 0;
}

.logo img {
    height: 70px;
    margin-right: 0.5em;
}

/* ===========================
   MOBILE NAVIGATION
=========================== */

.menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 28px;
    color: #0b1a2e;
    cursor: pointer;
}

@media (max-width:768px) {

    .header-flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        flex: 1;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #fff;
        margin-top: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
        overflow: hidden;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .header-actions {
        width: 100%;
        margin-top: 15px;
        display: none;
        justify-content: center;
        gap: 10px;
    }

    .header-actions.active {
        display: flex;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #0b1a2e;
    color: #b0c7de;
    padding: 48px 0 24px;
    margin-top: 40px;
    border-top: 4px solid #c52a2a;
}

.footer a {
    color: #b0c7de;
    text-decoration: none;
    transition: 0.2s;
}

.footer a:hover {
    color: #facc15;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.footer-bottom {
    border-top: 1px solid #1e3550;
    padding-top: 24px;
    margin-top: 32px;
    text-align: center;
    font-size: 0.85rem;
}

@media (max-width:768px) {

    .container {
        padding: 0 15px;
    }

    .header-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        position: relative;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex: 1;
    }

    .logo img {
        width: 55px;
        height: 55px;
        margin-right: 10px;
    }

    .top-title {
        display: none;
    }

    .logo h4 {
        font-size: 18px;
    }

    .sub-title {
        font-size: 14px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        font-size: 28px;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
        overflow: hidden;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        gap: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}