* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f6f8;
    color: #222;
}

.container {
     width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    
}

/* HEADER */
.header {
    background: #ffffff;
    padding: 14px 0;
    border-bottom: 1px solid #e6e6e6;
}

.nav {
    display: flex;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.site-text h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.site-text p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* HERO */
.hero {
    background: #2d5882;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
}

.hero p {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 18px;
    line-height: 1.6;
}



/* CATEGORY AREA */
.categories {
    background: #ececec;
    padding: 20px 0;
}

.category-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* CATEGORY BUTTONS / LINKS */
.category-container button,
.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    color: #334b68;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.category-container button:hover,
.category-link:hover {
    transform: translateY(-1px);
}

.category-container button.active,
.category-link.active {
    background: #f4b400;
    color: #ffffff;
}

.category-container i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* MAIN CONTENT */
.main-content {
    padding: 48px 0 20px;
    flex: 1;
}

/* SECTION */
.section h2 {
    margin: 0 0 28px;
    font-size: 28px;
    font-weight: 700;
    color: #1f1f1f;
}

/* CARD */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.tag {
    display: inline-block;
    background: #32699f;
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.date {
    margin: 0 0 18px;
    color: #6b7280;
    font-size: 14px;
}

.card h3 {
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #222;
}

/* EMPTY STATE */
.empty-state {
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    color: #6b7280;
}

.empty-state i {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    opacity: 0.7;
}

.empty-state h3 {
    margin: 0 0 8px;
    color: #374151;
    font-size: 22px;
}

.empty-state p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* ===== FAQ PAGE ===== */
.faq-page {
    background: #f1f3f5;
    padding: 60px 0 90px;
}

.faq-container h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #d9dee5;
    padding: 18px 22px;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
}

.faq-question i {
    width: 18px;
    height: 18px;
}

.faq-answer {
    margin-top: 10px;
    font-size: 15px;
    color: #444;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* FOOTER */
.footer {
    background: #005ebc;
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 36px;
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1;
    min-width: 240px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.footer-brand h3 {
    margin: 0;
    font-size: 18px;
    color: #2d5882;
    font-weight: 700;
}

.footer-brand p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #6b7280;
    letter-spacing: 0.5px;
}

.footer-description {
    color: #555;
    font-style: italic;
    line-height: 1.7;
    max-width: 420px;
}

.footer-socials {
    margin-top: 22px;
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: #eef3f8;
    color: #2d5882;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-socials a i,
.footer-middle p i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-middle h4,
.footer-right h4 {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #2d5882;
    margin: 0 0 18px;
}

.footer-middle p {
    margin: 12px 0;
    color: #444;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-right a {
    display: block;
    margin-bottom: 14px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.footer-right a:hover,
.footer-bottom-links a:hover {
    color: #2d5882;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #9a9a9a;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    color: #9a9a9a;
    font-weight: 600;
}


body {
    font-family: "Poppins", Arial, sans-serif;
    background: #f5f9fc;
    color: #1d2b3a;
}


/* keep the rest of the content lower on page */
.main-content {
    padding: 0 0 20px;
}

/* FOOTER stays as-is, only spacing adjusted */
.footer {
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .hero-center h1 {
        font-size: 48px;
    }

    .hero-center p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .brand-logo {
        width: 58px;
        height: 58px;
    }

    .brand-text h3 {
        font-size: 20px;
    }

    .brand-text p {
        font-size: 14px;
    }


    .hero-center {
        padding: 20px 18px 60px;
    }

    .hero-center h1 {
        font-size: 34px;
        line-height: 1.16;
    }

    .hero-center p {
        font-size: 15px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .site-logo {
        width: 52px;
        height: 52px;
    }

    .site-text h3 {
        font-size: 15px;
    }

    .site-text p {
        font-size: 12px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 15px;
    }


    .category-container button,
    .category-link {
        font-size: 14px;
        padding: 12px 18px;
    }

    .main-content {
        padding-top: 36px;
    }

    .faq-title {
        font-size: 12px;
        line-height: 1.2;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

html {
    scroll-behavior: smooth;
}


.about-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-box {
    flex: 1;
    min-width: 280px;
    max-width: 480px;
    text-align: center;
}

.about-box h2 {
    margin: 0 0 26px;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
}

.about-box p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.about-divider {
    width: 1px;
    background: #d6d6d6;
    min-height: 220px;
}

.values-banner {
    background: #003d7a;
    padding: 48px 20px;
    text-align: center;
}

.values-content h2 {
    margin: 0 0 14px;
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.values-content h2 span {
    color: #f4b400;
}

.values-content p {
    margin: 0;
    font-size: 18px;
    color: #f3f3f3;
}

@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        gap: 28px;
    }

    .about-divider {
        display: none;
    }

    .about-box h2 {
        font-size: 24px;
    }

    .about-box p {
        font-size: 16px;
    }

    .values-content h2 {
        font-size: 26px;
    }

    .values-content p {
        font-size: 15px;
    }
}

/* NAV + SEARCH WRAPPER */
.nav-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px; 
}

/* SEARCH BAR */
.search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #aaa;
    border-radius: 999px;
    padding: 10px 18px;
    width: 500px;         
    background: rgba(255, 255, 255, 0.25); 
    backdrop-filter: blur(6px);             
    transition: all 0.2s ease;
}


.search-container input {
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
    font-size: 15px;
    color: #222;
}

.search-container i {
    width: 18px;
    height: 18px;
    color: #333;
}

.search-container:focus-within {
    border-color: #fdc500;
    background: rgba(255, 255, 255, 0.4);
}

/* ===== NEW MINIMAL FOOTER ===== */
.footer-minimal {
    background: #0057b8 !important;
    margin-top: 0;
    padding: 18px 0;
    border-top: none;
}

#site-footer {
    background: #0057b8 !important;
}

.footer-minimal-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}

.footer-minimal-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 330px;
    flex-shrink: 0;
}

.footer-minimal-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.footer-minimal-text h4 {
    margin: 0 0 3px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-minimal-text p {
    margin: 0;
    color: #dfe8f0;
    font-size: 12px;
    line-height: 1.3;
}

.footer-minimal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    flex: 1;
}

.footer-minimal-nav a {
    color: #edf2f7;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.footer-minimal-nav a:hover {
    color: #fdc500;
}

.footer-minimal-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-width: auto;
    flex-shrink: 0;
}

.footer-minimal-social h4 {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.footer-social-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    color: #1f4972;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social-circle i,
.footer-social-circle svg {
    width: 18px;
    height: 18px;
}

/* mobile */
@media (max-width: 900px) {
    .footer-minimal {
        padding: 22px 0;
    }

    .footer-minimal-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .footer-minimal-left {
        min-width: 0;
    }

    .footer-minimal-nav {
        justify-content: flex-start;
        gap: 12px 18px;
    }

    .footer-minimal-social {
        align-items: center;
    }
}

/* ACTIVE NAV */
.active-link {
    color: #f4b400 !important;
}


.back-link {
    display: inline-block;
    margin-bottom: 120px;
    color: #a6a6a6;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.related-news h3 {
    margin: 0 0 34px;
    font-size: 28px;
    color: #2d5882;
}

.related-item {
    display: block;
    text-decoration: none;
    margin-bottom: 34px;
    color: inherit;
}

.related-category {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    color: #9a9a9a;
    font-weight: 700;
    letter-spacing: 1px;
}

.related-item h4 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.35;
    color: #1a1a1a;
}

.related-item p {
    margin: 0;
    font-size: 12px;
    color: #b0b0b0;
    letter-spacing: 0.5px;
}

.news-article h1 {
    margin: 0 0 18px;
    font-size: 32px;
    line-height: 1.2;
    color: #1c1c1c;
    max-width: 900px;
}

.news-meta {
    margin: 0 0 26px;
    font-size: 11px;
    color: #a6a6a6;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.news-feature-image {
    float: right;
    width: 360px;
    margin: 8px 0 24px 34px;
}

.news-image-placeholder {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, #cfd5db, #bfc8d1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d5882;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    padding: 20px;
}

.news-body p {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.75;
    color: #2a2a2a;
    max-width: 900px;
}


@media (max-width: 768px) {


    .news-article h1 {
        font-size: 26px;
    }

    .news-body p {
        font-size: 16px;
    }

    .related-news h3 {
        font-size: 22px;
    }

    .related-item h4 {
        font-size: 18px;
    }
}

/* ANNOUNCEMENTS PAGE */
.announcements-page {
    padding: 70px 0 90px;
    background: #efefef;
}

.announcements-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    margin: 0 0 12px;
    color: #2d5882;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.announcements-header h1 {
    margin: 0 0 14px;
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 800;
}

.section-subtext {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.announcement-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: inherit;
}

.announcement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

.announcement-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    align-items: stretch;
}

.announcement-image {
    min-height: 320px;
    background: linear-gradient(135deg, #becbd8, #8ba7c2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    padding: 20px;
}

.announcement-content {
    padding: 28px;
}

.announcement-meta {
    margin: 0 0 14px;
    font-size: 12px;
    color: #8d8d8d;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.announcement-card h2,
.announcement-card h3 {
    margin: 0 0 16px;
    color: #181818;
    line-height: 1.25;
}

.announcement-card h2 {
    font-size: 34px;
}

.announcement-card h3 {
    font-size: 24px;
}

.announcement-card p {
    margin: 0 0 18px;
    color: #4c4c4c;
    font-size: 16px;
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    color: #2d5882;
    font-weight: 700;
    font-size: 15px;
}

@media (max-width: 992px) {
    .announcements-grid {
        grid-template-columns: 1fr;
    }

    .announcement-card.featured {
        grid-template-columns: 1fr;
    }

    .announcement-image {
        min-height: 220px;
    }

    .announcements-header h1 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .announcements-page {
        padding: 45px 0 60px;
    }

    .announcements-header h1 {
        font-size: 28px;
    }

    .section-subtext {
        font-size: 15px;
    }

    .announcement-card h2 {
        font-size: 26px;
    }

    .announcement-card h3 {
        font-size: 20px;
    }
}

/* ===== ANNOUNCEMENTS / NEWS LIST PAGE ===== */
.news-list-page {
    background: #efefef;
    padding: 70px 0 100px;
}

.news-list-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.news-list-title {
    margin: 0 0 10px;
    color: #013160;
    font-size: 46px;
    font-weight: 900;
}


.news-list-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: start;
}

.news-main-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-main-image {
     position: relative;
    width: 100%;
    height: 650px;
    background: #c9cfd6;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 5px;
}

.news-main-dot {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #ececec;
    border-radius: 50%;
    left: 118px;
    top: 108px;
}

.news-main-wave {
    position: absolute;
    left: -10px;
    bottom: -8px;
    width: 100%;
    height: 220px;
    background: #ececec;
    border-radius: 52% 60% 0 0;
    clip-path: path("M 0 160 Q 80 70 160 150 T 320 120 T 520 80 T 760 170 V 260 H 0 Z");
}

/* fallback if clip-path path is unsupported */
@supports not (clip-path: path("M 0 0")) {
    .news-main-wave {
        width: 120%;
        height: 190px;
        left: -30px;
        bottom: -70px;
        border-radius: 50%;
        transform: rotate(-8deg);
    }
}

.news-main-content {
    max-width: 100%;
}

.news-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 700;
    color: #9f9f9f;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.news-main-content h2 {
    margin: 0 0 10px;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b1b;
}

.news-main-meta {
    margin: 0 0 14px;
    font-size: 11px;
    color: #b0b0b0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-main-excerpt {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.7;
    color: #606060;
    max-width: 94%;
}

.news-main-link {
    color: #b7b7b7;
    font-size: 14px;
    font-weight: 600;
}

