*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-heading);
}

select {
    font-family: inherit;
}

:root {
    --color-dark: #0a2028;
    --color-dark-nav: #0c2830;
    --color-dark-section: #0f2d38;
    --color-dark-card: #163845;
    --color-dark-card2: #122f3c;
    --color-card-icon-bg: #1a404d;
    --color-teal-active: #1a5465;
    --color-gold: #c49a2a;
    --color-gold-light: #d4ab3a;
    --color-gold-hover: #a87f1e;
    --color-light-bg: #f0f2f4;
    --color-white: #ffffff;
    --color-text-dark: #1a2e35;
    --color-text-muted: #6b8a94;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-accent: 'Fraunces', serif;
    --font-heading: 'Outfit', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 999px;
    --container-max: 1280px;
    --header-h: 64px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-text-dark);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.text-center {
    text-align: center;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: 48px;
}

@media (max-width: 768px) {
    .container {
        padding-inline: 20px;
    }
}

.site-header {
    position: relative;
    background: var(--color-dark-nav);
    height: var(--header-h);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-seal-img {
    height: 44px;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.logo-wordmark {
    height: 39px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.logo-combined-img {
    height: 52px;
    width: auto;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

/* Primary Nav — absolutely centered in the header */
.primary-nav {
    position: absolute;
    left: 49%;
    top: 0;
    height: var(--header-h);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 13px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: color 0.18s, background 0.18s;
    white-space: nowrap;
    font-family: var(--font-heading);
}

    .nav-link:hover {
        color: var(--color-white);
        background: rgba(255, 255, 255, 0.07);
    }

/* Chevron & Dropdown — hidden per design spec */
.nav-chevron {
    display: none;
}

.dropdown {
    display: none !important;
}

/* Active nav link */
.nav-link.active {
    color: var(--color-white);
    position: relative;
}

    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 3px;
        left: 13px;
        right: 13px;
        height: 2px;
        background: var(--color-gold);
        border-radius: 2px;
    }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    flex-shrink: 0;
}

.btn-search {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 0 24px;
    background: var(--color-white);
    border: none;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 700;
    color: #1b3644;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: var(--font-heading);
    text-decoration: none;
}

    .btn-search:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .btn-search svg {
        opacity: 1;
    }

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s;
}

    .lang-selector:hover {
        background: rgba(255, 255, 255, 0.25);
    }

.flag {
    font-size: 15px;
    line-height: 1;
}

.flag-img {
    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1002;
    position: relative;
}

    .mobile-menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--color-white);
        border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
    }

.hero {
    position: relative;
    width: 100%;
    padding-top: var(--header-h);
    z-index: 10;
}


/* Carousel slides */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*background-color: #0c2830;*/
}


.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center 40%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
    }

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(8, 28, 38, 0.3) 0%, rgba(8, 28, 38, 0.1) 40%, rgba(8, 28, 38, 0.7) 100%);
}

/* Inner container — matches Tailwind max-w-[1152px] */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1152px;
    width: 100%;
    margin: 0 auto;
    min-height: 600px;
    padding: 96px 24px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Full-bleed container — text sits in the vertical center-upper area */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Push text up slightly so service-finder card doesn't cover it */
    padding: 0 8% 120px 8%;
    z-index: 3;
    pointer-events: none;
}

/* Header block — max-width 720px, mb-6 */
.hero-header {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 100%;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 1s ease-in-out;
}

    .hero-header.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(24px, 3.5vw, 52px);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 8px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
    word-break: break-word;
}

.hero-subtitle {
    font-family: Georgia, serif;
    font-size: clamp(15px, 2vw, 34px);
    font-style: italic;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.3;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.45);
    word-break: break-word;
    margin: 0;
}

.service-finder-card {
    background: #15151580;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    padding: 24px 28px;
    width: 100%;
}

.service-finder-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
}

.service-finder-label {
    max-width: 367px;
}

.sf-heading {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
    line-height: 1.3;
}

.sf-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Control row: 216px  minmax(0, 340px)  103px */
.service-finder-controls {
    display: grid;
    grid-template-columns: 216px minmax(0, 340px) 103px;
    gap: 12px;
    align-items: center;
}

.sf-select-group {
    position: relative;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select {
    width: 100%;
    height: 42px;
    padding: 0 38px 0 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-family: var(--font-body);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s;
}

    .custom-select:focus {
        outline: none;
        border-color: rgba(255, 255, 255, 0.7);
        background: rgba(255, 255, 255, 0.05);
    }

    .custom-select option {
        background: #0c2830;
        color: #fff;
    }

.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
}

.btn-go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 103px;
    height: 42px;
    background: #c8822a;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(200, 130, 42, 0.3);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    font-family: var(--font-body);
}

    .btn-go:hover {
        background: #b5731f;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(200, 130, 42, 0.4);
    }

    .btn-go svg {
        flex-shrink: 0;
    }

/* Single carousel indicator pill under the service-finder card */
.hero-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

    .hero-indicator span {
        display: block;
        width: 28px;
        height: 4px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: width 0.3s, background 0.3s;
    }

        .hero-indicator span.active {
            width: 44px;
            background: rgba(255, 255, 255, 0.95);
        }

@media (max-width: 768px) {
    .hero-header {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-header {
        max-width: 100%;
    }
}

.explore-needs {
    background: var(--color-dark-section);
    padding: 80px 0 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

    .section-title.dark {
        color: var(--color-text-dark);
    }

.section-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.52);
    max-width: 440px;
    margin-inline: auto;
    line-height: 1.65;
}

    .section-subtitle.dark {
        color: var(--color-text-muted);
    }

/* Explore layout */
.explore-layout {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.explore-tabs {
    display: flex;
    flex-direction: column;
    min-width: 210px;
    flex-shrink: 0;
    padding-right: 40px;
    gap: 4px;
    position: relative;
}

    /* vertical line separator — sits with breathing room on both sides */
    .explore-tabs::after {
        content: '';
        position: absolute;
        top: 8px;
        right: 0;
        bottom: 8px;
        width: 1px;
        background: rgba(255, 255, 255, 0.14);
    }

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.42);
    border-radius: var(--radius-md);
    text-align: left;
    transition: color 0.2s, background 0.2s;
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    cursor: pointer;
}

    .tab-btn:hover {
        color: rgba(255, 255, 255, 0.78);
        background: rgba(255, 255, 255, 0.04);
    }

    .tab-btn.active {
        color: var(--color-white);
        background: var(--color-teal-active);
        font-weight: 600;
    }

    .tab-btn svg {
        flex-shrink: 0;
    }

.explore-cards {
    flex: 1;
    padding-left: 48px;
}

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

/* Service cards grid */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px 22px;
    background: var(--color-dark-card2);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.22s, transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    cursor: pointer;
    text-decoration: none;
}

    .service-card:hover {
        background: var(--color-dark-card);
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
        border-color: rgba(255, 255, 255, 0.08);
    }

/* Icon with background box */
.sc-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-card-icon-bg);
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--color-gold-light);
    transition: background 0.2s;
}

.service-card:hover .sc-icon {
    background: #1f4d5e;
}

.sc-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.sc-divider {
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto 12px;
}

.sc-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
    margin-bottom: 14px;
    flex: 1;
}

.sc-learn {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-gold-light);
    transition: color 0.18s;
}

.service-card:hover .sc-learn {
    color: #e0bb50;
}

.notices-section {
    display: none;
    /* hidden - enable when ready */
    background: var(--color-white);
    padding: 72px 0 80px;
    border-top: 1px solid #e8ecee;
}

.notices-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 0;
}

.notices-title-group {
    margin-bottom: 0;
}

.notices-title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: #b83a2a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #b83a2a;
    margin-bottom: 28px;
}

.notices-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: color 0.18s;
    white-space: nowrap;
    padding-bottom: 10px;
}

    .notices-view-all-link:hover {
        color: #b83a2a;
    }

/* Notice rows list */
.notices-list {
    border-top: 1px solid #e4e8ea;
}

.notice-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 12px;
    border-bottom: 1px solid #e4e8ea;
    color: var(--color-text-dark);
    transition: background 0.15s, padding-left 0.15s;
    border-radius: 0;
}

    .notice-row:hover {
        background: #f6f9fa;
    }

.notice-icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--color-light-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a6570;
}

.notice-name {
    flex: 1;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text-dark);
}

.notice-badge-new {
    background: #b83a2a;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.notice-chevron {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Mobile CTA – hidden on desktop */
.notices-mobile-cta {
    display: none;
    justify-content: center;
    margin-top: 28px;
}

@media (max-width: 768px) {
    .notices-section {
        padding: 52px 0 60px;
    }

    /* Hide the header-row "view all" on mobile */
    .notices-vaa-desktop {
        display: none;
    }

    /* Show bottom CTA on mobile */
    .notices-mobile-cta {
        display: flex;
    }

    .notices-header {
        display: block;
    }

    .notice-icon-wrap {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .notice-name {
        font-size: 14px;
    }
}

.events-section {
    background: var(--color-light-bg);
    padding: 80px 0 100px;
}

.events-layout {
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 560px);
    justify-content: center;
    gap: 16px;
    align-items: stretch;
    max-width: 920px;
    margin: 0 auto;
}

/* Event Cards — left column, 3 equal-height cards that together match the right featured card */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-card {
    background: var(--color-dark-card2);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
    flex: 1;
    /* equal-height distribution */
    display: flex;
    flex-direction: column;
    min-height: 0;
}

    .event-card:hover {
        background: var(--color-dark-card);
    }

.event-tag {
    display: inline-block;
    padding: 2px 11px;
    border: 1px solid rgba(255, 240, 181, 1);
    border-radius: var(--radius-xl);
    font-size: 10.5px;
    font-weight: 500;
    background-color: rgba(255, 240, 181, 0.2);
    color: rgba(255, 240, 181, 1);
    margin-bottom: 12px;
    width: fit-content;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
}

.event-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.event-desc {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
    line-height: 1.5;
}

.event-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-event {
    padding: 4px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-xl);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: border-color 0.18s, color 0.18s, background 0.18s;
}

    .btn-event:hover {
        border-color: rgba(255, 255, 255, 0.6);
        color: var(--color-white);
        background: rgba(255, 255, 255, 0.06);
    }

.events-featured {
    position: static;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: auto;
    height: 100%;
    flex: 1;
    min-height: 100%;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 28, 36, 0.95) 0%, rgba(8, 28, 36, 0.55) 32%, rgba(8, 28, 36, 0.05) 60%, rgba(8, 28, 36, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 30px 28px;
}

.featured-tag {
    display: inline-block;
    padding: 4px 13px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(200, 130, 42, 0.55);
    border-radius: var(--radius-xl);
    font-size: 11px;
    font-weight: 500;
    color: #c8822a;
    margin-bottom: 14px;
    width: fit-content;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.featured-title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.featured-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 18px;
    line-height: 1.55;
    max-width: 92%;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 12.5px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    width: fit-content;
    transition: background 0.18s, transform 0.15s;
    letter-spacing: 0.01em;
}

    .btn-learn-more svg {
        display: none;
        /* screenshot shows no arrow on this button */
    }

    .btn-learn-more:hover {
        background: var(--color-gold-hover);
        transform: translateY(-1px);
    }

