* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1a1a1a;
    background: #f7f9fc;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1280px, 94%);
    margin: 0 auto;
}

/* ================= HEADER ================= */

.site-header {
    background: linear-gradient(90deg, #214f97 0%, #16396b 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    position: relative;
}

.logo-text {
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.main-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.main-nav a {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.main-nav a.active {
    background: #ffffff;
    color: #16396b;
    box-shadow: 0 4px 14px rgba(0,0,0,0.16);
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
}

.mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.18);
}

.mobile-nav-overlay {
    display: none;
}

.mobile-side-nav {
    display: none;
}

/* ================= HERO ================= */

.hero-old-style {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.hero-old-style::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(17, 27, 43, 0.70), rgba(17, 27, 43, 0.62)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
    z-index: 0;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    min-height: 620px;
    padding: 56px 0;
}

.hero-left {
    flex: 1;
    max-width: 760px;
}

.hero-left h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.08;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0,0,0,0.24);
}

.hero-subtext {
    margin: 0 0 24px;
    color: #eef4ff;
    font-size: 1.16rem;
    font-weight: 600;
    max-width: 760px;
}

.hero-button {
    display: inline-block;
    background: linear-gradient(180deg, #4a8dff 0%, #2f6fed 100%);
    color: #fff;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(47, 111, 237, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(47, 111, 237, 0.38);
    background: linear-gradient(180deg, #5b99ff 0%, #2666e8 100%);
}

.hero-right {
    flex: 0 0 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 320px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,0.22));
}

/* ================= COUNTDOWN ================= */

.countdown-strip {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
    border-top: 1px solid #e5ebf5;
    border-bottom: 1px solid #e5ebf5;
    padding: 34px 0 38px;
}

.countdown-wrap {
    text-align: center;
}

.countdown-label {
    font-size: 1.45rem;
    font-weight: 800;
    color: #173b73;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.countdown-box {
    min-width: 112px;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 16px;
    padding: 18px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.countdown-box span {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: #2f6fed;
    line-height: 1;
    margin-bottom: 6px;
}

.countdown-box small {
    display: block;
    font-size: 0.82rem;
    color: #667085;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.countdown-subtext {
    margin-top: 8px;
    color: #667085;
    font-size: 0.96rem;
    font-weight: 600;
}

/* ================= GENERAL SECTION STYLES ================= */

.updates-section,
.featured-section,
.feedback-section,
.map-section,
.contact-page-section {
    padding: 56px 0 70px;
}

.updates-section h2,
.featured-section h2,
.feedback-section h2,
.map-section h2,
.contact-page-card h2 {
    margin: 0 0 12px;
    color: #1f2937;
    font-size: 2.2rem;
    line-height: 1.15;
}

.section-subtext {
    margin: 0 0 28px;
    color: #667085;
    font-size: 1.02rem;
    max-width: 760px;
}

/* ================= UPDATES ================= */

.updates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.update-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border: 1px solid #e4eaf3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.update-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.09);
}

.update-body {
    padding: 24px;
}

.update-body h3 {
    margin: 0 0 10px;
    font-size: 1.28rem;
    color: #2f6fed;
    line-height: 1.25;
}

.update-date {
    display: inline-block;
    font-size: 0.85rem;
    color: #173b73;
    margin-bottom: 14px;
    font-weight: 800;
    background: #eef4ff;
    padding: 6px 12px;
    border-radius: 999px;
}

.update-body p {
    margin: 0;
    color: #4b5563;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* ================= FEATURED ================= */

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.featured-card {
    background: #ffffff;
    border: 1px solid #e4eaf3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.09);
}

.featured-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #edf2f9;
}

.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777777;
    font-weight: 700;
}

.featured-body {
    padding: 22px;
}

.featured-body h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    color: #1f2937;
    line-height: 1.3;
}

.featured-body p {
    margin: 0 0 14px;
    color: #667085;
    line-height: 1.65;
}