.news-side-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.news-side-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    min-height: 100px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 22px;
    transition: 0.3s ease;
}
.news-side-item:hover {
    background: #ef4b43;
}

.news-side-thumb {
    width: 140px;
    height: 100px;
    min-width: 140px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.news-side-item:hover h3,
.news-side-item:hover p,
.news-side-item:hover .news-kicker {
    color: white;
}

.thumb-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #ececec;
    border-radius: 50%;
    left: 14px;
    top: 35px;
}

.thumb-wave {
    position: absolute;
    right: -8px;
    bottom: -22px;
    width: 76px;
    height: 82px;
    background: #ececec;
    border-radius: 55% 55% 0 55%;
    transform: rotate(-8deg);
}

.news-side-text h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    font-weight: 700;
}

.news-side-text p {
    margin: 0;
    font-size: 12px;
    color: #888;
    letter-spacing: 0;
    text-transform: none;
}

.advisory-card {
    background: transparent;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.advisory-card:hover {
    background-color: #f1f6fb;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(45, 88, 130, 0.10);
}

.advisory-card:hover strong {
    color: #2d5882;
}


.advisory-card .news-side-text h3,
.advisory-card .news-side-text p {
    color: #fff;
}

.advisory-kicker {
    color: #ffd84f;
}

.advisory-thumb {
    background: #d7dde3;
}

.faded-item {
    opacity: 0.45;
}

@media (max-width: 992px) {
    .news-list-grid {
        grid-template-columns: 1fr;
    }

    .news-list-title {
        font-size: 42px;
    }

    
}

@media (max-width: 768px) {
    .news-list-page {
        padding: 45px 0 70px;
    }

    .news-list-title {
        font-size: 34px;
    }

    .news-main-image {
         position: relative;
    width: 100%;
    height: 650px;
    background: #c9cfd6;
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: 24px;
    }

    .news-main-content h2 {
        font-size: 22px;
    }

    .news-side-item {
         transition: 0.3s ease;
    }

    .news-side-thumb {
        width: 90px;
        height: 78px;
    }

    .news-side-text h3 {
        font-size: 15px;
    }
}

/* ===== NEWS ACTIONS ===== */
.news-actions-section {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.news-actions {
    display: flex;
    gap: 12px;
}

.news-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #2d5882;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.news-action-btn i {
    width: 16px;
    height: 16px;
}

/* ===== QR ===== */
.news-qr-box {
    text-align: center;
}

.news-qr-box img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    margin-bottom: 6px;
}

.news-qr-box p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* ===== COMMENTS ===== */
.news-comments {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 25px;
}

.news-comments h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.comment-input {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.comment-input input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.comment-input button {
    padding: 10px 16px;
    background: #f4b400;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.comment-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 4px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e9eff4;
    border-radius: 0;
}
.comment-item strong {
    width: 200px;
    flex-shrink: 0;
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.comment-item p {
    margin: 0 !important;
    padding: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #4b5563;;
    color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
    .news-actions-section {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* cleaner article page */
.news-detail-page {
    background: #f1f3f5;
    padding: 40px 0 80px;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: start;
}

.news-sidebar {
    padding-top: 8px;
}

.back-link {
    display: inline-block;
    margin-bottom: 60px;
    color: #8f8f8f;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.related-news h3 {
    margin: 0 0 24px;
    font-size: 18px;
    color: #2d5882;
}

.related-item {
    display: block;
    text-decoration: none;
    margin-bottom: 22px;
    color: inherit;
}

.related-category {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    color: #9d9d9d;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.related-item h4 {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.35;
    color: #1d1d1d;
}

.related-item p {
    margin: 0;
    font-size: 10px;
    color: #b0b0b0;
    text-transform: uppercase;
}

.news-article {
    max-width: 100%;
}

.news-article h1 {
    margin: 0 0 10px;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    color: #1b1b1b;
}

.news-meta {
    margin: 0 0 22px;
    font-size: 12px;
    color: #7f7f7f;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-article-card {
    background: #ffffff;
    border: 1px solid #d8dde3;
    padding: 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.news-feature-image {
    float: right;
    width: 280px;
    margin: 0 0 20px 24px;
}

.news-image-placeholder {
    width: 100%;
    height: 210px;
    background: #d8dee6;
    border: 1px solid #c7ced6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f6275;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    padding: 20px;
}

.news-body p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #2c2c2c;
}

/* actions + qr */
.news-utility-panel {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #dfe3e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.news-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.news-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    color: #1f3c5a;
    text-decoration: none;
    border: 1px solid #bfc9d4;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}

.news-action-btn i {
    width: 16px;
    height: 16px;
}

.news-qr-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #d8e0e8;
    padding: 10px 12px;
}

.news-qr-box img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    display: block;
}

.news-qr-box p {
    margin: 0;
    font-size: 12px;
    color: #5e6a75;
    max-width: 150px;
    line-height: 1.5;
}

/* comments */
.news-comments {
    margin-top: 20px;
    background: #ffffff;
    border: 1px solid #d9dee5;
    padding: 24px 28px;
}

.news-comments h3 {
    margin: 0 0 14px;
    font-size: 22px;
    color: #1a1a1a;
}

.comment-input {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.comment-input input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #c8d0d8;
    font-size: 14px;
    background: #fcfcfc;
}

.comment-input button {
    padding: 12px 18px;
    background: #f0b400;
    border: 1px solid #d8a400;
    font-weight: 700;
    cursor: pointer;
    color: #1a1a1a;
}


.comment-item:last-child {
    border-bottom: none;
}

.comment-item:first-child {
    border-top: none;
    padding-top: 0;
}

.comment-item strong {
    display: block;
    color: #172028;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.comment-item p {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 992px) {
    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .back-link {
        margin-bottom: 28px;
    }

    .news-feature-image {
        float: none;
        width: 100%;
        margin: 0 0 20px;
    }

    .news-utility-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-qr-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .news-article h1 {
        font-size: 28px;
    }

    .news-article-card,
    .news-comments {
        padding: 18px;
    }

    .news-body p {
        font-size: 15px;
    }

    .comment-input {
        flex-direction: column;
    }
}

/* ===== EXECUTIVE ORDERS PAGE ===== */
.eo-page {
    background: #f1f3f5;
    padding: 55px 0 90px;
}

.eo-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
}

.eo-sidebar {
    padding-top: 10px;
}

.eo-title {
    margin: 0 0 10px;
    color: #013160;
    font-size: 46px;
    font-weight: 900;
}

.eo-label {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eo-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eo-item {
    text-decoration: none;
    color: #1f1f1f;
    font-size: 18px;
    font-weight: 700;
    padding-left: 10px;
    border-left: 4px solid transparent;
    display: block;
}

.eo-item.active {
    color: #1E3A8A;
    border-left: 4px solid #005ebc;
    font-weight: 800;
}
.eo-content h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.28;
    color: #1c1c1c;
    font-weight: 800;
    max-width: 850px;
}

.eo-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.eo-print {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid #cfd6dd;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.eo-print i {
    width: 20px;
    height: 20px;
    color: #4b5966;
}

.eo-document-card {
    background: #ffffff;
    border: 1px solid #d9dee5;
    padding: 28px 32px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.eo-issued {
    margin: 0 0 18px;
    font-size: 13px;
    color: #6a7580;
    font-weight: 600;
}

.eo-document-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #1f1f1f;
    font-weight: 800;
}

.eo-document-card p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #2f2f2f;
}

.eo-sections {
    margin-top: 18px;
    padding-left: 10px;
}

.eo-tools {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #e2e6ea;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.eo-tool-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #ffffff;
    color: #1f3c5a;
    text-decoration: none;
    border: 1px solid #bfc9d4;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}

.eo-tool-btn i {
    width: 16px;
    height: 16px;
}

.eo-qr {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #d8e0e8;
    padding: 10px 12px;
}

.eo-qr img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    display: block;
}

.eo-qr p {
    margin: 0;
    font-size: 12px;
    color: #5e6a75;
    max-width: 150px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .eo-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .eo-title {
        font-size: 44px;
    }

    .eo-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .eo-page {
        padding: 40px 0 70px;
    }

    .eo-content h1 {
        font-size: 24px;
    }

    .eo-document-card {
        padding: 20px 18px;
    }

    .eo-document-card p {
        font-size: 15px;
    }

    .eo-tools {
        flex-direction: column;
        align-items: flex-start;
    }

    .eo-qr {
        width: 100%;
    }
}

/* ===== MONTHLY ACHIEVEMENTS PAGE ===== */
.achievements-page {
    background: #f1f3f5;
    padding: 60px 0 90px;
}

.achievements-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: start;
}

.achievements-left {
    max-width: 640px;
}

.achievements-title {
    margin: 0 0 26px;
    font-size: 58px;
    font-weight: 800;
    color: #1c1c1c;
    line-height: 1.05;
}

.achievements-subtitle {
    margin: 0 0 18px;
    font-size: 24px;
    font-weight: 800;
    color: #1d1d1d;
}

.achievements-subtitle span {
    color: #2d5882;
}

.achievement-stat {
    display: inline-block;
    background: #0a3f74;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    padding: 18px 26px;
    min-width: 420px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 22px;
}

.achievement-text p {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.8;
    color: #2f2f2f;
}

.achievements-right {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: start;
}

.achievement-image-box {
    position: relative;
    width: 100%;
    height: 330px;
    background: #cfd6dd;
    overflow: hidden;
    border-radius: 8px;
}

.achievement-dot {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #ececec;
    border-radius: 50%;
    left: 0;
    top: 46%;
    transform: translate(-30%, -50%);
}

.achievement-wave {
    position: absolute;
    right: -12px;
    bottom: -18px;
    width: 72%;
    height: 64%;
    background: #ececec;
    border-radius: 55% 55% 0 55%;
    transform: rotate(-8deg);
}

.achievement-video-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achievement-video-thumb {
    width: 100%;
    height: 200px;
    background: #cfd6dd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.achievement-video-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 6px;
    background: #b9c2cb;
}

.achievement-video-thumb i {
    width: 52px;
    height: 52px;
    color: #f4f4f4;
    padding: 12px;
    border: 4px solid #f4f4f4;
    border-radius: 50%;
}

.achievement-video-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #1f1f1f;
    font-weight: 700;
}

.achievement-readmore {
    grid-column: 2;
    justify-self: start;
    display: inline-block;
    margin-top: 12px;
    background: #f0b400;
    color: #1b1b1b;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    padding: 16px 34px;
    border-radius: 8px;
}

@media (max-width: 1100px) {
    .achievements-layout {
        grid-template-columns: 1fr;
    }

    .achievements-right {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .achievements-page {
        padding: 40px 0 70px;
    }

    .achievements-title {
        font-size: 40px;
    }

    .achievements-subtitle {
        font-size: 20px;
    }

    .achievement-stat {
        min-width: auto;
        width: 100%;
        font-size: 21px;
    }

    .achievement-text p {
        font-size: 15px;
    }

    .achievements-right {
        grid-template-columns: 1fr;
    }

    .achievement-readmore {
        grid-column: auto;
        justify-self: start;
    }

    .achievement-image-box {
        height: 260px;
    }
}

/* ===== SERVICE GUIDES PAGE ===== */
.guides-page {
    background: #f1f3f5;
    padding: 55px 0 90px;
}

.guides-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: start;
}

.guides-sidebar {
    padding-top: 10px;
}

.guides-title {
    margin: 0 0 34px;
    font-size: 54px;
    font-weight: 800;
    color: #1c1c1c;
    line-height: 1.05;
}

.guides-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guide-item {
    text-decoration: none;
    color: #1f1f1f;
    font-size: 16px;
    font-weight: 700;
    padding-left: 14px;
    border-left: 4px solid transparent;
}