/* View All CTA */
.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px 14px 28px;
    min-width: 220px;
    background: #b98131;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
}

    .btn-view-all svg {
        width: 16px;
        height: 16px;
        stroke-width: 2.2;
    }

        /* Replace the default line+arrow icon markup with a simple chevron visual */
        .btn-view-all svg line,
        .btn-view-all svg polyline {
            display: none;
        }

    .btn-view-all::after {
        content: '';
        width: 8px;
        height: 8px;
        border-right: 2px solid #fff;
        border-top: 2px solid #fff;
        transform: rotate(45deg);
        margin-left: -6px;
    }

    .btn-view-all:hover {
        background: #a06f26;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.news-section {
    background: var(--color-white);
    padding: 80px 0 100px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.news-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-dark-card2);
    transition: transform 0.22s, box-shadow 0.22s;
}

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    }

.news-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s;
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

/* gradient fade from image into card body */
.news-image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 30, 38, 0.85), transparent);
}

.news-card-body {
    padding: 20px 22px 22px;
    height: 200px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 9px;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.45;
    margin-bottom: 14px;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold-light);
    transition: color 0.18s, gap 0.18s;
}

.news-card:hover .news-read-more {
    color: #e0bb50;
    gap: 8px;
}

.site-footer {
    background: var(--color-dark-nav);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 52px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

/* Footer — logo seal image */
.footer-seal-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.footer-wordmark-img {
    height: 40px;
    display: block;
}

.footer-logo-combined-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
}

.footer-tagline {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.65;
    max-width: 200px;
}

.footer-heading {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 18px;
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.48);
    transition: color 0.18s;
}

    .footer-links a:hover {
        color: rgba(255, 255, 255, 0.85);
    }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.48);
        line-height: 1.5;
    }

        .footer-contact li svg {
            flex-shrink: 0;
            margin-top: 2px;
            color: rgba(255, 255, 255, 0.4);
        }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.55);
    transition: border-color 0.18s, color 0.18s;
}

    .social-link:hover {
        border-color: rgba(255, 255, 255, 0.7);
        color: var(--color-white);
    }

.social-handle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-privacy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.18s;
}

    .footer-privacy:hover {
        color: rgba(255, 255, 255, 0.9);
    }

.btn-newsletter {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    background: #f0a53d;
    /* Brighter gold for the button */
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
}

    .btn-newsletter:hover {
        background: #d98e2b;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }


@media (max-width: 1150px) {
    .header-inner {
        gap: 12px;
    }

    .primary-nav {
        position: static;
        transform: none;
        left: auto;
        margin-inline: auto;
    }

    .nav-link {
        font-size: 11px;
        padding: 8px 10px;
        letter-spacing: 0.05em;
    }

    .logo {
        gap: 8px;
    }

    .logo-wordmark {
        height: 24px;
    }

    .logo-combined-img {
        height: 42px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding-inline: 20px;
    }

    .header-inner {
        gap: 10px;
    }

    .nav-link {
        padding: 8px 6px;
    }

    .btn-search {
        padding: 7px 12px;
    }

        .btn-search span {
            display: none;
        }

    .lang-selector {
        padding: 8px 10px;
    }

        .lang-selector span {
            display: none;
        }

    .service-finder-controls {
        grid-template-columns: 1fr 1fr 103px;
    }

    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .explore-layout {
        flex-direction: column;
    }

    .explore-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        padding-bottom: 0;
        padding-right: 0;
    }

        .explore-tabs::after {
            display: none;
        }

    .tab-btn {
        border-radius: var(--radius-xl);
    }

    .explore-cards {
        padding-left: 0;
        margin-top: 32px;
    }

    .events-layout {
        grid-template-columns: 1fr;
    }

    .events-featured {
        position: static;
    }

    .featured-image-wrap {
        aspect-ratio: 16 / 10;
    }

    .news-grid {
        max-width: 640px;
        margin-inline: auto;
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-inline: 18px;
    }
    
    /* Header */
    .primary-nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        /* Reset the desktop absolute-centering transform */
        transform: none;
        width: 100%;
        height: auto;
        background: var(--color-dark-nav);
        padding: 16px 18px;
        z-index: 1001;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        align-items: flex-start;
    }

        .primary-nav.open {
            display: flex;
            flex-direction: column;
            position:absolute;
        }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 13px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 15px;
        color: var(--color-white);
    }

    .dropdown {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--radius-sm);
        border: none;
        margin: 4px 0 10px;
        display: none;
    }

    .nav-item.has-dropdown.open .dropdown {
        display: block;
    }

    .btn-search {
        display: none;
    }

    .lang-selector {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo {
        gap: 10px;
    }

    .logo-seal-img {
        height: 36px;
    }

    .logo-wordmark {
        height: 25px;
    }

    .logo-combined-img {
        height: 34px;
    }

    .footer-logo-combined-img {
        height: 44px;
    }

    /* Hero */
    .hero-container {
        min-height: 520px;
        padding: 88px 20px 40px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .service-finder-card {
        padding: 20px;
        border-radius: 10px;
    }

    .service-finder-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-finder-label {
        max-width: none;
    }

    .service-finder-controls {
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: stretch !important;
    }

    .btn-go {
        width: 100%;
        justify-content: center;
    }

    /* Explore */
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

        .filter-tabs::-webkit-scrollbar {
            display: none;
        }

        .filter-tabs .btn-filter {
            flex-shrink: 0;
        }

    .service-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* News & Updates */
    .news-grid {
        grid-template-columns: 1fr;
    }

    .btn-view-all {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-inline: 16px;
    }

    .header-inner {
        gap: 12px;
    }

    .logo-combined-img {
        height: 28px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .service-finder-controls {
        grid-template-columns: 1fr;
    }

    .btn-go {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo-combined-img {
        height: 38px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-right {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (max-width: 480px) {
    .container {
        padding-inline: 16px;
    }

    .header-inner {
        gap: 12px;
    }

    .logo-combined-img {
        height: 28px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .service-finder-controls {
        grid-template-columns: 1fr;
    }

    .btn-go {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo-combined-img {
        height: 38px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-right {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile Styles */
@media (max-width: 992px) {
    /* Header container */
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 16px;
        position: relative;
    }

    /* Logo */
    .logo-combined-img {
        height: 40px;
    }

    /* Header actions container - FIXED POSITIONING */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        flex-shrink: 0;
        position: relative;
        z-index: 1002;
    }

    /* Search button */
    .btn-search {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        height: 36px;
        padding: 0 14px;
        font-size: 12px;
        background: #f5f5f5;
        border: 1px solid #ddd;
        border-radius: 6px;
        cursor: pointer;
        order: 1;
    }

    /* Language selector wrapper - FIXED */
    .lang-selector-wrapper {
        display: block !important;
        position: relative;
        order: 2;
    }

    .lang-selector {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        height: 36px;
        padding: 0 14px;
        font-size: 12px;
        background: #f5f5f5;
        border: 1px solid #ddd;
        border-radius: 6px;
        cursor: pointer;
    }

    .flag {
        width: 18px;
        height: 12px;
    }

    .lang-caret {
        font-size: 10px;
    }

    /* Mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        order: 3;
    }

    /* Hide desktop nav */
    .primary-nav {
        display: none;
    }
}

/* For smaller mobile devices */
@media (max-width: 576px) {
    /* Hide "Search" text, keep icon */
    .btn-search span {
        display: none;
    }

    .btn-search {
        width: 36px;
        padding: 0;
        justify-content: center;
    }

    /* Hide "ENG" text on very small screens - but keep flag and caret */
    .lang-selector span:not(.lang-caret) {
        display: none;
    }

    .lang-selector {
        width: 36px;
        padding: 0;
        justify-content: center;
    }

    .lang-caret {
        font-size: 10px;
    }

    .logo-combined-img {
        height: 32px;
    }

    .header-actions {
        gap: 6px;
    }
}

/* Language dropdown positioning */
@media (max-width: 768px) {
    .lang-dropdown {
        position: fixed;
        top: 60px;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90%;
        max-width: 320px;
        z-index: 2000;
    }
}

/* Force display on mobile */
@media (max-width: 992px) {
    .header-actions .btn-search,
    .header-actions .lang-selector-wrapper {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Extra small devices (380px and below) */
@media (max-width: 380px) {
    .logo-combined-img {
        height: 28px;
    }

    .header-actions {
        gap: 5px;
    }

    .btn-search {
        width: 32px;
        height: 32px;
    }

    .lang-selector {
        width: 32px;
        height: 32px;
    }

    .flag {
        width: 14px;
        height: 10px;
    }

    .lang-caret {
        font-size: 8px;
    }
}

/* Make sure both buttons are visible and not overlapping */
@media (max-width: 992px) {
    .header-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .btn-search,
    .lang-selector-wrapper {
        flex-shrink: 0 !important;
    }
}
@media (max-width: 380px) {
    .logo-combined-img {
        height: 24px;
    }

    .header-actions {
        gap: 8px;
        margin-left: 10px;
    }

    .lang-selector span {
        display: none;
    }

    .lang-selector {
        padding: 0 10px;
    }
}

.page-hero {
    background: #0d2b33;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

@media (max-width: 991px) {
    .page-hero {
        padding: 80px 0 60px;
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding: 60px 0 40px;
        text-align: center;
    }

    .page-breadcrumb {
        justify-content: center;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero-desc {
        font-size: 14px;
    }
}

/* Removed pseudo-elements */

.page-hero-inner {
    width: 100%;
    position: relative;
    z-index: 2;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

    .page-breadcrumb a {
        color: rgba(255, 255, 255, 0.6);
        transition: color 0.15s;
    }

        .page-breadcrumb a:hover {
            color: var(--color-gold);
        }

    .page-breadcrumb svg {
        flex-shrink: 0;
        opacity: 0.4;
    }

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-inline: auto;
}

.inner-page {
    padding: 56px 0 80px;
    background: var(--color-light-bg);
}

.page-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
}

.page-sidebar {
    background: var(--color-dark-section);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.sidebar-head {
    padding: 16px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-family: var(--font-heading);
}

.sidebar-list {
    padding: 8px 0;
}

.sidebar-item {
    display: block;
    padding: 10px 20px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    transition: background 0.15s, color 0.15s;
    border-left: 3px solid transparent;
    cursor: pointer;
}

    .sidebar-item:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--color-white);
    }

    .sidebar-item.active {
        background: rgba(196, 154, 42, 0.12);
        color: var(--color-gold);
        border-left-color: var(--color-gold);
        font-weight: 600;
    }

.content-panel {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 24px;
}

.split-layout {
    display: flex;
    align-items: flex-start;
    min-height: 800px;
    background: #f8fafc;
    width: 100%;
}

.split-sidebar {
    width: 320px;
    flex-shrink: 0;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 32px 0;
    height: calc(100vh - var(--header-h));
    position: sticky;
    top: var(--header-h);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

    .split-sidebar::-webkit-scrollbar {
        width: 4px;
    }

    .split-sidebar::-webkit-scrollbar-track {
        background: transparent;
    }

    .split-sidebar::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
    }

        .split-sidebar::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

.split-content-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    padding: 48px 24px;
    margin: 0px auto;
}


.split-content {
    width: 100%;
    max-width: 800px;
}

/* Search */
.split-search {
    padding: 24px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.split-search input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: var(--color-text-dark);
    font-size: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.split-search .search-icon {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    pointer-events: none;
}

.split-search input:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 2px rgba(13, 43, 51, 0.1);
}

/* Sidebar List */
.split-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 16px;
}

.split-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

    .split-item:hover {
        background: #e2e8f0;
        color: var(--color-dark);
    }

    .split-item.active {
        background: #024751;
        color: var(--color-white);
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(2, 71, 81, 0.2);
    }

    .split-item svg {
        width: 18px;
        height: 18px;
        color: #94a3b8;
    }

    .split-item.active svg {
        color: var(--color-white);
    }

/* Content Header */
.split-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.split-icon-circle {
    width: 64px;
    height: 64px;
    background: var(--color-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

    .split-icon-circle svg {
        width: 28px;
        height: 28px;
    }

.split-h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.split-subtitle {
    font-size: 15px;
    color: #64748b;
}

/* Actions */
.split-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.split-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    transition: all 0.2s;
}

    .split-btn:hover {
        background: #f1f5f9;
        border-color: #94a3b8;
    }

    .split-btn.primary {
        background: #c8822a;
        /* Reverting to the brand gold/yellow bg */
        border-color: #c8822a;
        color: #ffffff;
    }

    .split-btn.active {
        background: var(--color-dark-nav);
        color: var(--color-white);
        border-color: var(--color-dark-nav);
    }

    .split-btn.primary:hover {
        background: #b37324;
        border-color: #b37324;
    }

/* Cards */
.split-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.split-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.split-card-title-flex {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0px;
}

    .split-card-title::before {
        content: '';
        display: block;
        width: 16px;
        height: 3px;
        background: var(--color-gold);
        border-radius: 2px;
    }

.split-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 16px;
}

    .split-card p:last-child {
        margin-bottom: 0;
    }

.split-list-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .split-list-ul li {
        position: relative;
        padding-left: 24px;
        font-size: 14.5px;
        line-height: 1.6;
        color: #475569;
        margin-bottom: 12px;
    }

        .split-list-ul li::before {
            content: '›';
            position: absolute;
            left: 0;
            top: -2px;
            color: var(--color-gold);
            font-size: 18px;
            font-weight: 700;
        }

/* Image Banner */
.split-image {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

    .split-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Page hero icon row */
.page-hero-title-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.page-hero-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
    margin-top: 4px;
}

/* Contact person card */
.split-contact-person {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

    .split-contact-person:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.split-contact-avatar {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-dark);
    font-size: 15px;
    flex-shrink: 0;
}

.split-contact-role {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin-bottom: 4px;
}

.split-contact-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 3px;
}

.split-contact-phone {
    font-size: 14px;
    color: #475569;
    margin-bottom: 2px;
}

.split-contact-email {
    font-size: 14px;
    color: var(--color-teal-active);
    font-weight: 500;
    text-decoration: none;
}

    .split-contact-email:hover {
        text-decoration: underline;
    }

/* Emergency / info alert banners */
.split-alert {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    align-items: flex-start;
}

    .split-alert.emergency {
        background: #fffbeb;
        border: 1px solid #fcd34d;
    }

.split-alert-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.split-alert.emergency .split-alert-icon {
    color: #d97706;
}

.split-alert-heading {
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 4px;
}

.split-alert p {
    font-size: 14px;
    color: #78350f;
    margin: 0;
    line-height: 1.6;
}

/* Adoption / dark CTA box */
.split-cta {
    background: rgba(2, 71, 81, 0.05);
    border: 1px solid rgba(2, 71, 81, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
   
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.split-cta-icon {
    width: 44px;
    height: 44px;
    background-color: #024751;
    background-image: url('../Images/hearticon.png');
    background-size: 22px 22px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.split-cta-title {
    font-size: 15px;
    font-weight: 700;
    color: #024751;
    margin-bottom: 6px;
}

.split-cta-link {
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: none;
}

    .split-cta-link:hover {
        text-decoration: underline;
    }

.split-cta-logo {
    flex-shrink: 0;
    max-width: 140px;
    display: flex;
    align-items: center;
}

    .split-cta-logo img {
        width: 100%;
        height: auto;
    }

@media (max-width: 600px) {
    .split-cta {
        flex-direction: column;
        gap: 12px;
    }

    .split-cta-logo {
        max-width: 120px;
        margin-top: 4px;
    }
}

/* Contact info grid */
.split-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
}

.split-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.split-contact-item-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
}

.split-contact-item-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}

.split-contact-item-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
}

a.split-contact-item-value {
    color: var(--color-teal-active);
    text-decoration: none;
}

    a.split-contact-item-value:hover {
        text-decoration: underline;
    }

/* Hours list */
.split-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .split-hours-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14.5px;
        color: #475569;
    }

        .split-hours-list li svg {
            flex-shrink: 0;
            color: #94a3b8;
        }

/* Departments Mobile Navigation */
.dept-mobile-nav {
    display: none;
    background: #fff;
    border-bottom: 1px solid #e5e9ec;
    padding: 12px 0;
    position: sticky;
    top: var(--header-h);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dept-mobile-nav-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dept-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 12px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #1e3a5f;
    cursor: pointer;
    transition: all 0.2s;
}

    .dept-toggle-btn:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
    }

.active-dept-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #1e3a5f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dept-sidebar-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}

    .dept-sidebar-header span {
        font-family: var(--font-heading);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1px;
        color: #1e3a5f;
    }

.dept-close-btn {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
}

.dept-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .dept-sidebar-overlay.open {
        opacity: 1;
        visibility: visible;
    }

/* Responsive Overrides */
@media (max-width: 992px) {
    .split-layout {
        display: block !important;
        min-height: auto !important;
    }

    .dept-mobile-nav {
        display: block;
    }

    .split-content-wrapper {
        padding: 32px 16px !important;
        width: 95% !important;
    }

    .split-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 16px !important;
    }

    #boardsTabContainer {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

        #boardsTabContainer .split-btn {
            width: auto !important;
            flex: 0 0 auto !important;
        }

    /* All other .split-actions (non-board pages) keep column */
    .split-actions:not(#boardsTabContainer) {
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 24px !important;
    }

    .split-btn:not(#boardsTabContainer .split-btn) {
        width: 100% !important;
        justify-content: center !important;
    }

    .split-card {
        padding: 24px 16px !important;
    }

    .split-h2 {
        font-size: 26px !important;
    }

    .split-icon-circle {
        width: 56px !important;
        height: 56px !important;
    }

        .split-icon-circle svg {
            width: 24px !important;
            height: 24px !important;
        }

    .split-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 320px !important;
        height: 100vh !important;
        background: #fff !important;
        z-index: 1200 !important;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 20px 0 50px rgba(0,0,0,0.15) !important;
        display: flex !important;
        flex-direction: column !important;
        border-right: 1px solid #e2e8f0 !important;
        padding: 0 !important;
    }

        .split-sidebar.open {
            left: 0 !important;
        }

    .dept-sidebar-header {
        display: flex;
    }

    .split-search {
        padding: 20px !important;
    }

    .split-list {
        flex: 1 !important;
        overflow-y: auto !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 12px 20px !important;
        grid-template-columns: none !important;
    }

    .split-item {
        padding: 12px 16px !important;
        border-radius: 8px !important;
        margin-bottom: 2px !important;
    }

        .split-item.active {
            background: #024751 !important;
            color: #fff !important;
        }

    .split-item-icon {
        width: 28px !important;
        height: 28px !important;
    }
}

@media (max-width: 600px) {
    .split-sidebar {
        width: 85% !important;
    }
}


.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 18px;
    font-family: var(--font-heading);
}

.mayor-layout {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 36px;
}

.mayor-photo-placeholder {
    width: 140px;
    height: 160px;
    background: var(--color-dark-section);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    flex-shrink: 0;
}

.mayor-info h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.mayor-title {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 14px;
    font-weight: 500;
}

.mayor-bio {
    font-size: 14.5px;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 12px;
}

.mayor-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 11.5px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.badge-teal {
    background: rgba(13, 43, 51, 0.08);
    color: var(--color-dark);
    border: 1px solid rgba(13, 43, 51, 0.15);
}

.badge-gold {
    background: rgba(196, 154, 42, 0.12);
    color: #8a6c1a;
    border: 1px solid rgba(196, 154, 42, 0.25);
}

.commitments-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #edf0f2;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.commitment-card {
    background: var(--color-light-bg);
    border-radius: var(--radius-md);
    padding: 20px;
}