.card-link {
    display: inline-block;
    color: #2f6fed;
    font-weight: 800;
}

.card-link:hover {
    text-decoration: underline;
}

.empty-featured {
    padding: 22px;
    background: #ffffff;
    border: 1px dashed #ccd5e2;
    border-radius: 14px;
    color: #667085;
}

/* ================= FEEDBACK FORM ================= */

.feedback-form {
    max-width: 920px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e4eaf3;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.07);
    padding: 30px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 800;
    color: #344054;
    margin-bottom: 8px;
    font-size: 0.96rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #cfd8e6;
    border-radius: 12px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    color: #1f2937;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2f6fed;
    box-shadow: 0 0 0 4px rgba(47,111,237,0.12);
}

.form-message {
    max-width: 920px;
    margin: 0 auto 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
}

.success-message {
    background: #eef7ee;
    color: #2f7d32;
    border: 1px solid #cae7ca;
}

.error-message {
    background: #fff1f1;
    color: #c62828;
    border: 1px solid #f1c7c7;
}

/* ================= BANNER / PAGE CARDS ================= */

.page-banner {
    background: linear-gradient(90deg, #214f97 0%, #16396b 100%);
    color: #ffffff;
    padding: 56px 0;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.08);
}

.page-banner h1 {
    margin: 0 0 10px;
    font-size: 2.8rem;
    line-height: 1.1;
}

.page-banner p {
    margin: 0;
    font-size: 1.06rem;
    color: #e6eefc;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.contact-page-card {
    background: #ffffff;
    border: 1px solid #e4eaf3;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.contact-page-card p {
    margin: 0 0 14px;
    color: #667085;
}

/* ================= MAP ================= */

.map-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border: 1px solid #e4eaf3;
    background: #ffffff;
}

/* ================= FOOTER ================= */

.site-footer {
    background: #16202f;
    color: #ffffff;
    padding: 22px 0;
    margin-top: 20px;
}

.footer-wrap {
    text-align: center;
    color: #d6deea;
    font-size: 0.95rem;
}

/* ================= MOBILE ================= */

@media (max-width: 1100px) {
    .main-nav {
        gap: 8px;
    }

    .main-nav a {
        padding: 9px 13px;
        font-size: 0.9rem;
    }

    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 950px) {
    .hero-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-right {
        flex: none;
        width: 100%;
        justify-content: flex-start;
    }

    .updates-grid,
    .featured-grid,
    .contact-page-grid,
    .feedback-grid {
        grid-template-columns: 1fr;
    }

    .header-wrap {
        gap: 14px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .mobile-nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 1200;
    }

    .mobile-nav-overlay.open {
        display: block;
    }

    .mobile-side-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(180deg, #214f97 0%, #16396b 100%);
        box-shadow: -8px 0 24px rgba(0,0,0,0.24);
        z-index: 1300;
        transition: right 0.25s ease;
        padding: 20px 18px;
        overflow-y: auto;
    }

    .mobile-side-nav.open {
        right: 0;
    }

    .mobile-side-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 18px;
    }

    .mobile-side-nav-title {
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 800;
    }

    .mobile-close-btn {
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.16);
        color: #ffffff;
        font-size: 1.4rem;
        line-height: 1;
        padding: 8px 12px;
        border-radius: 10px;
        cursor: pointer;
    }

    .mobile-side-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-side-links a {
        color: #ffffff;
        background: rgba(255,255,255,0.08);
        padding: 14px 14px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1rem;
    }

    .mobile-side-links a.active {
        background: #ffffff;
        color: #16396b;
    }

    .logo-text {
        font-size: 1.35rem;
    }
}

@media (max-width: 700px) {
    .countdown-box {
        min-width: 90px;
    }

    .hero-left h1 {
        font-size: 2.4rem;
    }

    .feedback-form {
        padding: 22px;
    }
}