.guide-item.active {
    color: #f0b400;
    border-left: 4px solid #2d5882;
}

.guides-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.guides-content h1 {
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.25;
    color: #1c1c1c;
    font-weight: 800;
}

.guides-meta {
    margin: 0;
    font-size: 14px;
    color: #2d5882;
    font-weight: 700;
}

.guides-print {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid #cfd6dd;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.guides-print i {
    width: 20px;
    height: 20px;
    color: #4b5966;
}

.guides-document-card {
    background: #ffffff;
    border: 1px solid #d9dee5;
    padding: 28px 32px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.guides-document-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 800;
    color: #1f1f1f;
}

.guides-steps {
    margin-bottom: 24px;
}

.guides-steps p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #2f2f2f;
}

.guides-box {
    background: #ededed;
    padding: 20px 26px;
    margin-top: 18px;
}

.guides-box h4 {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 800;
    color: #1f1f1f;
}

.guides-box ul {
    margin: 0;
    padding-left: 22px;
}

.guides-box li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #2f2f2f;
    line-height: 1.6;
}

.guides-bottom-tools {
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.guides-line {
    flex: 1;
    height: 10px;
    background: #005ebc;
    margin-top: 8px;
}

.guides-qr img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    display: block;
}

@media (max-width: 992px) {
    .guides-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .guides-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .guides-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .guides-page {
        padding: 40px 0 70px;
    }

    .guides-content h1 {
        font-size: 24px;
    }

    .guides-document-card {
        padding: 20px 18px;
    }

    .guides-steps p,
    .guides-box li {
        font-size: 15px;
    }

    .guides-bottom-tools {
        flex-direction: column;
    }

    .guides-line {
        width: 100%;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    background: #f1f3f5;
    padding: 60px 0 90px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h1 {
    margin: 0 0 10px;
    color: #013160;
    font-size: 46px;
    font-weight: 900;
}


.contact-block {
    margin-bottom: 42px;
}

.contact-label {
    margin: 0 0 6px;
    font-size: 14px;
    color: #9b9b9b;
    font-weight: 600;
}

.contact-value {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #1f1f1f;
    font-weight: 700;
}

.contact-form-area {
    padding-top: 10px;
    display: flex;
    justify-content: center;
}


.contact-details-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-details-card h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #143657;
}

.contact-details-text {
    color: #555;
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-detail-section {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e8e8e8;
}

.contact-detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-detail-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5882;
}

.contact-detail-section p {
    margin: 6px 0;
    color: #333;
    line-height: 1.6;
}

.map-embed {
    margin-top: 12px;
    border-radius: 14px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-area {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0 70px;
    }

    .contact-details-card {
        padding: 22px;
    }

    .contact-details-card h2 {
        font-size: 24px;
    }

    .contact-detail-section h3 {
        font-size: 18px;
    }
}

.contact-details-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-details-card h2 {
    font-size: 34px;
    margin-bottom: 14px;
    color: #143657;
    font-weight: 800;
}

.contact-details-text {
    color: #555;
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 16px;
}

.contact-detail-section {
    margin-bottom: 28px;
}

.contact-detail-section h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #143657;
    font-weight: 800;
}

.contact-detail-section p {
    margin: 8px 0;
    color: #333;
    line-height: 1.7;
    font-size: 17px;
}

.hotline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 14px;
}

.hotline-card {
    background: linear-gradient(135deg, #ecf6ff, #e3f1ff);
    border: 1px solid #c6e3ff;
    border-left: 6px solid #3a94ed;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(58, 148, 237, 0.08);
}

.hotline-label {
    font-size: 14px;
    font-weight: 700;
    color: #4c79a5;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.hotline-number {
    font-size: 24px;
    font-weight: 800;
    color: #143657;
    line-height: 1.3;
    word-break: break-word;
}

.hotline-board {
    max-width: 760px;
    margin: 0 auto;
}

.hotline-board-top {
    text-align: center;
    margin-bottom: 18px;
}

.hotline-board-mini {
    margin: 0 0 8px;
    color: #12358f;
    font-size: 20px;
    font-family: Georgia, serif;
    font-weight: 700;
}

.hotline-title-badge {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 10px;
    background: #054687;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hotline-board-frame {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.hotline-poster-row {
    min-height: 150px;
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.yellow-row,
.white-row {
    background: #f5dc74;
}

.hotline-logo-text {
    font-size: 18px;
    font-weight: 900;
    color: #1b5b9a;
}

.hotline-logo-wrap {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
}

.hotline-logo-wrap img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.hotline-poster-content {
    text-align: left;
}

.hotline-poster-content h3 {
    margin: 0 0 8px;
    color: #12358f;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hotline-poster-content p {
    margin: 2px 0;
    color: #0d3155;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
}

.mayor-hotline-box {
    grid-column: 1 / -1;
    margin-top: 2px;
    padding: 22px;
    border: 3px solid #f1bf18;
    border-radius: 12px;
    background: #fff1b7;
    text-align: center;
}

.mayor-hotline-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mayor-label {
    color: #12358f;
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
}

.mayor-number {
    color: #0d3155;
    font-size: 22px;
    font-weight: 800;
}

.contact-extra-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    margin-top: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.contact-extra-card h3 {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 900;
    color: #1E3A8A;
}

.contact-extra-card p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.map-embed {
    margin-top: 8px;
    border-radius: 16px;
    overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {
    .hotline-board {
        max-width: 100%;
    }

    .hotline-board-frame {
        grid-template-columns: 1fr;
    }

    .hotline-title-badge {
        font-size: 18px;
        padding: 10px 20px;
    }

    .hotline-poster-row {
        min-height: auto;
        grid-template-columns: 52px 1fr;
        padding: 18px;
    }

    .hotline-logo-wrap {
        width: 50px;
        height: 50px;
    }

    .hotline-logo-wrap img {
        width: 42px;
        height: 42px;
    }

    .hotline-poster-content h3 {
        font-size: 17px;
    }

    .hotline-poster-content p {
        font-size: 16px;
    }

    .mayor-hotline-box {
        grid-column: auto;
    }
}
@media (max-width: 1200px) {


    .mayor-label {
        font-size: 22px;
    }

    .mayor-number {
        font-size: 28px;
    }
}


@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0 70px;
    }

    .contact-side-text {
        font-size: 16px;
    }


    .hotline-board-mini {
        font-size: 16px;
    }

    .hotline-board-frame {
        padding: 10px;
        border-width: 6px;
        border-radius: 18px;
    }

    .hotline-poster-row {
        padding: 14px 12px;
        border-radius: 12px;
    }

    .hotline-logo-wrap {
        width: 58px;
        height: 58px;
    }


    .mayor-label {
        font-size: 18px;
    }

    .mayor-number {
        font-size: 22px;
    }

    .contact-extra-card {
        padding: 18px;
    }

    .contact-extra-card h3 {
        font-size: 21px;
    }
}

.map-embed {
    margin-top: 14px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .contact-details-card {
        padding: 22px;
    }

    .contact-details-card h2 {
        font-size: 28px;
    }

    .contact-detail-section h3 {
        font-size: 22px;
    }

    .contact-detail-section p {
        font-size: 16px;
    }

    .hotline-number {
        font-size: 20px;
    }
}

.contact-side-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 28px;
}

.contact-quick-box {
    background: #fff;
    border-left: 7px solid #005ebc;
    border-radius: 14px;
    padding: 18px 18px;
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.contact-quick-label {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 800;
    color: #1E3A8A;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-quick-value {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #1c1c1c;
    font-weight: 700;
}


.hotline-section {
    margin-top: 10px;
}

.hotline-header-box {
    background: linear-gradient(135deg, #1e558b, #2c76bf);
    color: #fff;
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 22px;
    box-shadow: 0 10px 24px rgba(30, 85, 139, 0.22);
}

.hotline-mini-title {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hotline-header-box h3 {
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 900;
}

.hotline-subtext {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.hotline-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hotline-entry {
    background: #fff7d6;
    border: 2px solid #f1d15b;
    border-left: 8px solid #f0b400;
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.hotline-entry:nth-child(even) {
    background: #eff7ff;
    border: 2px solid #b8dcff;
    border-left: 8px solid #2c76bf;
}

.hotline-entry-mayor {
    background: #fff1c9;
    border: 2px solid #f0c24d;
    border-left: 8px solid #e3a400;
}

.hotline-office {
    font-size: 24px;
    font-weight: 900;
    color: #184979;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hotline-numbers {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hotline-numbers span {
    display: inline-block;
    font-size: 18px;
    font-weight: 900;
    color: #1a2d40;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .hotline-header-box h3 {
        font-size: 28px;
    }

    .hotline-office {
        font-size: 21px;
    }

}

@media (max-width: 768px) {
    .hotline-header-box {
        padding: 18px;
        border-radius: 14px;
    }

    .hotline-header-box h3 {
        font-size: 24px;
    }

    .hotline-subtext {
        font-size: 14px;
    }

    .hotline-entry {
        padding: 16px 16px;
        border-radius: 14px;
    }

    .hotline-office {
        font-size: 18px;
    }
}

/* announcements.php + news.php */
.news-main-real-image,
.news-side-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-detail-page {
    padding: 48px 0 64px;
}

.news-detail-wrapper {
    max-width: 980px;
}

.news-detail-top {
    margin-bottom: 20px;
}

.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2d5882;
    font-weight: 700;
}

.news-back-link:hover {
    opacity: 0.85;
}

.news-detail-card {
    background: #ffffff;
    border: 1px solid #e7eef5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.news-detail-cover img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.news-detail-content {
    padding: 28px;
}

.news-detail-title {
    font-weight: 900;
    font-size: 42px;
    line-height: 1.15;
    margin: 10px 0 12px;
    color: #101828;
}

.news-detail-meta {
    font-size: 14px;
    color: #98a2b3;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.news-detail-body {
    color: #374151;
    line-height: 1.8;
    font-size: 17px;
}

.news-detail-body h1,
.news-detail-body h2,
.news-detail-body h3,
.news-detail-body h4 {
    color: #111827;
    margin: 20px 0 10px;
    line-height: 1.25;
}

.news-detail-body p {
    margin-bottom: 16px;
}

.news-detail-body ul,
.news-detail-body ol {
    margin: 0 0 16px 24px;
}

.news-detail-body img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    margin: 20px 0;
}

.news-detail-body blockquote {
    border-left: 4px solid #356ba0;
    background: #f7fafd;
    padding: 14px 18px;
    border-radius: 0 14px 14px 0;
    margin: 18px 0;
    color: #555;
}

.news-empty-state {
    background: #ffffff;
    border: 1px solid #e7eef5;
    border-radius: 22px;
    padding: 36px 28px;
    text-align: center;
    color: #667085;
}

.news-empty-state h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 8px;
}

.news-empty-state p {
    margin-bottom: 16px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .news-detail-title {
        font-size: 32px;
    }

    .news-detail-content {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .news-detail-title {
        font-size: 36px;
    }

    .news-detail-body {
        font-size: 15px;
    }
}
.news-main-real-image,
.news-side-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-main-image,
.news-side-thumb,
.advisory-thumb {
    overflow: hidden;
}

.news-main-image img,
.news-side-thumb img,
.advisory-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;
}
.eo-list {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 6px;
}

.eo-list::-webkit-scrollbar {
    width: 8px;
}

.eo-list::-webkit-scrollbar-track {
    background: transparent;
}

.eo-list::-webkit-scrollbar-thumb {
    background: #c4d5e6;
    border-radius: 999px;
}

.eo-empty-text {
    color: #98a2b3;
    font-size: 14px;
}

.eo-item {
    display: block;
    text-decoration: none;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 10px;
    transition: 0.2s ease;
}

.eo-item:hover {
    color: #fdc500;
}

.eo-item.active {
    color: #f4b400;
    position: relative;
    padding-left: 12px;
}

.eo-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 3px;
    height: 22px;
    border-radius: 999px;
    background: #2d5882;
}