.commitment-icon {
    width: 36px;
    height: 36px;
    background: var(--color-dark-section);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.commitment-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.commitment-desc {
    font-size: 12.5px;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.council-section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.council-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.council-card {
    background: var(--color-light-bg);
    border-radius: var(--radius-md);
    padding: 20px 14px;
    text-align: center;
}

.council-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-dark-section);
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.council-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 3px;
}

.council-title {
    font-size: 11px;
    color: var(--color-text-muted);
}

.dept-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.dept-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-dark-section);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.dept-h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.dept-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
}

.dept-contact-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 14px 18px;
    background: var(--color-light-bg);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.dept-contact-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.dept-body p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 16px;
}

.dept-section-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    margin-top: 20px;
}

.dept-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 16px;
}

    .dept-list li {
        font-size: 14px;
        color: #4a5568;
        line-height: 1.65;
        margin-bottom: 4px;
    }

.dept-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

    .dept-hours-table td {
        padding: 8px 0;
        border-bottom: 1px solid #edf0f2;
        color: #4a5568;
    }

        .dept-hours-table td:first-child {
            font-weight: 600;
            color: var(--color-text-dark);
            width: 55%;
        }

.board-header {
    margin-bottom: 20px;
}

.board-h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.board-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.board-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.board-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf0f2;
}

.board-members-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.board-member-card {
    background: var(--color-light-bg);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
}

.board-member-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-dark-section);
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.board-member-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 3px;
}

.board-member-role {
    font-size: 11.5px;
    color: var(--color-text-muted);
}

.board-apply-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    background: var(--color-dark-section);
    border-radius: var(--radius-md);
}

    .board-apply-box h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--color-white);
        margin-bottom: 4px;
    }

    .board-apply-box p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
    }

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--color-gold);
    color: var(--color-dark);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.18s;
    font-family: var(--font-heading);
}

    .btn-apply:hover {
        background: var(--color-gold-light);
    }

.services-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.cat-pill {
    padding: 8px 18px;
    border: 1.5px solid #d1d9dd;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: all 0.18s;
    font-family: var(--font-heading);
    cursor: pointer;
}

    .cat-pill:hover {
        border-color: var(--color-dark);
        color: var(--color-dark);
    }

    .cat-pill.active {
        background: var(--color-dark-section);
        border-color: var(--color-dark-section);
        color: var(--color-gold);
    }

.services-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card-inner {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid #edf0f2;
    transition: box-shadow 0.2s, border-color 0.2s;
}

    .service-card-inner:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        border-color: var(--color-gold);
    }

.service-card-icon {
    width: 44px;
    height: 44px;
    background: var(--color-dark-section);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.service-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.service-card-desc {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-dark);
    transition: color 0.15s;
    font-family: var(--font-heading);
    margin-top: auto;
}