.eo-document-card {
    background: #fff;
    border: 1px solid #d9dde3;
}

.eo-issued {
    margin-bottom: 26px;
}

.eo-abstract-text {
    line-height: 1.8;
}

.eo-sections p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.eo-remaining-text {
    display: none;
}

.eo-remaining-text.show {
    display: block;
}

.eo-read-btn {
    margin-top: 8px;
    border: none;
    background: transparent;
    color: #005ebc;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
}

.eo-read-btn:hover {
    color: #fdc500;
}

.eo-tool-btn {
    cursor: pointer;
    border: 1px solid #d0d5dd;
    background: #fff;
}

.eo-tool-btn:hover {
    background: #f9fafb;
}

.eo-qr img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #d0d5dd;
    padding: 4px;
}

@media print {
    body {
        background: #fff !important;
    }

    .topbar,
    .footer,
    .eo-sidebar,
    .eo-print,
    .eo-tools,
    .eo-read-btn {
        display: none !important;
    }

    .eo-remaining-text {
        display: block !important;
    }

    .eo-page,
    .eo-layout,
    .eo-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .eo-document-card {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .eo-header-row h1 {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }

    .eo-sections p,
    .eo-document-card p {
        font-size: 14px !important;
        line-height: 1.8 !important;
        color: #000 !important;
    }
}
/* =========================
   PAGE LAYOUT FIX (FOOTER STICK BOTTOM)
========================= */

html, body {
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.faq-page {
    flex: 1;
}
html, body {
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.faq-page {
    flex: 1;
    padding: 60px 0 80px;
}

.faq-container h1 {
    margin-bottom: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid #d9dde3;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #1f1f1f;
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-answer {
    display: none;
    padding: 0 28px 20px;
    color: #333;
    line-height: 1.6;
    font-size: 15px;
}

.faq-answer-inner {
    padding-top: 4px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid #d9dde3;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #1f1f1f;
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-answer {
    display: none;
    padding: 0 28px 20px;
    color: #333;
    line-height: 1.6;
    font-size: 15px;
}

.faq-answer-inner {
    padding-top: 4px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.achievement-page {
    padding: 48px 0 70px;
}

.achievement-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 48px;
    align-items: start;
}

.achievement-title {
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.95;
    margin: 0 0 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.achievement-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    font-size: 22px;
    font-weight: 800;
}

.achievement-month {
    color: #2d5882;
    text-transform: uppercase;
}

.achievement-divider {
    color: #f59e0b;
    font-weight: 900;
}

.achievement-project {
    color: #101828;
}

.achievement-metric-box {
    display: inline-block;
    background: #0d4883;
    color: #fff;
    padding: 16px 28px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 26px;
    max-width: 100%;
}

.achievement-description {
    color: #1f2937;
    font-size: 17px;
    line-height: 1.8;
}

.achievement-description p {
    margin: 0 0 18px;
}

.achievement-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.achievement-media-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
    gap: 18px;
    align-items: start;
}

.achievement-main-image {
    width: 100%;
    height: 100%;
    min-height: 430px;
    border-radius: 18px;
    overflow: hidden;
    background: #d9dee4;
}

.achievement-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.achievement-side-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.achievement-small-image {
    width: 100%;
    height: 190px;
    border-radius: 14px;
    overflow: hidden;
    background: #d9dee4;
}

.achievement-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.achievement-side-caption {
    font-size: 14px;
    line-height: 1.6;
    color: #111827;
    font-weight: 700;
}

.achievement-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 170px;
    padding: 16px 28px;
    border-radius: 12px;
    background: #f0b400;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    margin-top: 12px;
}

.achievement-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    border-radius: 18px;
    background: #d9dee4;
    color: #6b7280;
    font-weight: 700;
    text-align: center;
    padding: 24px;
}

.achievement-other-list {
    margin-top: 54px;
}

.achievement-other-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #111827;
}

.achievement-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.achievement-other-card {
    display: block;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    color: #111827;
    font-weight: 700;
}

.achievement-empty {
    padding: 48px 0 60px;
}

.achievement-empty-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
}

@media (max-width: 1100px) {
    .achievement-feature {
        grid-template-columns: 1fr;
    }

    .achievement-media-grid {
        grid-template-columns: 1fr;
    }

    .achievement-main-image,
    .achievement-placeholder {
        min-height: 320px;
    }
}
.guides-document-card h3 {
    margin: 0 0 18px;
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

/* STEPS */
.guides-steps {
    margin: 0 0 28px;
}

.service-steps-list {
    margin: 0;
    padding-left: 24px;
}

.service-steps-list li {
    margin: 0 0 14px;
    padding-left: 6px;
    font-size: 16px;
    line-height: 1.7;
    color: #2f2f2f;
}

.service-steps-list li:last-child {
    margin-bottom: 0;
}

/* REQUIRED DOCUMENTS */
.guides-box {
    margin-top: 26px;
    background: #f1f1f1;
    padding: 22px 26px;
}

.guides-box h4 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

.service-documents-list {
    margin: 0;
    padding-left: 22px;
}

.service-documents-list li {
    margin: 0 0 10px;
    padding-left: 4px;
    font-size: 16px;
    line-height: 1.6;
    color: #2f2f2f;
}

.service-documents-list li:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .achievement-title {
        font-size: 52px;
    }

    .achievement-meta-line {
        font-size: 18px;
    }

    .achievement-metric-box {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
}

.news-detail-body img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 18px auto;
}

.news-detail-body p img {
    margin-top: 12px;
    margin-bottom: 12px;
}

.news-detail-body figure {
    margin: 20px 0;
}

.news-detail-body iframe,
.news-detail-body video {
    max-width: 100%;
}

/* ===== GOVERNMENT HOMEPAGE FIX ===== */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f9fc !important;
    color: #1d2b3a;
}

.gov-header {
    background: #ffffff;
    padding: 22px 0;
    border-bottom: 1px solid #e3e7ec;
}

.gov-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gov-brand img {
    width: 75px !important;
    height: 75px !important;
    object-fit: contain;
}

.gov-small {
    margin: 0;
    font-size: 11px;
    letter-spacing: 2px;
    color: #4f7dbb;
    font-weight: 700;
}

.gov-brand h3 {
    margin: 4px 0;
    font-size: 20px;
    color: #1E3A8A !important;
    font-weight: 800;
}

.gov-brand p {
    margin: 0;
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

.gov-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.gov-contact {
    display: flex;
    gap: 18px;
    font-size: 13px;
    font-weight: 700;
    color: #000000 !important;
}
.gov-contact span {
    transition: color 0.2s ease;
    cursor: default;
}

.gov-contact span:hover {
    color: #F4B400;
}

.gov-search {
    width: 320px;
    display: flex;
    align-items: center;
    border: 1px solid #ccd6e0;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.gov-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 14px;
}

.gov-search i {
    width: 20px;
    margin-right: 14px;
}

.gov-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px clamp(16px, 2vw, 30px);
    padding: 18px 20px;
    background: #ffffff;
    border-bottom: 1px solid #dce3ea;
}

.gov-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: center;
    line-height: 1.5;
    color: #1e344c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: color 0.2s ease;
}
.gov-nav a:hover {
    color: #F4B400;
}



.gov-hero-content {
    width: min(1200px, 90%);
    margin: auto;
}

.gov-hero h1 {
    max-width: 720px;
    margin: 0 0 20px;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #26384d;
}

.gov-hero p {
    margin: 0 0 28px;
    font-size: 18px;
    color: #44566c;
}

.gov-hero-btn {
    display: inline-block;
    background: #f4b400;
    color: #005ebc;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
}

.gov-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #26384d;
    padding: 9px 14px;
    border-radius: 999px;
    display: flex;
    gap: 9px;
}

.gov-dots span {
    width: 12px;
    height: 12px;
    background: #7b8490;
    border-radius: 50%;
}

.gov-dots span.active {
    background: #ffffff;
}

/* ===== PURPLE + YELLOW HERO SLIDER ===== */

.gov-hero {
    min-height: 520px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f8ff 0%, #dceeff 50%, #fff6d8 100%);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
}

.slide {
    min-height: 520px;
    align-items: center;
    display: none !important;
}

.slide.active {
    display: flex !important;
}

.slide-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

.slide-label {
    display: inline-block;
    background: #1b5b9a;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.slide-text h1 {
    margin: 0 0 18px;
    font-size: 52px;
    line-height: 1.08;
    color: #122435;
    font-weight: 900;
}

.slide-text p {
    max-width: 650px;
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.6;
    color: #3b4d5f;
}

.gov-hero-btn {
    background: #f4b400;
    color: #101c28;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
    display: inline-block;
}

.slide-image {
    display: flex;
    justify-content: center;
}

.slide-image img,
.slide-placeholder {
    width: 100%;
    max-width: 430px;
    height: 300px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(45, 88, 130, 0.18);
}

.slide-placeholder {
    background: linear-gradient(135deg, #1b5b9a, #4d8dcc);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    font-size: 24px;
    font-weight: 900;
}

.gov-dots {
    background: #2d5882;
}

.gov-dots span {
    background: #9bb8d4;
    cursor: pointer;
}

.gov-dots span.active {
    background: #f4b400;
}

@media (max-width: 900px) {
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 0 80px;
    }

    .slide-text h1 {
        font-size: 38px;
    }

    .slide-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* 🔥 FORCE FIX (put this at the VERY BOTTOM) */
.contact-info h1 {
    font-size: 48px !important;
}

.hotline-title-badge {
    font-size: 22px !important;
}

.hotline-poster-content h3 {
    font-size: 22px !important;
}

.hotline-poster-content p {
    font-size: 20px !important;
}

.hotline-numbers span {
    font-size: 18px !important;
}




/*ACHIEVEMENT SECTION TO*/
.achievements-page {
    background: #f1f3f5 !important;
    padding: 60px 0 90px !important;
}

.achievements-header-clean {
    text-align: center;
    margin-bottom: 42px;
}

.achievements-header-clean p {
    margin: 0 0 8px;
    color: #1E3A8A;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.achievements-header-clean h1 {
    margin: 0 0 10px;
    color: #013160;
    font-size: 46px;
    font-weight: 900;
}

.achievements-header-clean span {
    color: #555;
    font-size: 17px;
}

.achievements-card-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
}





.achievement-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievement-image-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #005ebc, #e7eef4);
    color: white;
    font-weight: 900;
}

.achievement-news-content {
    padding: 24px;
}

.achievement-date {
    margin: 0 0 10px;
    color: #f0b400;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}

.achievement-news-content h2 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.25;
}

.achievement-excerpt {
    color: #555;
    line-height: 1.7;
}

.achievement-read-link {
    color: #2d5882;
    font-weight: 900;
}

@media (max-width: 900px) {
    .achievements-card-grid {
        grid-template-columns: 1fr !important;
    }
}
.news-list-wrapper{
    max-width: 2400px;
    margin: 0 auto;
    padding: 0 24px;
}

.news-list-grid{
    width:100%;
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:40px;
}

.news-main-column{
    width:100%;
}

.news-main-card{
    width:100%;
}

.news-main-image{
    width:100%;
    height:700px;
    overflow:hidden;
}

.news-main-real-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.news-main-real-image,
.news-side-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bottom-news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    margin-top:60px;
}

.bottom-news-card{
    background:transparent;
    border-radius:20px;
    overflow:hidden;
    text-decoration:none;
    transition:.3s ease;
}

.bottom-news-card:hover{
    transform:translateY(-4px);
}

.bottom-news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.bottom-news-content{
    padding:20px;
}

.bottom-news-content span{
    font-size:12px;
    font-weight:700;
    color:#999;
}

.bottom-news-content h3{
    font-size:22px;
    margin-top:10px;
    color:#111;
}

.bottom-news-content p{
    font-size:14px;
    color:#777;
    margin-top:10px;
}
.achievements-card-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.achievement-news-card{
    display: flex;
    flex-direction: column;

    background: transparent;
    border-radius: 0;
    padding: 0;
    overflow: hidden;

    text-decoration: none;
    color: #111;

    box-shadow: none;
    transition: 0.25s ease;
}

.achievement-news-card:hover{
    transform: translateY(-4px);
}

.achievement-news-image img{
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}



.achievement-date{
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

.achievement-news-content h2{
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 14px;
    color: #003b71;
}

.achievement-excerpt{
    font-size: 18px;
    line-height: 1.7;
    color: #222;
}

.achievement-read-link{
    display: none;
}
/* ===== MONTHLY ACHIEVEMENTS GRID FIX ===== */

.achievements-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    
}
.achievement-news-card {
    min-width: 0;
}

.achievement-news-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    text-decoration: none;
    overflow: hidden;
    transition: 0.25s ease;
}

.achievement-news-card:hover {
    transform: translateY(-4px);
}

.achievement-news-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 20px;
    background: #cfd5db;
}

.achievement-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.achievement-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #005ebc, #0b1f5e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 800;
}

.achievement-news-content {
    padding: 24px 10px 10px;
}

.achievement-date {
    margin: 0 0 14px;
    color: #f0b400;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.achievement-news-content h2 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.3;
    color: #17202c;
    font-weight: 800;
}

.achievement-excerpt {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #4d5562;
}

.achievement-read-link {
    color: #2d5882;
    font-weight: 700;
    font-size: 15px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .achievements-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .achievements-card-grid {
        grid-template-columns: 1fr;
    }

    .achievement-news-image {
        height: 250px;
    }

    .achievement-news-content h2 {
        font-size: 20px;
    }
}
.achievement-filter {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 35px;
}

.achievement-filter select {
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid #d8d8d8;
    background: white;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
}
.homepage-highlights{
    padding: 80px 0;
    background: #f5f5f5;
}

.highlight-title{
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #0d3b7a;
}

.highlight-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.highlight-box{
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.highlight-header{
    padding: 16px;
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.blue-bg{
    background: #116ecb;
}

.purple-bg{
    background: #116ecb;
}

.highlight-image{
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    background: #e9e9e9;
}

.highlight-content{
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.blue-content{
    background: #dcebff;
    color: #24476b;
}

.purple-content{
    background: #e3f1ff;
    color: #34628f;
}

.highlight-content h3{
    font-size: 38px;
    line-height: 1.2;
    margin: 15px 0;
}

.highlight-content p{
    font-size: 18px;
    line-height: 1.7;
    flex-grow: 1;
}

.highlight-btn{
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    font-weight: 700;
}
.highlight-box{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.eo-qr-card{
    margin-top: 24px;
    padding: 18px;
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #fafafa;
    text-align: center;
    width: fit-content;
}

.eo-qr-image{
    width: 140px;
    height: 140px;
    display: block;
    margin: 0 auto 10px;
}

.eo-qr-text{
    font-size: 13px;
    color: #666;
    margin: 0;
}


.ord-title {
    margin: 0 0 10px;
    color: #013160;
    font-size: 20px;
    font-weight: 900;
}

.ord-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}
.news-comments-section{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 32px 0 45px;
    padding: 0 20px;
}

.fb-reaction-card{
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border: 1px solid #e8eff5;
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.side-card-title{
    font-size:24px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:25px;
}

.fb-reaction-counts{
     display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.fb-reaction-counts span{
    background: #f3f8fc;
    color: #566675;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.fb-reaction-actions{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.fb-reaction-actions form{
    flex:1;
}

.fb-reaction-actions button{
    width: 100%;
    border: 1px solid #d9e4ef;
    background: #f6f9fc;
    color: #2d5882;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}


.fb-reaction-actions button:hover,
.fb-reaction-actions button.active {
    background: #2d5882;
    color: #ffffff;
    border-color: #2d5882;
}

.comment-list{
    display:flex;
    flex-direction:column;
    gap: 0;
    margin-bottom:22px;
}

.comment-item{
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    gap: 14px;
    padding: 12px 4px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e9eff4;
    border-radius: 0;
}

.comment-item strong{
    display:block;
    color:#111827;
    font-size:15px;
    margin-bottom:8px;
}

.comment-item p{
    color:#4b5563;
    font-size:14px;
    line-height:1.7;
}

.comment-form{
    display:flex;
    flex-direction:column;
    gap:0;
    padding-top: 4px;
}

.comment-form input,
.comment-form textarea{
    width:100%;
    border:1px solid #d6e5f3;
    background:#fff;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    outline: none;
    transition: .2s ease;
}

.comment-form textarea{
    min-height:80px;
    resize:vertical;
}

.comment-form input:focus,
.comment-form textarea:focus{
    border-color: #3a94ed;
    box-shadow: 0 0 0 3px rgba(58, 148, 237, 0.08);
}

.comment-form button{
    align-self: flex-start;
    border: none;
    background: #005ebc;
    color: #ffffff;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.comment-form button:hover{
    opacity:.9;
}


.fb-reaction-card{
    width:100%;
    max-width:850px;
    background:#fff;
    border:1px solid #e8eff5;
    border-radius:24px;
    padding:35px;
    box-shadow:0 4px 20px rgba(0,0,0,.04);
}

.side-card-title{
    font-size:24px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:25px;
}

.fb-reaction-counts{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.fb-reaction-counts span{
    background:#f3f8fc;
    color:#566675;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
}

.fb-reaction-actions{
    display:flex;
    gap:14px;
    margin-bottom:35px;
}

.fb-reaction-actions form{
    flex:1;
}

.fb-reaction-actions button{
    width:100%;
    border:none;
    background:#3a94ed;
    color:#fff;
    padding:13px;
    border-radius:14px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:.2s ease;
}

.fb-reaction-actions button:hover{
    opacity:.9;
}





.comment-item strong{
    display:block;
    color:#111827;
    font-size:15px;
    margin-bottom:8px;
}

.comment-item p{
    color:#4b5563;
    font-size:14px;
    line-height:1.7;
}

.comment-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.comment-form input,
.comment-form textarea{
    width:100%;
    border:1px solid #d6e5f3;
    background:#fff;
    border-radius:14px;
    padding:14px 16px;
    font-size:14px;
    outline:none;
    transition:.2s ease;
}

.comment-form textarea{
    min-height:130px;
    resize:vertical;
}

.comment-form input:focus,
.comment-form textarea:focus{
    border-color:#3a94ed;
}

.comment-form button{
    align-self:flex-start;
    border:none;
    background:#111827;
    color:#fff;
    padding:13px 24px;
    border-radius:14px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:.2s ease;
}

.comment-form button:hover{
    opacity:.9;
}

@media(max-width:768px){

    .fb-reaction-card{
        padding:25px 20px;
    }

    .fb-reaction-actions{
        flex-direction:column;
    }

}

/*LATEST ORDERS// EO */


.latest-orders-section{
    padding: 70px 0;
    background: #fff;
}

.latest-orders-header{
    text-align: center;
    margin-bottom: 36px;
}

.latest-orders-header h2{
    font-size: 42px;
    font-weight: 800;
    color: #14233c;
    margin: 0;
}

.header-line{
    width: 58px;
    height: 4px;
    background: #2b6edb;
    margin: 18px auto 20px;
    border-radius: 999px;
}

.latest-orders-header p{
    font-size: 20px;
    line-height: 1.6;
    color: #5f6b7a;
    margin: 0;
}

.latest-orders-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.latest-order-card{
    display: block;
    background: #fff;
    border: 1px solid #dfe6ef;
    border-radius: 12px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    min-height: 420px;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.04);
}

.card-icon{
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: #2b6edb;
}

.card-icon i{
    width: 28px;
    height: 28px;
}

.card-label{
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #2b6edb;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.card-date{
    display: block;
    font-size: 18px;
    color: #5f6b7a;
    margin-bottom: 18px;
}

.latest-order-card h3{
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    color: #14233c;
    margin: 0 0 34px;
}

.card-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2b6edb;
    font-size: 18px;
    font-weight: 700;
    margin-top: auto;
}

.card-link i{
    width: 18px;
    height: 18px;
}

@media (max-width: 900px){
    .latest-orders-grid{
        grid-template-columns: 1fr;
    }

    .latest-orders-header h2{
        font-size: 32px;
    }

    .latest-order-card h3{
        font-size: 24px;
    }
}


/*UPDATED SLIDESHOW SA HARAF*/

.gov-hero {
    background: #fff;
    padding: 28px 0 56px;
    padding-bottom: 160px !important;
}

.hero-shell {
    position: relative;
    width: min(1320px, calc(100% - 64px));
    min-height: 560px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgb(255, 255, 255);
}




.hero-slide {
    min-width:100%;
    width:100%;
    height:550px;
    position:relative;
    border-radius:32px;
    overflow:hidden;
    background-size: auto 100%;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-color: #2a416e;
    flex-shrink:0;
    display:flex;
    align-items:center;
}


.hero-slide.no-image {
    background: #f7f9ff;
}

.hero-overlay {
    width:100%;
    height:100%;

    display:flex;
    align-items:center;

    padding:60px;

    background:
    linear-gradient(
        90deg,
        rgba(255,255,255,.92) 0%,
        rgba(255,255,255,.78) 35%,
        rgba(255,255,255,.15) 100%
    );
}

.hero-copy {
   max-width:520px;
    position:relative;
    z-index:5;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 94, 188, 0.09);
    color: #005ebc;
    font-size: 13px;
    font-weight: 800;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #005ebc;
}

.hero-copy h1 {
    margin: 30px 0 20px;
    color: #10182f;
    font-size: 44px;
    line-height: 1.14;
    font-weight: 900;
}

.hero-line {
    width: 42px;
    height: 3px;
    margin-bottom: 26px;
    background: #005ebc;
    border-radius: 999px;
}

.hero-copy p {
    margin: 0 0 30px;
    color: #536176;
    font-size: 17px;
    line-height: 1.7;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border: 2px solid #005ebc;
    border-radius: 9px;
    color: #005ebc;
    background: #fff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.hero-btn:hover {
    background: #fdc500;
    border-color: #fdc500;
    color: #10182f;
}

.hero-btn i {
    width: 19px;
    height: 19px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #10182f;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-arrow i {
    width: 30px;
    height: 30px;
}



.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px !important;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.hero-dots .dot {
    width: 13px;
    height: 13px;
    border: 0;
    border-radius: 50%;
    background: #d4d8df;
    cursor: pointer;
}

.hero-dots .dot.active {
    background: #005ebc;
}

@media (max-width: 900px) {
    .hero-shell {
        width: calc(100% - 28px);
        height: 620px;
    }

    .hero-slide {
        background-position: center bottom;
    }

    .hero-overlay {
       width:100%;
    height:100%;

    display:flex;
    align-items:center;

    padding:60px;

    background:
    linear-gradient(
        90deg,
        rgba(255,255,255,.92) 0%,
        rgba(255,255,255,.78) 35%,
        rgba(255,255,255,.15) 100%
    );
    }

    .hero-copy {
        max-width:520px;
    position:relative;
    z-index:5;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-arrow {
        width: 48px;
        height: 48px;
    }

   
}


:root {
    --pio-blue: #005ebc;
    --pio-yellow: #fdc500;
    --pio-text: #111a33;
    --pio-muted: #506078;
    --pio-border: #e4e9f2;
}

body {
    background: #fff;
    color: var(--pio-text);
}

/* HOMEPAGE WRAPPER */




.hero-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .5s ease;

    
}



.hero-slide.no-image {
    background: #f7f9ff;
}

.hero-overlay {
    width:100%;
    height:100%;

    display:flex;
    align-items:center;

    padding:60px;

    background:
    linear-gradient(
        90deg,
        rgba(255,255,255,.92) 0%,
        rgba(255,255,255,.78) 35%,
        rgba(255,255,255,.15) 100%
    );
}

.hero-copy {
   max-width:520px;
    position:relative;
    z-index:5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 94, 188, 0.08);
    color: var(--pio-blue);
    font-size: 13px;
    font-weight: 800;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pio-blue);
}

.hero-copy h1 {
    margin: 24px 0 16px;
    color: var(--pio-text);
    font-size: 38px;
    line-height: 1.12;
    font-weight: 900;
}


.hero-line {
    width: 48px;
    height: 3px;
    margin-bottom: 20px;
    background: var(--pio-blue);
    border-radius: 999px;
}

.hero-copy p {
    margin: 0 0 22px;
    color: var(--pio-muted);
    font-size: 16px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 22px;
    border: 1.5px solid var(--pio-blue);
    border-radius: 8px;
    color: var(--pio-blue);
    background: #fff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.hero-btn:hover {
    background: var(--pio-yellow);
    border-color: var(--pio-yellow);
    color: #10182f;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--pio-text);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-prev {
    left: 1px !important;
}

.hero-next {
    right: 1px !important;
}

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 11px;
}

.hero-dots .dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    background: #d8dce3;
    cursor: pointer;
}