.service-card-inner:hover .service-card-link {
    color: var(--color-gold-hover);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

.contact-form-panel {
    margin-bottom: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--color-text-dark);
        margin-bottom: 7px;
    }

.required {
    color: #e05252;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--color-light-bg);
    border: 1.5px solid #d8dfe3;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--color-text-dark);
    transition: border-color 0.18s;
    outline: none;
}

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--color-dark);
        background: var(--color-white);
    }

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: var(--color-dark-section);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 700;
    transition: background 0.18s;
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
}

    .btn-submit:hover {
        background: var(--color-teal-active);
    }

.form-note {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 12px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 22px;
}

    .contact-info-card h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--color-text-dark);
        margin-bottom: 14px;
        padding-bottom: 10px;
        border-bottom: 1px solid #edf0f2;
    }

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .contact-info-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13.5px;
        color: #4a5568;
        line-height: 1.5;
    }

    .contact-info-list svg {
        flex-shrink: 0;
        margin-top: 2px;
        color: var(--color-text-muted);
    }

.contact-emergency-card {
    background: rgba(13, 43, 51, 0.04);
    border: 1.5px solid rgba(13, 43, 51, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 0.8fr 1.2fr;
    gap: 40px;
    padding: 56px 0 40px;
}

@media (max-width: 900px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        position: static;
    }

    .sidebar-list {
        display: flex;
        flex-wrap: wrap;
        padding: 8px;
        gap: 4px;
    }

    .sidebar-item {
        padding: 6px 14px;
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: var(--radius-sm);
    }

        .sidebar-item.active {
            border-left: none;
            border-bottom-color: var(--color-gold);
        }

    .commitments-grid {
        grid-template-columns: 1fr 1fr;
    }

    .council-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .board-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .services-grid-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .content-panel {
        padding: 22px 18px;
    }

    .mayor-layout {
        grid-template-columns: 1fr;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
    }

    .council-grid {
        grid-template-columns: 1fr 1fr;
    }

    .board-members-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid-inner {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.fab-group {
    position: fixed;
    right: 28px;
    bottom: 32px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #082124;
    color: #fff0b5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

    .fab:hover {
        background: #0c2e32;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .fab:focus-visible {
        outline: 2px solid #fff0b5;
        outline-offset: 3px;
    }

/* Backdrop */
.info-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 18, 22, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1100;
}

    .info-backdrop.open {
        opacity: 1;
        visibility: visible;
    }

/* Slide-in panel */
.info-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 460px;
    background: #fff;
    color: #1a1a1a;
    z-index: 2100;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
}

    .info-panel.open {
        transform: translateX(0);
    }

.info-panel-header {
    background: #082124;
    padding: 24px 24px 20px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-panel-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.info-panel-heading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-panel-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #c8822a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-panel-icon.icon-teal {
        background: #024751;
        color: #fff0b5;
    }

.info-panel-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 2px;
}

.info-panel-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.info-panel-close {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

    .info-panel-close:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

/* Sub-header (month nav for calendar) */
.info-panel-subheader {
    margin-top: 20px;
    display: none;
}

    .info-panel-subheader.visible {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.ip-month-nav {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

    .ip-month-nav:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.ip-month-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.info-panel-body {
    padding: 0;
    overflow-y: auto;
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #2a2a2a;
    background: #fff;
}

.ip-articles {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ip-article {
    display: flex;
    flex-direction: column;
}

.ip-article-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

    .ip-article-image img {
        width: 100%;
        height: 192px;
        object-fit: cover;
        display: block;
    }

.ip-article h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #082124;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .ip-article h3::before {
        content: '';
        width: 20px;
        height: 4px;
        border-radius: 2px;
        background: #c8822a;
        flex-shrink: 0;
    }

.ip-article p {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.ip-article + .ip-article {
    padding-top: 32px;
    border-top: 1px solid #f0f0f0;
}

.ip-calendar {
    padding: 16px 20px 0;
}

.ip-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.ip-calendar-dow {
    padding: 8px 0;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.ip-calendar-day {
    position: relative;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ip-calendar-day.empty {
        cursor: default;
        pointer-events: none;
    }

    .ip-calendar-day.has-events {
        color: #082124;
        font-weight: 600;
    }

        .ip-calendar-day.has-events:hover {
            background: #f3f4f6;
        }

    .ip-calendar-day.no-events {
        color: #9ca3af;
    }

        .ip-calendar-day.no-events:hover {
            background: #f9fafb;
        }

    /* Today — soft gold highlight, only when NOT the currently selected day */
    .ip-calendar-day.today {
        background: rgba(200, 130, 42, 0.12);
        color: #c8822a;
        font-weight: 700;
    }

    /* Selected day — solid dark teal; wins over .today */
    .ip-calendar-day.selected {
        background: #082124;
        color: #fff;
        font-weight: 700;
    }

        .ip-calendar-day.selected .dot {
            background: #fff0b5 !important;
        }

    .ip-calendar-day .dots {
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 2px;
    }

    .ip-calendar-day .dot {
        width: 4px;
        height: 4px;
        border-radius: 50%;
    }

.ip-calendar-events {
    flex: 1;
    border-top: 1px solid #f0f0f0;
    margin-top: 16px;
    padding: 18px 20px 24px;
    background: #fff;
}

.ip-events-date {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 12px;
}

.ip-events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ip-event {
    display: flex;
    gap: 12px;
    padding: 14px 14px 14px 16px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    align-items: flex-start;
}

.ip-event-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.ip-event-body {
    flex: 1;
    min-width: 0;
}

.ip-event-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #082124;
    margin: 0 0 4px;
    line-height: 1.3;
}

.ip-event-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px;
    line-height: 1.5;
}

.ip-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ip-event-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #6b7280;
}

    .ip-event-meta-item svg {
        color: #9ca3af;
        flex-shrink: 0;
    }

/* Empty-state (days with no events) */
.ip-events-empty {
    padding: 24px 0;
    text-align: center;
    color: #9ca3af;
}

    .ip-events-empty svg {
        margin: 0 auto;
        color: #e5e7eb;
    }

    .ip-events-empty p {
        margin-top: 8px;
        font-size: 13.5px;
    }

.info-panel-footer {
    padding: 16px 24px;
    background: #f9fafb;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 560px) {
    .info-panel {
        max-width: 100%;
    }

    .fab-group {
        right: 16px;
        bottom: 16px;
    }

    .fab {
        width: 48px;
        height: 48px;
    }
}

/* Custom Service Finder Dropdown (JS based) */
.service-finder-controls {
    align-items: end !important;
}

.sf-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}
/* Custom Select Styles */
.custom-select-wrapper {
    position: relative;
    min-width: 180px;
}

.custom-select-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 42px;
    padding: 0 14px;
    font-family: var(--font-heading);
    background: rgba(255, 255, 255, 0.03);
    /* Near-transparent to match the card background perfectly */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s;
    outline: none;
}

    .custom-select-display:hover,
    .custom-select-display:focus {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.3);
    }

.select-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

    .select-arrow svg {
        transition: transform 0.2s;
    }

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    min-width: 200px;
    background: #1a1a1a; /* Lighter than #121212 so you can see it */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 9999; /* Increased z-index to ensure it appears above everything */
    max-height: 300px;
    overflow-y: auto;
    display: none; /* Use display instead of opacity/visibility */
}

.custom-select-wrapper.open .custom-select-dropdown {
    display: block;
}

.custom-select-wrapper.open .select-arrow svg {
    transform: rotate(180deg);
}

.cs-option {
    padding: 12px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

    .cs-option:hover {
        background: rgba(255, 255, 255, 0.15);
        color: white;
    }

/* For light variant (if you need it) */
.custom-select-wrapper.light .custom-select-display {
    background: white;
    border-color: #e2e8f0;
    color: #1e293b;
}

    .custom-select-wrapper.light .custom-select-display:hover {
        border-color: #cbd5e1;
    }

.custom-select-wrapper.light .custom-select-dropdown {
    background: white;
    border-color: #e2e8f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.custom-select-wrapper.light .cs-option {
    color: #1e293b;
}

    .custom-select-wrapper.light .cs-option:hover {
        background: #f1f5f9;
        color: #024751;
    }
/* Language Dropdown */
.lang-selector-wrapper {
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--color-dark-nav);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 6px 0;
    min-width: 130px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 50;
}

.lang-selector-wrapper.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-selector-wrapper.open .lang-caret {
    transform: rotate(180deg);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

    .lang-option:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--color-white);
    }

    .lang-option.active {
        background: rgba(255, 255, 255, 0.12);
        color: var(--color-white);
    }

/* ── Government Page Components ────────────────────────── */

.mayor-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.mayor-photo-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.mayor-photo-img {
    width: 100%;
    height: auto;
    display: block;
}

.mayor-photo-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    width: fit-content;
    margin: 0 auto;
    padding: 16px 24px;
    background: rgba(10, 30, 38, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.mayor-role-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 6px;
}

.mayor-name-big {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.mayor-term-info {
    font-size: 12px;
    opacity: 0.6;
}

.mayor-message-box {
    padding-top: 0;
}

.mayor-message-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
    display: block;
}

.mayor-message-h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: #0f2d38;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.mayor-message-text {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 40px;
}

    .mayor-message-text p {
        margin-bottom: 16px;
    }

.mayor-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    transition: transform 0.2s;
}

    .stat-item:hover {
        transform: translateY(-2px);
    }

.stat-icon-wrap {
    width: 40px;
    height: 40px;
    background: #024751;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.stat-info-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f2d38;
    display: block;
}

.stat-info-sub {
    font-size: 11px;
    color: #64748b;
    margin-top: 1px;
}

/* Staff Grid */
.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag-center {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 14px;
    display: block;
}

.section-h2-center {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: #0f2d38;
    letter-spacing: -0.01em;
}

.section-sub-center {
    font-size: 15px;
    color: #64748b;
    max-width: 580px;
    margin-inline: auto;
    margin-top: 14px;
    line-height: 1.6;
}

.staff-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-bottom: 100px;
}

.staff-card {
    width: calc(33.333% - 19px);
    min-width: 280px;
    background: var(--color-white);
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

    .staff-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-color: rgba(196, 154, 42, 0.2);
    }

.staff-img-wrap {
    position: relative;
    aspect-ratio: 16/11;
    background: #f1f5f9;
}

.staff-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-dept-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 5px 12px;
    background: #c8822a;
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.staff-info {
    padding: 24px 20px 24px;
}

.staff-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #0f2d38;
    margin-bottom: 4px;
}

.staff-role {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 18px;
    font-weight: 500;
}

.staff-contact {
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.staff-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

    .staff-contact-link:hover {
        color: #c8822a;
    }

    .staff-contact-link svg {
        color: #94a3b8;
        opacity: 0.8;
    }

/* Promises Grid */
.promises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.promise-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

    .promise-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
        border-color: rgba(196, 154, 42, 0.15);
    }

.promise-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.promise-icon-box {
    width: 40px;
    height: 40px;
    background: #0f2d38;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.status-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 20px;
}

.status-achieved {
    background: #ecfdf5;
    color: #059669;
}

.status-progress {
    background: #f0fdfa;
    color: #0d9488;
}

.status-planned {
    background: #fffbeb;
    color: #d97706;
}

.promise-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #0f2d38;
    margin-bottom: 12px;
}

.promise-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
}

.promise-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 100px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

    .legend-item .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

        .legend-item .dot.progress {
            background: #0d9488;
        }

        .legend-item .dot.achieved {
            background: #059669;
        }

        .legend-item .dot.planned {
            background: #d97706;
        }

/* Voice Cards */
.voice-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.voice-card {
    background: var(--color-white);
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

    .voice-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    }

.voice-icon-box {
    width: 56px;
    height: 56px;
    background: #024751;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-inline: auto;
    margin-bottom: 24px;
}

.voice-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #0f2d38;
    margin-bottom: 14px;
}

.voice-card-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.65;
}

.voice-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0f2d38;
    padding: 10px 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
}

    .voice-btn:hover {
        background: #0f2d38;
        color: #fff;
        border-color: #0f2d38;
    }

    .voice-btn svg {
        transition: transform 0.2s;
    }

    .voice-btn:hover svg {
        transform: translateX(3px);
    }

.mayor-phone-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.mayor-phone-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fef08a;
    color: #854d0e;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.15);
    transition: all 0.3s ease;
}

    .mayor-phone-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(234, 179, 8, 0.25);
        background: #fde047;
    }

    .mayor-phone-btn strong {
        color: #92400e;
        font-size: 17px;
        margin-left: 4px;
    }

/* Responsive Government Components */
@media (max-width: 1100px) {

    .promises-grid,
    .staff-grid,
    .voice-card-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .mayor-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .staff-grid,
    .promises-grid,
    .voice-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .staff-grid,
    .promises-grid,
    .voice-card-grid {
        grid-template-columns: 1fr;
    }

    .mayor-stats-grid {
        grid-template-columns: 1fr;
    }

    .mayor-message-h2 {
        font-size: 32px;
    }

    .section-h2-center {
        font-size: 28px;
    }

    .mayor-phone-btn {
        padding: 14px 24px;
        font-size: 13px;
    }

        .mayor-phone-btn strong {
            font-size: 15px;
        }
}

/* Responsive Government Components */
@media (max-width: 992px) {
    .mayor-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .staff-grid,
    .promises-grid,
    .voice-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .staff-grid,
    .promises-grid,
    .voice-card-grid {
        grid-template-columns: 1fr;
    }

    .mayor-stats-grid {
        grid-template-columns: 1fr;
    }

    .mayor-message-h2 {
        font-size: 28px;
    }
}

/* ── Search Page Components ────────────────────────── */

.search-hero {
    background: var(--color-dark);
    padding: 36px 0 48px;
}

.search-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 24px;
}

.search-bar-wrap {
    display: flex;
    gap: 12px;
    max-width: 820px;
}

.search-input-box {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-field {
    width: 100%;
    padding: 15px 44px 15px 16px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    color: #1e293b;
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

    .search-input-field::placeholder {
        color: #94a3b8;
    }

    .search-input-field:focus {
        outline: none;
        border-color: var(--color-teal-active);
    }

.search-input-icon {
    position: absolute;
    right: 14px;
    color: #94a3b8;
    pointer-events: none;
}

.btn-search-submit {
    padding: 0 28px;
    height: 52px;
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    font-family: var(--font-body);
}

    .btn-search-submit:hover {
        background: var(--color-gold-hover);
    }

.search-main {
    background: var(--color-white);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.search-empty-state {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.empty-icon {
    color: #cbd5e1;
}

.empty-text {
    font-size: 15px;
    color: #94a3b8;
    max-width: 420px;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .search-bar-wrap {
        flex-direction: column;
    }

    .btn-search-submit {
        padding: 15px;
        width: 100%;
        height: auto;
    }
}

/* ── Contact Page Redesign ────────────────────────── */

.contact-page-section {
    background: var(--color-light-bg);
    padding: 0 0 60px;
    margin-top: -60px;
    /* Pulling up to overlap hero */
    position: relative;
    z-index: 10;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-form-panel {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.contact-section-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.contact-form .form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.form-group .required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-dark);
    background: var(--color-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .form-group input::placeholder,
    .form-group select::placeholder,
    .form-group textarea::placeholder {
        color: #94a3b8;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #cbd5e1;
        box-shadow: 0 0 0 3px rgba(226, 232, 240, 0.5);
    }

.contact-send-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #1e3a5f;
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

    .contact-send-btn:hover {
        background: #162e4d;
    }

.contact-office-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-office-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}

.contact-office-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

    .contact-office-list li {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

        .contact-office-list li svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
            color: var(--color-gold);
        }

.office-list-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: #475569;
}

    .office-list-content strong {
        color: #1e293b;
        font-weight: 600;
    }

    .office-list-content a {
        color: #0284c7;
        text-decoration: none;
        font-weight: 500;
    }

        .office-list-content a:hover {
            text-decoration: underline;
        }

.contact-map-container iframe {
    width: 100%;
    border-radius: var(--radius-sm);
}

.department-directory-section {
    background: #f8fafc;
    padding: 60px 40px;
    margin: 0 -48px;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .department-directory-section {
        padding: 40px 24px;
        margin: 0 -24px;
    }
}

.directory-header {
    text-align: center;
    margin-bottom: 40px;
}

.directory-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.directory-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-muted);
}

.department-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .department-directory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .department-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .department-directory-grid {
        grid-template-columns: 1fr;
    }
}

.directory-card {
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .directory-card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    }

.directory-card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
}

.directory-card-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dir-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

    .dir-contact-link:hover {
        color: #0284c7;
    }

    .dir-contact-link svg {
        width: 14px;
        height: 14px;
        color: var(--color-gold);
        flex-shrink: 0;
    }

/* -- Contact Page Utilities (Tailwind Mapping) ---------------- */

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-\[1200px\] {
    max-width: 1200px;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 640px) {
    .sm\:py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .sm\:p-8 {
        padding: 2rem;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.grid {
    display: grid;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-5 {
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .lg\:gap-14 {
        gap: 3.5rem;
    }

    .lg\:col-span-3 {
        grid-column: span 3 / span 3;
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.leading-relaxed {
    line-height: 1.625;
}

.text-\[\#1e3a5f\] {
    color: #1e3a5f;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-900 {
    color: #111827;
}

.text-red-500 {
    color: #ef4444;
}

.text-white {
    color: #ffffff;
}

.text-\[\#c8822a\] {
    color: #c8822a;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-\[\#1e3a5f\] {
    background-color: #1e3a5f;
}

.border {
    border: 1px solid currentColor;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-1\.5 {
    margin-bottom: 0.375rem;
}

.space-y-5 > * + * {
    margin-top: 1.25rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: start;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.shrink-0 {
    flex-shrink: 0;
}

.w-full {
    width: 100%;
}

.overflow-hidden {
    overflow: hidden;
}

.resize-none {
    resize: none;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.focus\:border-\[\#1e3a5f\]:focus {
    border-color: #1e3a5f;
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(30, 58, 95, 0.2);
}

.hover\:bg-\[\#162d4a\]:hover {
    background-color: #162d4a;
}

.hover\:text-\[\#c8822a\]:hover {
    color: #c8822a;
}

.p-6 {
    padding: 1.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.disabled\:opacity-60:disabled {
    opacity: 0.6;
}

.lucide {
    width: 1.25rem;
    height: 1.25rem;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.w-5 {
    width: 1.25rem;
}

/* -- Department Directory Utilities --------------------------- */

.border-gray-100 {
    border-color: #f3f4f6;
}

.bg-white {
    background-color: #ffffff;
}

.p-5 {
    padding: 1.25rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-1\.5 {
    gap: 0.375rem;
}

.group {
    position: relative;
}

    .group:hover .group-hover\:text-\[\#c8822a\] {
        color: #c8822a;
    }

.hover\:border-\[\#c8822a\]\/30:hover {
    border-color: rgba(200, 130, 42, 0.3);
}

.hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-gray-600 {
    color: #4b5563;
}

.max-w-xl {
    max-width: 36rem;
}

.break-all {
    word-break: break-all;
}

.shrink-0 {
    flex-shrink: 0;
}

.h-3 {
    height: 0.75rem;
}

.w-3 {
    width: 0.75rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

/* -- Button Refinement (Matches Image) ----------------------- */

.btn-send-refinement {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

    .btn-send-refinement:hover {
        background-color: #162d4a;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
    }

    .btn-send-refinement svg {
        width: 1.125rem;
        height: 1.125rem;
        transform: rotate(-10deg);
    }


/* ============================================================
   GOVERNMENT PAGE
   ============================================================ */

/* Widen the content panel for 3-col grids */
.gov-content {
    max-width: 1100px !important;
}

/* ---- Shared section block spacing ---- */
.gov-section {
    padding-top: 56px;
    padding-bottom: 56px;
    margin-top: 0;
}

    .gov-section + .gov-section {
        border-top: 1px solid #e5e9ec;
    }

/* ---- Centered section headers ---- */
.gov-section-header {
    text-align: center;
    margin-bottom: 44px;
}

.gov-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #C8822A;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gov-section-h2 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: #082124;
    margin-bottom: 14px;
    line-height: 1.2;
}

.gov-section-sub {
    font-size: 14.5px;
    color: #6B7280;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ---- Mayor hero ---- */
.gov-mayor-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 44px;
    align-items: stretch;
    margin-bottom: 56px;
}

.gov-mayor-photo-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #082124;
    min-height: 500px;
    display: flex;
}

    .gov-mayor-photo-card img {
        width: 100%;
        height: 100%;
        min-height: 500px;
        object-fit: cover;
        object-position: top center;
        display: block;
    }

.gov-mayor-photo-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: fit-content;
    max-width: 85%;
    padding: 28px 32px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.gov-mayor-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #d4ab3a;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.gov-mayor-name-big {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.gov-mayor-tagline {
    font-size: 14px;
    font-weight: 500;
    color: rgba(212, 171, 58, 0.75);
    display: block;
}

.gov-mayor-message {
    padding-top: 4px;
}

.gov-mayor-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #C8822A;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gov-mayor-h2 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    color: #082124;
    line-height: 1.25;
    margin-bottom: 20px;
}

    .gov-mayor-h2 .teal {
        color: #024751;
    }

.gov-mayor-bio {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
}

    .gov-mayor-bio p {
        font-size: 13.5px;
        line-height: 1.72;
        color: #4B5563;
        margin: 0;
    }

/* Stats 2×2 */
.gov-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
}

.gov-stat {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 13px 14px;
    border-radius: 8px;
    background: #F7FBFE;
    border: 1px solid #E2E8F0;
}

.gov-stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

    .gov-stat-icon.teal {
        background: #024751;
    }

    .gov-stat-icon.gold {
        background: #C8822A;
    }

.gov-stat-title {
    font-size: 11.5px;
    font-weight: 700;
    color: #082124;
    display: block;
    line-height: 1.3;
    margin-bottom: 3px;
}

.gov-stat-sub {
    font-size: 10.5px;
    color: #6B7280;
    display: block;
    line-height: 1.35;
}

/* ---- Staff cards ---- */
.gov-staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gov-staff-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

    .gov-staff-card:hover {
        box-shadow: 0 6px 24px rgba(8, 33, 36, 0.1);
    }

.gov-staff-photo-wrap {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #e5edf0;
}

    .gov-staff-photo-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
    }

.gov-staff-info {
    padding: 16px 18px 20px;
}

.gov-staff-name {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: #082124;
    margin-bottom: 3px;
}

.gov-staff-role {
    font-size: 12.5px;
    color: #6B7280;
    margin-bottom: 14px;
}

.gov-staff-divider {
    height: 1px;
    background: #F1F5F9;
    margin-bottom: 12px;
}

.gov-staff-contacts {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.gov-staff-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #374151;
    text-decoration: none;
}

    .gov-staff-contact-row svg {
        flex-shrink: 0;
        color: #6B7280;
    }

    .gov-staff-contact-row:hover {
        color: #024751;
    }

/* ---- Promise cards ---- */
.gov-promises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.gov-promise-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 20px 20px 22px;
}

.gov-promise-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.gov-promise-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #024751;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.gov-promise-badge {
    font-size: 10.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.gov-badge-progress {
    background: #EFF6FF;
    color: #1D4ED8;
}

.gov-badge-planned {
    background: #F3F4F6;
    color: #6B7280;
}

.gov-badge-completed {
    background: #ECFDF5;
    color: #047857;
}

.gov-promise-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #082124;
    margin-bottom: 8px;
    line-height: 1.3;
}

.gov-promise-desc {
    font-size: 12.5px;
    line-height: 1.65;
    color: #6B7280;
    margin: 0;
}

/* Legend */
.gov-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 4px;
    margin-bottom: 0;
}

.gov-legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: #6B7280;
}

.gov-legend-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

    .gov-legend-dot.progress {
        background: #1D4ED8;
    }

    .gov-legend-dot.planned {
        background: #9CA3AF;
    }

    .gov-legend-dot.completed {
        background: #059669;
    }

/* ---- Voice cards ---- */
.gov-voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 32px;
}

.gov-voice-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px 20px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gov-voice-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #024751;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.gov-voice-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #082124;
    margin-bottom: 8px;
}

.gov-voice-desc {
    font-size: 13px;
    line-height: 1.65;
    color: #6B7280;
    margin-bottom: 22px;
    flex: 1;
}

.gov-voice-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #082124;
    background: #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

    .gov-voice-btn:hover {
        border-color: #024751;
        background: #F7FBFE;
        color: #024751;
    }

/* ---- Call bar ---- */
.gov-call-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 15px 36px;
    background: #C8822A;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 60px;
}