.hero-dots .dot.active {
    background: var(--pio-blue);
}

/* MISSION / VISION */
.about-section {
    background: #fff;
    padding: 110px 0 50px;
    padding-top: 0 !important;
}

.about-panel {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 38px;
    align-items: center;
    padding: 34px 54px;
    border: 1px solid var(--pio-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.about-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 24px;
    align-items: center;
}


.about-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #eef4ff;
    color: var(--pio-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon i {
    width: 30px;
    height: 30px;
}

.about-item h2 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--pio-text);
}


.about-item p {
    margin: 0;
    color: var(--pio-muted);
    font-size: 15px;
    line-height: 1.65;
}

.about-divider {
    width: 1px;
    height: 96px;
    background: var(--pio-border);
}

/* LATEST ORDERS */
.latest-orders-section {
    background: #fff;
    padding: 10px 0 28px;
}

.latest-orders-header {
    text-align: center;
    margin-bottom: 22px;
}

.latest-orders-header h2 {
    margin: 0;
    color: var(--pio-text);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
}

.header-line {
    width: 38px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: var(--pio-blue);
}

.latest-orders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.latest-order-card {
    min-height: 128px;
    display: grid;
    grid-template-columns: 70px 1fr 28px;
    align-items: center;
    gap: 26px;
    padding: 26px 28px;
    border: 1px solid var(--pio-border);
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.order-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: #eef4ff;
    color: var(--pio-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.executive-card .order-icon {
    background: #eef8f2;
    color: #16823a;
}

.order-icon i {
    width: 30px;
    height: 30px;
}

.order-content span {
    display: block;
    margin-bottom: 9px;
    color: var(--pio-blue);
    font-size: 12px;
    font-weight: 900;
}

.executive-card .order-content span,
.executive-card .order-arrow {
    color: #16823a;
}

.order-content h3 {
    margin: 0;
    color: var(--pio-text);
    font-size: 18px;
    line-height: 1.38;
    font-weight: 900;
}

.order-content p {
    margin: 7px 0 0;
    color: var(--pio-muted);
    font-size: 15px;
    line-height: 1.5;
}

.order-arrow {
    color: var(--pio-blue);
    width: 24px;
    height: 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-shell {
        width: calc(100% - 28px);
        height: 560px;
    }

    .hero-overlay {
       width:100%;
    height:100%;

    display:flex;
    align-items:center;

    padding:60px;

    background:
    linear-gradient(
        90deg,
        rgba(255,255,255,.92) 0%,
        rgba(255,255,255,.78) 35%,
        rgba(255,255,255,.15) 100%
    );
    }

    .hero-copy {
       max-width:520px;
    position:relative;
    z-index:5;
    }

    .hero-copy h1 {
        font-size: 32px;
    }

    .about-panel,
    .latest-orders-grid {
        grid-template-columns: 1fr;
    }

    .about-divider {
        width: 100%;
        height: 1px;
    }

    .latest-order-card {
        grid-template-columns: 60px 1fr 24px;
    }
}


/* FINAL HOMEPAGE SPACING FIX */

.gov-hero {
    padding: 36px 0 90px !important;
    overflow: visible !important;
}

.hero-shell {
    width: min(1280px, calc(100% - 180px)) !important;
    height: 520px !important;
    overflow: hidden !important;
}




.hero-slide,
.hero-overlay {
    height: 100% !important;
    min-height: 0 !important;
}



.hero-dots {
    bottom: 24px !important;
}

.about-section {
    padding: 20px 0 56px !important;
    margin-top: 0 !important;
    background: #fff !important;
}

.about-section .container {
    max-width: 1280px !important;
    padding: 0 !important;
}

.about-panel {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 42px 58px !important;
    border-radius: 16px !important;
}

.gov-hero {
    margin-bottom: 70px !important;
    padding-bottom: 40px !important;
}

.about-section {
    margin-top: 0 !important;
    padding-top: 40px !important;
}


.pinned-posts-section{
    padding: 18px 0 30px;
    background: #fff;
}

.pinned-posts-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:16px;
}

.pinned-header {
    text-align: center;
    color: var(--pio-text);
    font-size: 25px;
    line-height: 1;
    font-weight: 1000;
}
.pinned-header .header-line {
    margin-left: auto;
    margin-right: auto;
}

.pinned-label{
    font-size:13px;
    font-weight:900;
    color:#005ebc;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.pinned-posts-header a{
    color:#005ebc;
    text-decoration:none;
    font-weight:700;
}

.pinned-posts-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
}

.pinned-card{
    display:flex;
    gap:14px;
    padding:14px;
    border:1px solid #e4e9f2;
    border-radius:14px;
    background:#fff;
    text-decoration:none;
    color:inherit;
}

.pinned-card img{
    width:96px;
    height:96px;
    object-fit:cover;
    border-radius:10px;
    flex-shrink:0;
}

.pinned-card-body span{
    display:block;
    font-size:12px;
    color:#7b8490;
    margin-bottom:8px;
}

.pinned-card-body h3{
    margin:0 0 8px;
    font-size:16px;
    line-height:1.25;
    color:#111a33;
}

.pinned-card-body p{
    margin:0;
    font-size:14px;
    line-height:1.5;
    color:#506078;
}

@media (max-width: 900px){
    .pinned-posts-grid{
        grid-template-columns:1fr;
    }
}

.pinned-empty {
    padding: 18px 0;
    color: #7b8490;
    font-size: 15px;
}
.pinned-placeholder{

    width:100%;
    height:220px;

    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            #3a94ed,
            #1d5995
        );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:72px;
    font-weight:800;

    position:relative;
    overflow:hidden;
}

/*
|--------------------------------------------------------------------------
| DECORATION
|--------------------------------------------------------------------------
*/

.pinned-placeholder::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:
        rgba(255,255,255,0.08);

    border-radius:50%;

    top:-60px;
    right:-60px;
}

.pinned-placeholder::after{

    content:"";

    position:absolute;

    width:120px;
    height:120px;

    background:
        rgba(255,255,255,0.05);

    border-radius:50%;

    bottom:-40px;
    left:-40px;
}




.hero-slide.is-landscape {
    background-size: cover !important;
    background-position: center !important;
}

.hero-slide.is-portrait {
    background-size: auto 100% !important;
    background-position: right bottom !important;
}



.advisory-page {
    background: #f8fafc;
    padding: 34px 0 56px;
}

.advisory-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
    align-items: start;
}

.advisory-main {
    min-width: 0;
}

.advisory-hero {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 24px;
    align-items: center;
    margin-bottom: 34px;
}

.advisory-hero h1 {
    margin: 0 0 10px;
    color: #013160;
    font-size: 46px;
    font-weight: 900;
}

.advisory-hero p {
    margin: 0;
    max-width: 640px;
    color: #5d6675;
    font-size: 18px;
    line-height: 1.55;
}

.advisory-hero-icon {
    justify-self: center;
    width: 230px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1359b6;
    background: #eef5ff;
    border-radius: 42px;
}

.advisory-hero-icon svg {
    width: 120px;
    height: 120px;
    stroke-width: 2.2;
}

.advisory-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.advisory-tabs a {
    min-width: 110px;
    text-align: center;
    text-decoration: none;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #d9dee8;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.advisory-tabs a.active,
.advisory-tabs a:hover {
    background: #004ea8;
    border-color: #004ea8;
    color: #ffffff;
}

.advisory-list {
    display: grid;
    gap: 12px;
}

.advisory-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) 160px 28px;
    gap: 24px;
    align-items: center;
    text-decoration: none;
    background: #ffffff;
    color: #111827;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    min-height: 112px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.advisory-card:hover {
    border-color: #bdd7ff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.advisory-card-icon {
    height: 92px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #df262f;
    color: #ffffff;
}

.advisory-card-icon svg {
    width: 44px;
    height: 44px;
}

.advisory-card-content h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 22px;
    font-weight: 900;
}

.advisory-card-content p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.45;
}

.advisory-card-meta {
    display: grid;
    gap: 6px;
    color: #4b5563;
    font-size: 15px;
}

.advisory-card-meta .level {
    width: fit-content;
    color: #dc2626;
    background: #fff0f0;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.advisory-card-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.advisory-card-meta svg {
    width: 16px;
    height: 16px;
}

.advisory-arrow {
    color: #8b95a5;
}

.advisory-sidebar {
    display: grid;
    gap: 28px;
}

.advisory-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.advisory-panel h2 {
    margin: 0 0 22px;
    color: #003b8f;
    font-size: 26px;
    font-weight: 900;
}

.latest-advisory {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: #111827;
    padding: 10px 0;
    border-bottom: 1px solid #eef2f7;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}
.latest-advisory:hover {
    background-color: #e5edf5;
    transform: translateX(4px);
}

.latest-advisory:last-child {
    border-bottom: 0;
}
.latest-advisory:hover strong {
    color: #2d5882;
}

.latest-icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #df262f;
    color: #ffffff;
}

.latest-icon svg {
    width: 28px;
    height: 28px;
}

.latest-advisory strong {
    display: block;
    margin-bottom: 6px;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
}

.latest-advisory small {
    color: #5d6675;
    font-size: 14px;
}

.type-weather,
.type-general {
    background: #df262f;
}

.type-events {
    background: #16a34a;
}

.type-health {
    background: #2f80ed;
}

.type-traffic {
    background: #3f88d1;
}

.type-others {
    background: #f97316;
}

@media (max-width: 1100px) {
    .advisory-layout {
        grid-template-columns: 1fr;
    }

    .advisory-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .advisory-hero {
        grid-template-columns: 1fr;
    }

    .advisory-hero-icon {
        display: none;
    }

    .advisory-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .advisory-card-icon {
        width: 100%;
    }
}

.news-cover-image {
    width: 100%;
    margin: 24px 0;
    border-radius: 14px;
    overflow: hidden;
}

.news-cover-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}






/*SEARCH UI SA PUBLIC*/

.search-result-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.search-result-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 22px rgba(0,0,0,0.12);
}