.gov-call-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.gov-call-text {
    font-size: 14.5px;
    font-weight: 500;
    color: #ffffff;
}

    .gov-call-text strong {
        font-weight: 700;
        color: #FFF0B5;
    }

/* ---- Government page responsive ---- */
@media (max-width: 1100px) {
    .gov-mayor-grid {
        grid-template-columns: 360px 1fr;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .gov-mayor-grid {
        grid-template-columns: 1fr;
    }

    .gov-mayor-photo-card,
    .gov-mayor-photo-card img {
        min-height: 360px;
    }

    .gov-staff-grid,
    .gov-promises-grid,
    .gov-voice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {

    .gov-mayor-photo-card,
    .gov-mayor-photo-card img {
        min-height: 280px;
    }

    .gov-stats-grid,
    .gov-staff-grid,
    .gov-promises-grid,
    .gov-voice-grid {
        grid-template-columns: 1fr;
    }

    .gov-call-bar {
        padding: 14px 22px;
        flex-wrap: wrap;
        text-align: center;
        border-radius: 14px;
        width: 90%;
    }

    .gov-legend {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* ============================================================
   QUICK LINKS TAB & PANEL
   ============================================================ */

/* --- Tab Trigger --- */
.ql-tab {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    z-index: 9999;
    background: #c8822a;
    color: white;
    padding: 12px 6px;
    border-radius: 6px 0 0 6px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    user-select: none;
}

    .ql-tab:hover {
        background: white;
        color: #c8822a;
        padding-right: 12px;
    }

/* --- Side Panel --- */
.ql-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: white;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

    .ql-panel.open {
        right: 0;
    }

/* --- Panel Header & Search --- */
.ql-header {
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ql-mobile-close {
    display: none;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    color: #1e3a5f;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    flex-shrink: 0;
}

    .ql-mobile-close:hover {
        background: #ef4444;
        color: #fff;
        border-color: #ef4444;
    }

.ql-search-wrapper {
    position: relative;
    margin-top: 4px;
}

.ql-search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
}

    .ql-search-clear:hover {
        color: #1e3a5f;
        background: #f1f5f9;
    }

.ql-search-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    color: #1e293b;
    transition: border-color 0.2s;
}

    .ql-search-input:focus {
        outline: none;
        border-color: #c8822a;
    }

/* --- Accordion Content --- */
.ql-content {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

    .ql-content::-webkit-scrollbar {
        width: 6px;
    }

    .ql-content::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 3px;
    }

.ql-accordion-item {
    border-bottom: 1px solid #f1f5f9;
}

.ql-accordion-header {
    width: 100%;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

    .ql-accordion-header:hover {
        background: #f8fafc;
    }

    .ql-accordion-header h4 {
        font-family: var(--font-heading);
        font-size: 14px;
        font-weight: 700;
        color: #1e3a5f;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .ql-accordion-header .chevron {
        transition: transform 0.3s;
        color: #1e3a5f;
    }

.ql-accordion-item.active .chevron {
    transform: rotate(180deg);
}

.ql-accordion-body {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height 0.3s ease-out;
}

.ql-accordion-item.active .ql-accordion-body {
    max-height: 800px;
    transition: max-height 0.5s ease-in;
}

.ql-accordion-body ul {
    padding: 8px 0;
    list-style: none;
}

.ql-accordion-body li a {
    display: block;
    padding: 10px 24px;
    font-size: 13.5px;
    color: #475569;
    text-decoration: none;
    line-height: 1.4;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

    .ql-accordion-body li a:hover {
        background: #f1f5f9;
        color: #1e3a5f;
        border-left-color: #c8822a;
        padding-left: 28px;
    }

/* Overlay Background */
.ql-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 33, 36, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

    .ql-overlay.visible {
        opacity: 1;
        visibility: visible;
    }

/* ============================================================
   FLOATING ACTION BUTTONS (FABs)
   ============================================================ */
.fab-group {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #112d38;
    color: #c8822a;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

    .fab:hover {
        transform: scale(1.1) translateY(-2px);
        background: #1e3a5f;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    }

/* Info Panel (Global Slide-out) */
.info-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 33, 36, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .info-backdrop.open {
        opacity: 1;
        visibility: visible;
    }

.info-panel {
    position: fixed;
    top: 0;
    right: -500px;
    width: 480px;
    height: 100%;
    background: #ffffff;
    z-index: 2100;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

    .info-panel.open {
        right: 0;
    }

.info-panel-header {
    padding: 24px 30px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.info-panel-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-panel-heading {
    display: flex;
    gap: 14px;
}

.info-panel-icon {
    width: 44px;
    height: 44px;
    background: #c8822a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

    .info-panel-icon.icon-teal {
        background: #024751;
    }

.info-panel-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
}

.info-panel-sub {
    font-size: 13px;
    color: #64748b;
    margin: 2px 0 0;
}

.info-panel-close {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
}

    .info-panel-close:hover {
        background: #ef4444;
        color: #fff;
        border-color: #ef4444;
    }

.info-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */

/* Medium Devices (Tablets, small laptops) */
@media (max-width: 991px) {
    .ql-panel {
        width: 420px;
    }

    .info-panel {
        width: 420px;
    }
}

/* Small Devices (Mobile) */
@media (max-width: 580px) {

    /* Quick Links */
    .ql-tab {
        display: flex !important;
        padding: 12px 5px;
        font-size: 11px;
        top: 40%;
        z-index: 99999;
        border-right: none;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    }

    .ql-panel {
        width: 100%;
        right: -100%;
    }

    .ql-mobile-close {
        display: flex;
    }

    /* FABs */
    .fab-group {
        bottom: 16px;
        right: 16px;
        gap: 8px;
    }

    .fab {
        width: 46px;
        height: 46px;
    }

    /* Info Panel */
    .info-panel {
        width: 100%;
        right: -100%;
    }

    .info-panel-header {
        padding: 20px;
    }

    .info-panel-body {
        padding: 20px;
    }

    .info-panel-title {
        font-size: 18px;
    }
}

/* Extra Small (Tiny Screens) */
@media (max-width: 380px) {
    .ql-tab {
        padding: 8px 3px;
        font-size: 10px;
    }
}

/* Hide overlapping elements when Quick Links is active */
body.ql-active .ql-tab,
body.ql-active .fab-group {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
}


/* =============================================
   STAFF MODAL
   ============================================= */

.gov-staff-card[data-staff] {
    cursor: pointer;
}

    .gov-staff-card[data-staff]:hover {
        transform: translateY(-2px);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

.staff-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

    .staff-modal-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

.staff-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.25s ease;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.staff-modal-overlay.is-open .staff-modal {
    transform: translateY(0) scale(1);
}

.staff-modal-photo-wrap {
    position: relative;
    flex-shrink: 0;
    height: 320px;
    background: #dde4e7;
    overflow: hidden;
}

    .staff-modal-photo-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

.staff-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    transition: background 0.15s, transform 0.15s;
    color: #111;
    z-index: 1;
}

    .staff-modal-close:hover {
        background: #fff;
        transform: scale(1.08);
    }

.staff-modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 24px 24px 16px;
    -webkit-overflow-scrolling: touch;
}

    .staff-modal-body p {
        font-size: 0.9rem;
        line-height: 1.78;
        color: #374151;
        margin: 0 0 14px;
    }

        .staff-modal-body p:last-child {
            margin-bottom: 0;
        }

    .staff-modal-body a {
        color: #024751;
        text-decoration: underline;
    }

.staff-modal-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #0a2028;
    margin: 22px 0 8px;
    display: block;
}

.staff-modal-footer {
    flex-shrink: 0;
    border-top: 1px solid #e5e7eb;
    padding: 14px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
}

.staff-modal-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #374151;
    font-size: 0.875rem;
    transition: color 0.15s;
}

    .staff-modal-contact-row:hover {
        color: #024751;
    }

.staff-modal-contact-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f0f4f5;
    flex-shrink: 0;
    color: #024751;
}

/* Responsive */
@media (max-width: 540px) {
    .staff-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .staff-modal {
        max-height: 96vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }

    .staff-modal-overlay.is-open .staff-modal {
        transform: translateY(0);
    }

    .staff-modal-photo-wrap {
        height: 260px;
    }

    .staff-modal-body {
        padding: 20px 20px 12px;
    }

    .staff-modal-footer {
        padding: 12px 20px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
}

@media (max-width: 380px) {
    .staff-modal-photo-wrap {
        height: 220px;
    }
}


/* Headers wrapper — positioned above service finder */
.hero-headers-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: flex-end;
    /*padding-bottom: 32px;
    min-height: 160px;*/
}
/* ── News paged item transition ── */
.news-paged-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

    .news-paged-item.news-card-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── Keep grid layout intact ── */
.news-pagination-wrapper .news-grid {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* always 2 columns */
    gap: 20px;
    align-items: start;
}

/* ── Arrow buttons matching your image ── */
.news-nav-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #0a2028;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

    .news-nav-arrow:hover:not(:disabled) {
        background: #163845;
        transform: scale(1.06);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    }

    .news-nav-arrow:active:not(:disabled) {
        transform: scale(0.97);
    }

    .news-nav-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .news-nav-arrow svg {
        width: 20px;
        height: 20px;
        stroke: #c8822a;
        stroke-width: 2.5px;
    }

/* ── Wrapper ── */
.news-pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}
.news-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.news-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: burlywood;
    cursor: pointer;
    transition: width 0.3s, background 0.3s;
}

    .news-dot.active {
        width: 24px;
        background: var(--color-gold);
    }

@media (max-width: 768px) {
    .news-pagination-wrapper .news-grid {
        grid-template-columns: 1fr;
    }

    .news-nav-arrow {
        width: 38px;
        height: 38px;
    }
}
.svc-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

    .svc-nav-item:hover {
        background: #f1f5f9;
        color: var(--color-dark);
    }

    .svc-nav-item.active {
        background: var(--color-dark);
        color: #fff;
    }

    .svc-nav-item svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }

/* Resources section in sidebar */
.svc-resources-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.svc-resources-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #94a3b8;
    text-transform: uppercase;
    padding: 0 4px;
    margin-bottom: 4px;
}

.svc-resource-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid #f1f5f9;
}

    .svc-resource-link:last-child {
        border-bottom: none;
    }

    .svc-resource-link:hover {
        color: var(--color-dark);
    }