.search-result-card h2{
    margin-bottom:10px;
    font-size:30px;
}

.search-result-card a{
    color:#1f63a7;
    text-decoration:none;
}

.search-result-card a:hover{
    text-decoration:underline;
}

.search-result-card small{
    color:#777;
    display:block;
    margin-bottom:14px;
}

.search-result-card p{
    color:#333;
    line-height:1.6;
}


/*UI NG PINNED POSTS */

.gov-hero {
    margin-bottom: 70px;
    overflow: visible;
}

.hero-slider,
.hero-slide,
.hero-card {
    position: relative;
    z-index: 1;
}

.pinned-section {
    position: relative;
    z-index: 2;
    clear: both;
    padding: 50px 0 50px;
}
/* =========================================
   SOURCE / REFERENCE SECTION
========================================= */

.source-reference {
    margin-top: 28px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #d8e5f2;
    border-radius: 12px;
    max-width: 850px;
}

.source-reference-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #2a5886;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.source-reference-title {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    color: #172c40;
}

.source-reference-description {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #626e7a;
}

.source-reference-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #2a5886;
    text-decoration: none;
}

.source-reference-link:hover {
    text-decoration: underline;
}
/* SOURCE REFERENCE CARD */

.source-reference {
    margin-top: 32px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #d9e6f2;
    border-radius: 14px;
    max-width: 850px;
    box-sizing: border-box;
}

.source-reference-label {
    margin-bottom: 10px;
    color: #2a5886;
    font-size: 13px;
    font-weight: 700;
}

.source-reference-title {
    margin-bottom: 6px;
    color: #202d3a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.source-reference-description {
    margin-bottom: 14px;
    color: #626e7a;
    font-size: 14px;
    line-height: 1.6;
}

.source-reference-link {
    display: inline-block;
    color: #2a5886;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.source-reference-link:hover {
    text-decoration: underline;
}
.sensitive-image-wrapper {
    position: relative;
    overflow: hidden;
}

.sensitive-blurred {
    filter: blur(18px);
    transform: scale(1.05);
}

.sensitive-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    padding: 20px;
}

.sensitive-overlay p {
    margin: 8px 0 15px;
}

.view-sensitive-image {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.related-news-card{
    display:flex;
    gap:10px;
    text-decoration:none;
    margin-bottom:-9px;
    color:#000;
    padding:10px;
    border-radius:12px;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.related-news-card:hover{
    background-color:#e5edf5;
    transform:translateX(4px);
}

.related-news-card:hover .related-news-info h4{
    color:#2d5882;
}

.related-news-card img{
    width:150px;
    height:120px;
    object-fit:cover;
    border-radius:12px;
    flex-shrink:0;
}

.related-news-info h4{
    margin:0 0 8px;
    font-size:16px;
    line-height:1.4;
}

.related-news-info p{
    margin:0;
    font-size:12px;
    color:#888;
}

.related-news-card .related-news-placeholder{
    width:150px;
    height:120px;
    min-width:150px;

    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;

    font-size:38px;
    font-weight:800;

    color:#fff;

    background:#173B8F;
    

    flex-shrink:0;
}
.ord-page {
    background: #f1f3f5;
    padding: 55px 0 90px;
}

.ord-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
}

.ord-sidebar {
    padding-top: 10px;
}

.ord-title {
    margin: 0 0 10px;
    color: #013160;
    font-size: 46px;
    font-weight: 900;
}

.ord-label {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ord-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ord-item {
    text-decoration: none;
    color: #1f1f1f;
    font-size: 18px;
    font-weight: 700;
    padding-left: 10px;
    border-left: 4px solid transparent;
    display: block;
}

.ord-item.active {
    color: #1E3A8A;
    border-left: 4px solid #005ebc;
    font-weight: 800;
}

.ord-content h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.28;
    color: #1c1c1c;
    font-weight: 800;
    max-width: 850px;
}

.ord-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.ord-print {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid #cfd6dd;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ord-print i {
    width: 20px;
    height: 20px;
    color: #4b5966;
}

.ord-document-card {
    background: #ffffff;
    border: 1px solid #d9dee5;
    padding: 28px 32px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.ord-issued {
    margin: 0 0 18px;
    font-size: 13px;
    color: #6a7580;
    font-weight: 600;
}

.ord-document-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #1f1f1f;
    font-weight: 800;
}

.ord-document-card p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #2f2f2f;
}

.ord-sections {
    margin-top: 18px;
    padding-left: 10px;
}

.ord-remaining-text {
    display: none;
}

.ord-remaining-text.show {
    display: block;
}

.ord-read-btn {
    background: transparent;
    border: 0;
    padding: 0;
    color: #005ebc;
    font-weight: 700;
    cursor: pointer;
}

.ord-tools {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #e2e6ea;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.ord-tool-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #ffffff;
    color: #1f3c5a;
    text-decoration: none;
    border: 1px solid #bfc9d4;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}

.ord-tool-btn i {
    width: 16px;
    height: 16px;
}

.ord-list {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 6px;
}

.ord-list::-webkit-scrollbar {
    width: 8px;
}

.ord-list::-webkit-scrollbar-track {
    background: transparent;
}

.ord-list::-webkit-scrollbar-thumb {
    background: #c4d5e6;
    border-radius: 999px;
}

.ord-empty-text {
    color: #98a2b3;
    font-size: 14px;
}

.ord-item {
    display: block;
    text-decoration: none;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 10px;
    transition: 0.2s ease;
}

.ord-item:hover {
    color: #fdc500;
}

.ord-item.active {
    color: #f4b400;
    position: relative;
    padding-left: 12px;
}

.ord-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 3px;
    height: 22px;
    border-radius: 999px;
    background: #2d5882;
}

.ord-document-card {
    background: #fff;
    border: 1px solid #d9dde3;
}

.ord-issued {
    margin-bottom: 26px;
}

.ord-abstract-text {
    line-height: 1.8;
}

.ord-sections p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.ord-read-btn:hover {
    color: #fdc500;
}

.ord-tool-btn {
    cursor: pointer;
    border: 1px solid #d0d5dd;
    background: #fff;
}

.ord-tool-btn:hover {
    background: #f9fafb;
}

@media (max-width: 992px) {
    .ord-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ord-title {
        font-size: 44px;
    }

    .ord-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .ord-page {
        padding: 40px 0 70px;
    }

    .ord-content h1 {
        font-size: 24px;
    }

    .ord-document-card {
        padding: 20px 18px;
    }

    .ord-document-card p {
        font-size: 15px;
    }

    .ord-tools {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media print {
    .ord-sidebar,
    .ord-print,
    .ord-tools,
    .ord-read-btn {
        display: none !important;
    }

    .ord-remaining-text {
        display: block !important;
    }

    .ord-page,
    .ord-layout,
    .ord-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .ord-document-card {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .ord-header-row h1 {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }

    .ord-sections p,
    .ord-document-card p {
        font-size: 14px !important;
        line-height: 1.8 !important;
        color: #000 !important;
    }
}

/* ===== CONSISTENT PUBLIC FOOTER ===== */
#site-footer.footer-minimal {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    padding: 56px 0 24px;
    background: #0057b8 !important;
    border-top: 0;
    color: #ffffff;
}

#site-footer .footer-minimal-content {
    width: min(1320px, calc(100% - 96px));
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(520px, 1.45fr);
    align-items: start;
    justify-content: space-between;
    gap: 72px;
    box-sizing: border-box;
}

#site-footer .footer-brand-panel {
    display: flex;
    flex-direction: column;
    gap: 58px;
}

#site-footer .footer-minimal-left {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

#site-footer .footer-minimal-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    flex-shrink: 0;
}

#site-footer .footer-minimal-text span {
    display: block;
    margin-bottom: 2px;
    color: #fdc500;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

#site-footer .footer-minimal-text h4 {
    margin: 0 0 8px;
    color: #f4f5f5;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.05;
}

#site-footer .footer-minimal-text p {
    max-width: 430px;
    margin: 0;
    color: #eef6ff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

#site-footer .footer-connect {
    display: flex;
    align-items: center;
    gap: 18px;
}

#site-footer .footer-connect span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

#site-footer .footer-connect a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

#site-footer .footer-connect a:hover {
    color: #fdc500;
    transform: translateY(-2px);
}

#site-footer .footer-connect i,
#site-footer .footer-connect svg {
    width: 19px;
    height: 19px;
}

#site-footer .footer-minimal-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 20px 64px;
    align-items: start;
}

#site-footer .footer-link-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#site-footer .footer-minimal-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    transition: color 0.2s ease, transform 0.2s ease;
}

#site-footer .footer-minimal-nav a:hover {
    color: #fdc500;
    transform: translateX(3px);
}

#site-footer .footer-bottom-line {
    width: min(1320px, calc(100% - 96px));
    margin: 42px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    color: #eef6ff;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 900px) {
    #site-footer.footer-minimal {
        padding: 42px 0 24px;
    }

    #site-footer .footer-minimal-content {
        width: min(100% - 32px, 720px);
        grid-template-columns: 1fr;
        gap: 36px;
    }

    #site-footer .footer-brand-panel {
        gap: 28px;
    }

    #site-footer .footer-minimal-nav {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 24px 34px;
    }

    #site-footer .footer-minimal-text h4 {
        font-size: 28px;
    }

    #site-footer .footer-bottom-line {
        width: min(100% - 32px, 720px);
        margin-top: 32px;
    }
}

@media (max-width: 560px) {
    #site-footer .footer-minimal-left {
        flex-direction: column;
    }

    #site-footer .footer-minimal-nav {
        grid-template-columns: 1fr;
    }

    #site-footer .footer-connect {
        flex-wrap: wrap;
    }
}

/* ===== PROFESSIONAL HOMEPAGE NEWS FEED ===== */
.home-page {
    background: #f3f6fb !important;
}

.gov-hero {
    background: #f3f6fb !important;
    padding: 34px 0 28px !important;
    margin-bottom: 0 !important;
}

.hero-shell {
    width: min(1320px, calc(100% - 80px)) !important;
    height: 560px !important;
    border-radius: 0 !important;
    border: 1px solid #dbe4f0;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10) !important;
    background: #0f172a;
}

.hero-slide {
    border-radius: 0 !important;
    background-size: cover !important;
    background-position: center !important;
}

.hero-overlay {
    align-items: flex-end !important;
    padding: 54px 64px !important;
    background:
        linear-gradient(
            90deg,
            rgba(8, 20, 45, 0.92) 0%,
            rgba(8, 20, 45, 0.68) 42%,
            rgba(8, 20, 45, 0.18) 100%
        ) !important;
}

.hero-copy {
    max-width: 720px !important;
}

.hero-badge {
    background: #fdc500 !important;
    color: #10182f !important;
    border-radius: 0 !important;
    letter-spacing: 0.8px;
}

.hero-badge span {
    background: #10182f !important;
}

.hero-copy h1 {
    margin: 18px 0 12px !important;
    color: #ffffff !important;
    font-size: 52px !important;
    line-height: 1.06 !important;
    letter-spacing: 0 !important;
}

.hero-date {
    color: #dbeafe !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero-line {
    background: #fdc500 !important;
}

.hero-copy p {
    max-width: 620px;
    color: #eef6ff !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
}

.hero-btn {
    border-color: #fdc500 !important;
    background: #fdc500 !important;
    color: #10182f !important;
}

.hero-btn:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
}

.hero-arrow {
    background: rgba(255, 255, 255, 0.94) !important;
}

.home-feed-section {
    background: #f3f6fb;
    padding: 52px 0 34px;
}

.home-feed-container,
.pinned-section .container,
.about-section .container,
.latest-orders-section .container {
    max-width: 1320px !important;
}