.svc-resource-link-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-resource-link svg {
    flex-shrink: 0;
    color: #94a3b8;
}

/* Outer section card */
.svc-section-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

/* Section headings with dash */
.svc-section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
}

.svc-section-dash {
    width: 20px;
    height: 3px;
    background: var(--color-gold, #d4a017);
    border-radius: 2px;
    flex-shrink: 0;
}

.svc-section-dash--dark {
    background: var(--color-dark, #0a2028);
}

.svc-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

/* Available services list */
.svc-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-item-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s, border-color 0.15s;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
}

    .svc-item-row:hover {
        background: #f8fafc;
    }

.svc-item-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-dark);
}

    .svc-item-icon svg {
        width: 17px;
        height: 17px;
    }

.svc-item-body {
    flex: 1;
    min-width: 0;
}

.svc-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 3px;
    transition: color 0.15s;
}

.svc-item-row:hover .svc-item-title {
    color: var(--color-gold);
}

.svc-item-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.svc-item-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #94a3b8;
    transition: color 0.15s;
}

.svc-item-row:hover .svc-item-arrow {
    color: var(--color-gold);
}

/* ── Responsive ─────────────────────────────────── */

/* Tablet (≤992px): sidebar becomes horizontal scrolling pill strip */
@media (max-width: 992px) {
    /* hide search box and resources — no room in the strip */
    
    .svc-resources-section {
        display: none !important;
    }

    /* nav items row */
    #svcSidebarNav {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 6px !important;
        padding: 0 !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

        #svcSidebarNav::-webkit-scrollbar {
            display: none;
        }

    .svc-nav-item {
        white-space: nowrap !important;
        padding: 8px 16px !important;
        border-radius: 20px !important;
        font-size: 13.5px !important;
        border: 1px solid #e2e8f0 !important;
        width: auto !important;
        flex-shrink: 0;
        background: none !important;
        color: #475569 !important;
    }

        .svc-nav-item.active {
            background: var(--color-dark) !important;
            color: #fff !important;
            border-color: var(--color-dark) !important;
        }

        .svc-nav-item svg {
            display: none !important;
        }

    /* contact grid: single column */
    .split-contact-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .svc-items-list {
        gap: 6px;
    }

    /* section cards: slightly less padding on tablet */
    .svc-section-card {
        padding: 20px;
    }

    /* hero image: slightly shorter */
    .split-image {
        height: 260px !important;
    }

    /* action buttons: full width when stacked */
    .split-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Phone (≤600px) */
@media (max-width: 600px) {
    .svc-nav-item {
        font-size: 13px !important;
        padding: 7px 12px !important;
    }
    /* heading is inside a card — reset margin-top to 0 */
    .svc-section-heading {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .svc-item-row {
        padding: 13px 14px;
        gap: 11px;
    }

    .svc-item-desc {
        font-size: 12.5px;
    }

    .svc-access-item {
        font-size: 13px;
    }

    .svc-section-title {
        font-size: 15px;
    }

    /* cards: tighter padding and spacing on phones */
    .svc-section-card {
        padding: 16px;
        margin-bottom: 12px;
        border-radius: 10px;
    }

    /* hero image: shorter on phones */
    .split-image {
        height: 200px !important;
        border-radius: 8px !important;
    }
}

/* Very small (≤400px) */
@media (max-width: 400px) {
    .svc-item-icon {
        width: 32px;
        height: 32px;
    }

        .svc-item-icon svg {
            width: 15px;
            height: 15px;
        }

    .svc-item-title {
        font-size: 13px;
    }

    /* ultra-compact card padding */
    .svc-section-card {
        padding: 13px;
    }

    /* hero image: minimal height on tiny screens */
    .split-image {
        height: 170px !important;
    }
}

/* How to access list */
.svc-access-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.svc-access-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
}

.svc-access-arrow {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-teal-active, #0d7377);
}


/* =========================================
   BOARDS & COMMITTEES SPECIFIC
   ========================================= */
.committee-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.committee-icon-sq {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--color-dark-nav);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .committee-icon-sq svg {
        width: 28px;
        height: 28px;
    }

.committee-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.committee-subtitle {
    font-size: 14px;
    color: #64748b;
}

.committee-banner {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 32px;
}

.btn-outline-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #cbd5e1;
    background: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    transition: all 0.2s;
    margin-bottom: 32px;
}

    .btn-outline-action:hover {
        background: #f8fafc;
        border-color: #94a3b8;
    }

/* ================================================
   Boards & Committees — Responsive
   ================================================ */

/* ---- Tablet (≤992px) ---- */
@media (max-width: 992px) {
    /* Tab buttons: wrap naturally into rows, auto width */
    #boardsTabContainer {
        display: flex !important;
        flex-wrap: wrap !important;
        overflow-x: visible !important;
        gap: 8px !important;
    }

        #boardsTabContainer .split-btn {
            width: auto !important;
            flex: 0 0 auto !important;
            white-space: nowrap;
        }

    /* Committee header: keep horizontal (icon left, text right) */
    .committee-top {
        flex-direction: row !important;
        align-items: center !important;
        gap: 16px !important;
    }

    .committee-title {
        font-size: 22px !important;
    }

    /* Action buttons: keep side by side, auto width */
    .committee-actions {
        flex-wrap: wrap !important;
    }

    .btn-solid-action,
    .btn-outline-action {
        flex: 0 0 auto !important;
        width: auto !important;
        justify-content: center;
    }

    /* Banner: shorter on tablets */
    .committee-banner {
        height: 200px !important;
    }

    /* Transp header */
    .transp-header {
        margin-bottom: 16px;
    }

    .transp-title {
        font-size: 22px !important;
    }
}

/* ---- Mobile (≤600px) ---- */
@media (max-width: 600px) {
    /* Tab buttons: still wrap, slightly smaller text */
    #boardsTabContainer {
        gap: 6px !important;
    }

        #boardsTabContainer .split-btn {
            font-size: 13px !important;
            padding: 8px 12px !important;
            width: auto !important;
            flex: 0 0 auto !important;
        }

    /* Icon stays same side, shrinks slightly */
    .committee-icon-sq {
        width: 48px !important;
        height: 48px !important;
        border-radius: 10px !important;
        flex-shrink: 0 !important;
    }

        .committee-icon-sq svg {
            width: 24px !important;
            height: 24px !important;
        }

    /* Title scales down */
    .committee-title {
        font-size: 20px !important;
    }

    .committee-subtitle {
        font-size: 13px !important;
    }

    /* Banner shorter */
    .committee-banner {
        height: 160px !important;
        border-radius: 8px !important;
    }

    /* Cards tighter */
    .split-card {
        padding: 16px 14px !important;
        border-radius: 10px !important;
    }

    .split-card-title-flex {
        font-size: 15px !important;
    }

    /* Action buttons: keep side-by-side (match reference) */
    .btn-solid-action,
    .btn-outline-action {
        flex: 0 0 auto !important;
        width: auto !important;
        font-size: 15px !important;
    }

    /* Contact rows: tighter */
    .contact-person-row {
        gap: 12px;
    }

    .contact-person-icon {
        width: 36px !important;
        height: 36px !important;
    }

    /* Content wrapper padding */
    .split-content-wrapper {
        padding: 20px 16px !important;
        width: 100% !important;
    }
}

.contact-person-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-person-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
}

.contact-person-info {
    display: flex;
    flex-direction: column;
}

.contact-person-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 4px;
}

.contact-person-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
}

.contact-person-email {
    font-size: 14px;
    color: #0284c7;
    text-decoration: none;
}

    .contact-person-email:hover {
        text-decoration: underline;
    }

.members-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #334155;
}

    .member-item svg {
        color: #64748b;
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

/* ── Outer section card wrapper ─────────────────── */
.comm-section-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 20px;
}

    .comm-section-card:last-child {
        margin-bottom: 0;
    }

/* ── Section headings (gold dash + title) ───────── */
.comm-section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0 14px;
}

.comm-section-dash {
    width: 20px;
    height: 3px;
    background: var(--color-gold, #d4a017);
    border-radius: 2px;
    flex-shrink: 0;
}

.comm-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

/* ── Parks: about text ──────────────────────────── */
.comm-about-text {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* ── Parks: park cards ──────────────────────────── */
.comm-parks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comm-park-card {
    display: flex;
    flex-direction: row;
    gap: 16px;
    background: #f7fbfe;
    border: 1px solid #e0ecee;
    border-radius: 10px;
    padding: 16px;
}

.comm-park-img {
    width: 160px;
    height: auto;
    min-height: 100px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
}

.comm-park-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.comm-park-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.comm-park-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.comm-park-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.comm-park-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(2, 71, 81, 0.10);
    color: #024751;
}

/* ── Parks: programs list ───────────────────────── */
.comm-programs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comm-programs-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
}

.comm-programs-arrow {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-teal-active, #0d7377);
}

/* ── Parks: contact grid ────────────────────────── */
.comm-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 4px;
}

.comm-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.comm-contact-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #64748b;
}

.comm-contact-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 3px;
    display: block;
}

.comm-contact-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
}

    .comm-contact-value a {
        color: var(--color-teal-active, #0d7377);
        text-decoration: none;
    }

/* ── News: items ────────────────────────────────── */
.comm-news-list {
    display: flex;
    flex-direction: column;
}

.comm-news-item {
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
}

    .comm-news-item:first-child {
        padding-top: 20px;
    }

    .comm-news-item:last-child {
        border-bottom: none;
        padding-bottom: 20px;
    }

.comm-news-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.comm-news-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.comm-news-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 5px;
    line-height: 1.4;
}

.comm-news-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 8px;
}

.comm-news-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #94a3b8;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 600px) {
    .comm-park-img {
        width: 110px;
        min-height: 100px;
    }

    .comm-park-name {
        font-size: 14px;
    }

    .comm-park-desc {
        font-size: 13px;
    }

    .comm-contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .comm-section-heading {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .comm-news-title {
        font-size: 14px;
    }

    .comm-news-desc {
        font-size: 13px;
    }
}