.home-section-heading,
.pinned-header,
.latest-orders-header {
    margin-bottom: 24px;
    text-align: left;
}

.home-section-heading span {
    display: block;
    margin-bottom: 8px;
    color: #0057b8;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.home-section-heading h2,
.pinned-header h2,
.latest-orders-header h2 {
    margin: 0;
    color: #111827;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 900;
}

.pinned-header .header-line,
.latest-orders-header .header-line {
    margin-left: 0;
}

.home-feed-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.8fr);
    gap: 28px;
    align-items: stretch;
}

.home-lead-story,
.home-feed-item,
.pinned-card,
.latest-order-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-lead-story {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
    min-height: 390px;
    overflow: hidden;
    border: 1px solid #dbe4f0;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.home-lead-story:hover,
.home-feed-item:hover,
.pinned-card:hover,
.latest-order-card:hover {
    transform: translateY(-3px);
    border-color: #bdd7ff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
}

.home-lead-story img,
.home-feed-placeholder {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.home-feed-placeholder,
.home-feed-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0057b8;
    color: #ffffff;
    font-weight: 900;
}

.home-feed-placeholder {
    font-size: 84px;
}

.home-feed-thumb-placeholder {
    width: 128px;
    height: 96px;
    flex-shrink: 0;
    font-size: 36px;
}

.home-lead-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 36px;
}

.home-lead-copy span,
.home-feed-item span {
    display: block;
    margin-bottom: 10px;
    color: #0057b8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.home-lead-copy h3 {
    margin: 0 0 16px;
    color: #111827;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 900;
}

.home-lead-copy p {
    margin: 0 0 22px;
    color: #475569;
    font-size: 17px;
    line-height: 1.65;
}

.home-lead-copy small,
.home-feed-item p {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.home-feed-list {
    display: grid;
    gap: 14px;
}

.home-feed-item {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 112px;
    padding: 10px;
    border: 1px solid #dbe4f0;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
}

.home-feed-item img {
    width: 128px;
    height: 96px;
    object-fit: cover;
}

.home-feed-item h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
    line-height: 1.28;
    font-weight: 900;
}

.home-feed-item p {
    margin: 0;
}

.pinned-section {
    margin-top: 0 !important;
    padding: 36px 0 52px;
    background: #f3f6fb;
}

.pinned-posts-grid {
    gap: 22px;
}

.pinned-card {
    min-height: 210px;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    border-color: #dbe4f0;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.pinned-card img,
.pinned-placeholder {
    width: 100%;
    height: 190px;
    border-radius: 0;
}

.pinned-card-body {
    padding: 0 18px 20px;
}

.pinned-card-body h3 {
    font-size: 20px;
    line-height: 1.25;
}

.about-section {
    background: #ffffff !important;
    padding: 54px 0 !important;
}

.about-panel {
    border-radius: 0 !important;
    box-shadow: none !important;
    border-color: #dbe4f0 !important;
}

.latest-orders-section {
    background: #ffffff;
    padding: 48px 0 70px;
}

.latest-orders-grid {
    max-width: none;
}

@media (max-width: 1100px) {
    .home-feed-grid,
    .home-lead-story {
        grid-template-columns: 1fr;
    }

    .home-lead-story img,
    .home-feed-placeholder {
        height: 320px;
        min-height: 320px;
    }
}

@media (max-width: 900px) {
    .hero-shell {
        width: calc(100% - 32px) !important;
        height: 520px !important;
    }

    .hero-overlay {
        padding: 40px 28px !important;
    }

    .hero-copy h1 {
        font-size: 36px !important;
    }

    .home-feed-section,
    .pinned-section,
    .about-section,
    .latest-orders-section {
        padding-left: 0;
        padding-right: 0;
    }

    .home-feed-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .home-feed-item {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .home-feed-item img,
    .home-feed-thumb-placeholder {
        width: 96px;
        height: 78px;
    }

    .home-lead-copy {
        padding: 24px 20px;
    }

    .home-lead-copy h3 {
        font-size: 26px;
    }
}

/* ===== POLISHED NEWS + ACHIEVEMENTS INDEX PAGES ===== */
.news-index-page,
.achievements-index-page {
    background: #f3f6fb !important;
}

.news-list-page,
.achievements-page {
    background:
        linear-gradient(180deg, #eef5ff 0, #f3f6fb 260px, #f3f6fb 100%) !important;
    padding: 54px 0 76px !important;
}

.news-list-wrapper,
.achievements-page > .container {
    width: min(1320px, calc(100% - 80px)) !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
}

.news-list-heading,
.achievements-header-clean {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.news-list-heading span,
.achievements-header-clean > div > p {
    display: block;
    margin: 0 0 8px !important;
    color: #0057b8 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 1.4px !important;
    text-transform: uppercase !important;
}

.news-list-title,
.achievements-header-clean h1 {
    margin: 0 !important;
    color: #111827 !important;
    font-size: 48px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
}

.news-list-heading p,
.achievements-header-clean span {
    max-width: 560px;
    margin: 12px 0 0 !important;
    color: #526173 !important;
    font-size: 17px !important;
    line-height: 1.6 !important;
}

.news-list-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr) !important;
    gap: 26px !important;
    align-items: stretch !important;
}

.news-main-column {
    min-width: 0;
}

.news-main-card {
    height: 100%;
    min-height: 560px;
    display: grid !important;
    grid-template-rows: minmax(300px, 1fr) auto;
    overflow: hidden;
    border: 1px solid #dbe4f0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: inherit !important;
    text-decoration: none !important;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08) !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.news-main-card:hover {
    transform: translateY(-4px);
    border-color: #bdd7ff !important;
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.13) !important;
}

.news-main-image {
    position: relative;
    min-height: 300px !important;
    overflow: hidden;
    background: #0057b8 !important;
    border-radius: 0 !important;
}

.news-main-real-image {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px;
    object-fit: cover !important;
    display: block;
    transition: transform 0.5s ease;
}

.news-main-card:hover .news-main-real-image {
    transform: scale(1.045);
}

.news-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0, 30, 70, 0.35) 100%);
    pointer-events: none;
}

.news-main-content {
    padding: 30px 34px 34px !important;
}

.news-kicker,
.news-main-content .news-kicker {
    display: inline-flex !important;
    width: fit-content;
    margin-bottom: 12px !important;
    padding: 7px 10px;
    background: #fdc500;
    color: #10182f !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
}

.news-main-content h2 {
    margin: 0 0 12px !important;
    color: #111827 !important;
    font-size: 36px !important;
    line-height: 1.12 !important;
    font-weight: 950 !important;
}

.news-main-meta {
    margin: 0 0 18px !important;
    color: #0057b8 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 0.7px;
}

.news-main-excerpt {
    margin: 0 0 22px !important;
    color: #475569 !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
}

.news-main-link,
.achievement-read-link {
    display: inline-flex;
    align-items: center;
    color: #0057b8 !important;
    font-weight: 900 !important;
    text-decoration: none;
}

.news-main-card:hover .news-main-link,
.achievement-news-card:hover .achievement-read-link {
    color: #013160 !important;
}

.news-side-column {
    display: grid !important;
    gap: 14px !important;
    align-content: start;
}

.news-side-column .related-news-card {
    min-height: 122px;
    margin: 0 !important;
    padding: 12px !important;
    border: 1px solid #dbe4f0;
    border-radius: 0 !important;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.055);
}

.news-side-column .related-news-card:hover,
.bottom-news-card:hover {
    background: #ffffff !important;
    border-color: #bdd7ff;
    transform: translateX(0) translateY(-3px) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
}

.news-side-column .related-news-card img,
.news-side-column .related-news-placeholder {
    width: 136px !important;
    height: 98px !important;
    min-width: 136px !important;
    border-radius: 0 !important;
}

.related-news-info h4 {
    color: #111827 !important;
    font-size: 17px !important;
    line-height: 1.26 !important;
    font-weight: 900 !important;
}

.related-news-info p {
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 700;
}

.bottom-news-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px !important;
    margin-top: 34px !important;
}

.bottom-news-card {
    overflow: hidden;
    min-height: 330px;
    border: 1px solid #dbe4f0;
    border-radius: 0 !important;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.bottom-news-card img {
    width: 100% !important;
    height: 190px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    transition: transform 0.5s ease;
}

.bottom-news-card:hover img {
    transform: scale(1.045);
}

.bottom-news-content {
    padding: 18px 20px 22px !important;
}

.bottom-news-content span,
.achievement-date {
    display: block;
    margin-bottom: 9px;
    color: #0057b8 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bottom-news-content h3 {
    margin: 0 0 12px !important;
    color: #111827 !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
    font-weight: 950 !important;
}

.bottom-news-content p {
    margin: 0 !important;
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 700;
}

.achievements-header-clean {
    text-align: left !important;
}

.achievement-filter {
    display: flex !important;
    justify-content: flex-end !important;
    margin: 0 !important;
    flex-shrink: 0;
}

.achievement-filter select {
    min-width: 190px;
    padding: 13px 42px 13px 16px !important;
    border: 1px solid #bdd7ff !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: #111827;
    font-size: 15px !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.achievements-card-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 26px !important;
}

.achievement-news-card {
    display: flex !important;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid #dbe4f0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: inherit !important;
    text-decoration: none !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07) !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.achievement-news-card:hover {
    transform: translateY(-5px) !important;
    border-color: #bdd7ff !important;
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12) !important;
}

.achievement-news-image {
    position: relative;
    height: 230px !important;
    overflow: hidden;
    background: #0057b8;
}

.achievement-news-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.5s ease;
}

.achievement-news-card:hover .achievement-news-image img {
    transform: scale(1.05);
}

.achievement-image-placeholder {
    height: 100% !important;
    border-radius: 0 !important;
    background: linear-gradient(135deg, #0057b8, #005ebc) !important;
    color: #ffffff !important;
    font-weight: 900;
}

.achievement-news-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 24px 24px !important;
}

.achievement-news-content h2 {
    margin: 0 0 12px !important;
    color: #111827 !important;
    font-size: 23px !important;
    line-height: 1.22 !important;
    font-weight: 950 !important;
}

.achievement-excerpt {
    flex: 1;
    margin: 0 0 18px !important;
    color: #475569 !important;
    font-size: 15px !important;
    line-height: 1.62 !important;
}

@media (max-width: 1100px) {
    .news-list-grid,
    .bottom-news-grid,
    .achievements-card-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .news-main-column {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .news-list-wrapper,
    .achievements-page > .container {
        width: min(100% - 32px, 680px) !important;
    }

    .news-list-heading,
    .achievements-header-clean {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-list-title,
    .achievements-header-clean h1 {
        font-size: 36px !important;
    }

    .news-list-grid,
    .bottom-news-grid,
    .achievements-card-grid {
        grid-template-columns: 1fr !important;
    }

    .news-main-card {
        min-height: 0;
    }

    .news-main-content {
        padding: 24px 20px 26px !important;
    }

    .news-main-content h2 {
        font-size: 28px !important;
    }

    .news-side-column .related-news-card {
        align-items: flex-start;
    }

    .news-side-column .related-news-card img,
    .news-side-column .related-news-placeholder {
        width: 104px !important;
        height: 82px !important;
        min-width: 104px !important;
    }
}

/* Homepage banner: solid fill instead of the directional ombre. */
.gov-hero .hero-slide.no-image,
.gov-hero .hero-slide.no-image .hero-overlay {
    background: #1e293b !important;
}
.gov-hero .hero-overlay {
    background: rgba(15, 23, 42, 0.72) !important;
}

.gov-search-btn {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: inherit;
    cursor: pointer;
}

.gov-search-btn svg {
    width: 24px;
    height: 24px;
}