@media (max-width: 560px) {
    .comm-park-card {
        flex-direction: column;
        gap: 12px;
    }

    .comm-park-img {
        width: 100%;
        height: 144px;
        min-height: unset;
    }
}
/* Forms section container */
.forms-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Checklist link styles */
.checklist-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

    .checklist-link:hover {
        background: #f1f5f9;
        border-color: #cbd5e1;
    }

    /* SVG icon using ::before */
    .checklist-link.svg::before {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B8860B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
.related-links-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Related Link Item */
.related-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--color-dark);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

    .related-link:hover {
        background: #0a2e35;
        transform: translateX(4px);
    }

    /* Link icon using ::before (chain/link icon) */
    .related-link::before {
        content: '';
        display: inline-block;
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B8860B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'%3E%3C/path%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'%3E%3C/path%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

/* ── Cards ── */
.leg-cards-section {
    padding: 56px 0 48px;
}

.leg-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.leg-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .leg-card:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,0.10);
        transform: translateY(-2px);
    }

.leg-card-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    margin-bottom: 20px;
    flex-shrink: 0;
}

    .leg-card-icon svg {
        width: 22px;
        height: 22px;
    }

.leg-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 10px;
}

.leg-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 24px;
    flex: 1;
}

.leg-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-teal-active, #0d7377);
    text-decoration: none;
    transition: gap 0.2s;
}

    .leg-card-link:hover {
        gap: 10px;
    }

    .leg-card-link svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

/* ── Cannabis Notice ── */
.leg-cannabis-section {
    padding: 0 0 56px;
}

.leg-cannabis-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.leg-cannabis-icon {
    width: 52px;
    height: 52px;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    flex-shrink: 0;
}

.leg-cannabis-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 6px;
}

.leg-cannabis-body p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 14px;
    line-height: 1.6;
}

.leg-cannabis-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--color-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s;
}

    .leg-cannabis-btn:hover {
        opacity: 0.85;
    }

/* ── Transparency Banner ── */
.leg-transparency {
    padding: 0 0 72px;
}

.leg-transparency-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 36px;
}

    .leg-transparency-card h2 {
        font-size: clamp(20px, 3vw, 26px);
        font-weight: 700;
        color: var(--color-dark);
        margin: 0 0 14px;
    }

    .leg-transparency-card p {
        font-size: 15px;
        color: #334155;
        line-height: 1.75;
        margin: 0 0 10px;
    }

        .leg-transparency-card p:last-child {
            margin-bottom: 0;
        }

    .leg-transparency-card a {
        color: var(--color-teal-active, #0d7377);
        text-decoration: none;
        font-weight: 500;
    }

        .leg-transparency-card a:hover {
            text-decoration: underline;
        }

/* ── Responsive ── */
@media (max-width: 900px) {
    .leg-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .leg-hero {
        padding: 52px 0 44px;
    }

    .leg-cards-section {
        padding: 40px 0 32px;
    }

    .leg-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .leg-card {
        padding: 24px 20px;
    }

    .leg-cannabis-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 16px;
    }

    .leg-transparency-card {
        padding: 24px 20px;
    }

    .leg-cannabis-section {
        padding: 0 0 40px;
    }

    .leg-transparency {
        padding: 0 0 52px;
    }
}

/* =============================================
   NOTICES PAGE  (html/notices.html)
   ============================================= */

.np-page {
    background: #f8fafc;
    padding: 48px 0 64px;
}

.is-paged-hidden {
    display: none !important;
}

.np-block {
    background: #fff;
    border: 1px solid #94a3b896;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}

/* Block header row: section label + filters */
.np-block-header {
    display: flex;
    align-items: flex-end; /* Align labels and boxes correctly */
    gap: 20px;
    flex-wrap: wrap;
    padding: 24px 28px;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.np-block-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    white-space: nowrap;
    margin-right: auto;
    align-self: flex-start; /* Keeps it at the top while filters are bottom-aligned */
    padding-top: 5px;
}

/* Filter bar */
/* Filter bar is now just a container for groups */
.np-filter-bar {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    background: transparent;
}

.np-filter-group {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-width: 220px;
    position: relative;
}

    .np-filter-group + .np-filter-group {
        border-left: none;
        min-width: 280px;
    }

.np-filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: normal;
}

.np-filter-select,
.np-filter-input {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    background: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-dark);
    padding: 0 14px;
    width: 100%;
    height: 42px;
    transition: border-color 0.2s;
}

    .np-filter-input:focus {
        border-color: #cbd5e1;
    }

.search-box-wrapper {
    position: relative;
    width: 100%;
}

    .search-box-wrapper .search-icon {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        pointer-events: none;
    }

.np-filter-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 18px;
}

.np-filter-input::placeholder {
    color: #94a3b8;
}

/* Notice list */
.np-list {
    display: flex;
    flex-direction: column;
}

.np-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 28px;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}

    .np-item:last-child {
        border-bottom: none;
    }

    .np-item:hover {
        background: #f8fafc;
    }

    .np-item.hidden {
        display: none;
    }

/* Icon circle */
.np-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-dark-section);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    margin-top: 2px;
}

/* Body: type + title + date */
.np-item-body {
    flex: 1;
    min-width: 0;
}

.np-item-type {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #64748b;
    display: block;
    margin-bottom: 3px;
}

.np-item-title {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.45;
    margin-bottom: 5px;
    transition: color 0.15s;
}

.np-item:hover .np-item-title {
    color: #024751;
}

.np-item-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.np-item-date,
.np-item-due {
    font-size: 12px;
    color: #94a3b8;
}

.np-item-due {
    color: #b45309;
}

/* Right: badge */
.np-item-right {
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
    flex-shrink: 0;
}

.np-badge-new {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 7px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Show more button */
.np-show-more-wrap {
    padding: 20px 28px;
    border-top: 1px solid #f1f5f9;
}

.np-show-more {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #024751;
    background: none;
    border: 1.5px solid #024751;
    border-radius: 8px;
    padding: 10px 22px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

    .np-show-more:hover {
        background: #024751;
        color: #fff;
    }

/* Responsive */
@media (max-width: 768px) {
    .np-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }

    .np-filter-bar {
        width: 100%;
    }

    .np-filter-group {
        flex: 1;
        min-width: 0;
    }

    .np-item {
        padding: 16px 20px;
    }

    .np-show-more-wrap {
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .np-filter-bar {
        flex-direction: column;
    }

    .np-filter-group + .np-filter-group {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }

    .np-item-icon {
        width: 36px;
        height: 36px;
    }

    .np-item-title {
        font-size: 13.5px;
    }
}

/* =============================================
   COMMUNITY PAGE
   ============================================= */

.community-page-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #102830;
}

.community-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.community-hero-inner {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px 40px;
}

@media (min-width: 1024px) {
    .community-hero-inner {
        padding: 32px 100px 40px;
    }
}

.community-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

    .community-breadcrumb a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.2s;
    }

        .community-breadcrumb a:hover {
            color: #fff;
        }

    .community-breadcrumb span {
        color: #fff;
        font-weight: 500;
    }

.community-hero-content {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.community-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #024751;
    color: #fff0b5;
    box-shadow: 0 10px 15px -3px rgba(2, 71, 81, 0.3);
}

.community-hero-content h1 {
    font-family: var(--font-heading, "Fraunces", serif);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

@media (min-width: 640px) {
    .community-hero-content h1 {
        font-size: 30px;
    }
}

.community-hero-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Mobile Nav */
.community-mobile-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    border-bottom: 1px solid #f3f4f6;
    padding: 12px 16px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
    .community-mobile-nav {
        display: none;
    }
}

.community-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s;
}

    .community-toggle-btn:hover {
        background-color: #f9fafb;
    }

.active-community-name {
    font-size: 14px;
    font-weight: 600;
    color: #082124;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Split Layout */
.community-split-layout {
    display: flex;
    flex: 1;
    background-color: #fcfcfc;
}

.community-sidebar-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    display: none;
}

    .community-sidebar-overlay.open {
        display: block;
    }

.community-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    border-right: 1px solid #f3f4f6;
    z-index: 50;
    transition: left 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

    .community-sidebar.open {
        left: 0;
    }

@media (min-width: 1024px) {
    .community-sidebar {
        position: sticky;
        top: 0;
        left: auto;
        width: 300px;
        height: 100vh;
        z-index: 20;
        flex-shrink: 0;
        border-right: 1px solid #f3f4f6;
    }
}

.community-sidebar-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
}

@media (min-width: 1024px) {
    .community-sidebar-mobile-header {
        display: none;
    }
}

.community-sidebar-mobile-header span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #082124;
    letter-spacing: 0.05em;
}

.community-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s;
}

    .community-close-btn:hover {
        background-color: #f3f4f6;
        color: #4b5563;
    }

.community-sidebar-inner {
    padding: 20px;
}

.community-sidebar-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 0.05em;
    margin: 0 0 16px;
}

.community-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.community-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: none;
    color: #4b5563;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

    .community-sidebar-item:hover {
        background-color: rgba(2, 71, 81, 0.05);
        color: #082124;
    }

    .community-sidebar-item svg {
        color: #9ca3af;
        transition: color 0.2s;
    }

    .community-sidebar-item:hover svg {
        color: #024751;
    }

    .community-sidebar-item.active {
        background-color: #024751;
        color: #fff;
        font-weight: 500;
        box-shadow: 0 4px 6px -1px rgba(2, 71, 81, 0.15);
    }

        .community-sidebar-item.active svg {
            color: #fff0b5;
        }

.community-main {
    flex: 1;
    min-width: 0;
    padding: 32px 24px;
}

@media (min-width: 768px) {
    .community-main {
        padding: 32px 40px;
    }
}

@media (min-width: 1024px) {
    .community-main {
        padding: 40px 48px;
    }
}

.community-main-inner {
    max-width: 860px;
    margin: 0 auto;
}

.community-header-area {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.community-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: #024751;
    color: #fff0b5;
    box-shadow: 0 10px 15px -3px rgba(2, 71, 81, 0.15);
    flex-shrink: 0;
}

.community-header-area h2 {
    font-family: var(--font-heading, "Fraunces", serif);
    font-size: 24px;
    font-weight: 700;
    color: #082124;
    margin: 0 0 4px;
}

@media (min-width: 640px) {
    .community-header-area h2 {
        font-size: 30px;
    }
}

.community-header-area p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.community-events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.community-event-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
   
}

    .community-event-card:hover {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

.community-event-datebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #024751;
    border-radius: 12px;
    flex-shrink: 0;
}

    .community-event-datebox .month {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #fff0b5;
    }

    .community-event-datebox .day {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.1;
        color: #fff;
    }

.community-event-info {
    min-width: 0;
    flex: 1;
}

.community-event-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .community-event-title-row h3 {
        font-family: var(--font-heading, "Fraunces", serif);
        font-size: 15px;
        font-weight: 700;
        color: #082124;
        margin: 0;
    }

.community-event-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background-color: rgba(200, 130, 42, 0.1);
    border: 1px solid rgba(200, 130, 42, 0.2);
    border-radius: 6px;
    color: #c8822a;
    font-size: 10px;
    font-weight: 700;
}

.community-event-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 4px 0 0;
}

.community-event-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #9ca3af;
}