:root {
    --yellow: #f2c300;
    --yellow-soft: #ffe45c;
    --black: #101820;
    --black-soft: #18232c;
    --green: #146b46;
    --green-dark: #0b4c31;
    --white: #ffffff;
    --gray: #f3f5f4;
    --text: #273238;
    --shadow: 0 14px 35px rgba(16, 24, 32, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.35s ease;
}

.site-header.scrolled {
    background: rgba(16, 24, 32, 0.97);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.brand-mark {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    font-size: 22px;
    font-weight: 900;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.nav-button {
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--black) !important;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    display: block;
    margin: 5px;
    border-radius: 10px;
    background: var(--white);
}

.hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-slider,
.hero-slide,
.hero-slide img,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.83), rgba(0, 0, 0, 0.48)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent);
}

.hero-content {
    position: relative;
    z-index: 5;
    padding-top: 90px;
}

.hero-tag,
.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-tag {
    color: var(--yellow);
}

.hero h1 {
    max-width: 870px;
    margin: 0;
    font-size: clamp(36px, 6vw, 76px);
    line-height: 1.02;
}

.hero-subtitle {
    margin: 14px 0 8px;
    color: rgba(255, 255, 255, 0.93);
    font-size: clamp(17px, 2.2vw, 28px);
    font-weight: 800;
}

.kiptemor-slogan {
    display: inline-block;
    margin-top: 10px;
    color: var(--yellow);
    font-size: clamp(44px, 7vw, 100px);
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 0 16px rgba(242, 195, 0, 0.78);
    animation: kiptemorBounce 2s ease-in-out infinite;
}

.uda-slogan {
    margin: 6px 0;
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 4px;
}

.hero-message {
    max-width: 700px;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    transition: 0.3s ease;
}

.button:hover {
    transform: translateY(-4px);
}

.button-yellow {
    color: var(--black);
    background: var(--yellow);
}

.button-green {
    color: var(--white);
    background: var(--green);
}

.button-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.12);
}

.hero-arrow,
.gallery-arrow,
.lightbox-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    border: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--white);
    background: rgba(0, 0, 0, 0.32);
}

.hero-arrow {
    width: 52px;
    height: 52px;
    font-size: 26px;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    z-index: 10;
    bottom: 26px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
}

.hero-dot.active {
    background: var(--yellow);
}

.marquee-bar {
    overflow: hidden;
    background: var(--yellow);
    color: var(--black);
}

.marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 900;
    animation: marqueeMove 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.section {
    padding: 92px 0;
}

.two-column,
.register-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.profile-card,
.image-card,
.vision-card,
.support-form {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.profile-card {
    position: relative;
    overflow: hidden;
    border: 7px solid var(--yellow);
}

.profile-card img {
    width: 100%;
    height: 610px;
    object-fit: cover;
}

.profile-badge {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
    border-radius: 16px;
    color: var(--white);
    background: rgba(16, 24, 32, 0.9);
}

.profile-badge span {
    display: block;
    color: var(--yellow);
}

h2 {
    margin: 0 0 18px;
    color: var(--black);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.07;
}

.mini-grid,
.vision-grid,
.card-grid {
    display: grid;
    gap: 18px;
}

.mini-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 26px 0;
}

.mini-card {
    min-height: 115px;
    padding: 18px;
    border-left: 4px solid var(--yellow);
    border-radius: 14px;
    background: var(--gray);
}

.mini-card strong,
.mini-card span {
    display: block;
}

.mini-card span {
    margin-top: 8px;
    font-size: 14px;
}

.roads-section {
    background: var(--gray);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.image-card {
    overflow: hidden;
    background: var(--white);
    transition: 0.35s ease;
}

.image-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
}

.image-frame {
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.45s ease;
}

.image-card:hover img {
    transform: scale(1.08);
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    margin-top: 0;
}

.card-body a {
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.verification-note {
    max-width: 800px;
    margin: 28px auto 0;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-size: 13px;
    background: rgba(242, 195, 0, 0.2);
}

.vision-grid {
    grid-template-columns: repeat(4, 1fr);
}

.vision-card {
    padding: 24px;
    background: var(--white);
    transition: 0.35s ease;
}

.vision-card span {
    font-size: 36px;
}

.vision-card h3 {
    margin: 12px 0 5px;
}

.gallery-section {
    background: var(--black);
    color: var(--white);
}

.gallery-section h2 {
    color: var(--white);
}

.featured-gallery {
    position: relative;
    overflow: hidden;
    max-height: 590px;
    border-radius: 22px;
    background: #000;
}

.featured-gallery img {
    width: 100%;
    height: 590px;
    object-fit: contain;
}

.gallery-arrow {
    width: 48px;
    height: 48px;
    font-size: 22px;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 0;
    border: 0;
    border-radius: 15px;
    cursor: pointer;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.65;
}

.gallery-item span {
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    color: var(--yellow);
    font-size: 13px;
    font-weight: 900;
    transition: 0.3s ease;
}

.gallery-item:hover span {
    opacity: 1;
}

.register-section {
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(11, 76, 49, 0.98), rgba(16, 24, 32, 0.96));
}

.register-section h2 {
    color: var(--white);
}

.light-label {
    color: var(--yellow);
}

.register-copy li {
    margin-bottom: 10px;
}

.support-form {
    padding: 28px;
    color: var(--text);
    background: var(--white);
}

.support-form h3 {
    margin-top: 0;
    color: var(--black);
    font-size: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-grid label span {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 800;
}

.form-grid input,
.form-grid select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #d6ddda;
    border-radius: 10px;
    outline: none;
}

.form-grid input:focus,
.form-grid select:focus {
    border-color: var(--green);
}

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

.consent-row {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    font-size: 13px;
}

.submit-button {
    width: 100%;
    margin-top: 18px;
}

.form-status {
    margin-bottom: 0;
    font-weight: 700;
}

.hidden-field {
    display: none;
}

.site-footer {
    padding-top: 55px;
    color: rgba(255, 255, 255, 0.84);
    background: var(--black);
    border-top: 5px solid var(--yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 28px;
}

.footer-grid h3,
.footer-grid h4 {
    color: var(--yellow);
}

.footer-grid a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
    margin-top: 35px;
    padding: 18px;
    text-align: center;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.18);
}

.whatsapp-button {
    position: fixed;
    z-index: 100;
    right: 18px;
    bottom: 18px;
    padding: 14px 18px;
    border-radius: 999px;
    color: var(--white);
    background: #1fa855;
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 900;
}

.lightbox {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.93);
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    right: 25px;
    top: 18px;
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    font-size: 46px;
}

.lightbox-arrow {
    width: 52px;
    height: 52px;
    font-size: 25px;
}

.lightbox-prev {
    left: 18px;
}

.lightbox-next {
    right: 18px;
}

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

@keyframes kiptemorBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 920px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 78px;
        left: 4%;
        right: 4%;
        display: none;
        padding: 18px;
        border-radius: 16px;
        background: rgba(16, 24, 32, 0.98);
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: grid;
    }

    .two-column,
    .register-layout {
        grid-template-columns: 1fr;
    }

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

    .three-columns {
        grid-template-columns: 1fr;
    }

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

    .profile-card img {
        height: 510px;
    }
}

@media (max-width: 560px) {
    .hero-content {
        padding-top: 110px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero-prev {
        left: 8px;
    }

    .hero-next {
        right: 8px;
    }

    .section {
        padding: 68px 0;
    }

    .mini-grid,
    .vision-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        min-height: 260px;
    }

    .featured-gallery img {
        height: 390px;
    }

    .profile-card img {
        height: 420px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================================================
   GOVERNOR'S AGENDA SECTION
   ================================================== */

.agenda-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(242, 195, 0, 0.16), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f5f7f5 100%);
}

.agenda-highlight,
.agenda-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 28px;
    padding: 26px;
    border-radius: 22px;
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(11, 76, 49, 0.98), rgba(16, 24, 32, 0.98));
    box-shadow: 0 16px 36px rgba(16, 24, 32, 0.14);
}

.agenda-highlight h3,
.agenda-footer h3 {
    margin: 5px 0 8px;
    color: #ffffff;
    font-size: clamp(24px, 3vw, 34px);
}

.agenda-highlight p,
.agenda-footer p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.agenda-highlight-label {
    color: #f2c300;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.agenda-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 24px;
    border: 1px solid rgba(20, 107, 70, 0.1);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.agenda-card::after {
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    content: "";
    background: rgba(242, 195, 0, 0.1);
    transition: 0.35s ease;
}

.agenda-card:hover {
    transform: translateY(-9px);
    border-color: rgba(242, 195, 0, 0.8);
    box-shadow: 0 22px 38px rgba(16, 24, 32, 0.15);
}

.agenda-card:hover::after {
    transform: scale(1.35);
}

.agenda-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agenda-number {
    color: #146b46;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
}

.agenda-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    background: rgba(242, 195, 0, 0.18);
    font-size: 28px;
    transition: transform 0.3s ease;
}

.agenda-card:hover .agenda-icon {
    transform: translateY(-4px) scale(1.08);
}

.agenda-card h3 {
    margin: 24px 0 8px;
    color: #101820;
    font-size: 21px;
    line-height: 1.15;
}

.agenda-card p {
    margin-bottom: 20px;
    color: #46545a;
    font-size: 14px;
}

.agenda-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 7px 10px;
    border-radius: 999px;
    color: #0b4c31;
    background: rgba(20, 107, 70, 0.1);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.agenda-footer {
    margin-top: 28px;
    margin-bottom: 0;
    background:
        linear-gradient(120deg, rgba(16, 24, 32, 0.98), rgba(20, 107, 70, 0.98));
}

@media (max-width: 980px) {
    .agenda-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .agenda-grid {
        grid-template-columns: 1fr;
    }

    .agenda-highlight,
    .agenda-footer {
        display: block;
    }

    .agenda-highlight .button,
    .agenda-footer .button {
        width: 100%;
        margin-top: 18px;
    }

    .agenda-card {
        min-height: auto;
    }
}

/* ==================================================
   PREMIUM GOVERNOR'S AGENDA PATCH
   ================================================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.agenda-premium-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(242, 195, 0, 0.15), transparent 24%),
        radial-gradient(circle at 95% 10%, rgba(20, 107, 70, 0.13), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #f3f6f4 100%);
}

.agenda-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.25;
}

.agenda-bg-shape-one {
    width: 240px;
    height: 240px;
    top: 180px;
    left: -110px;
    background: #f2c300;
}

.agenda-bg-shape-two {
    width: 300px;
    height: 300px;
    right: -150px;
    bottom: 120px;
    background: #146b46;
}

.agenda-heading {
    max-width: 900px;
    margin: 0 auto 45px;
}

.agenda-heading h2 {
    margin-bottom: 18px;
    color: #101820;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.98;
}

.agenda-heading h2 span {
    display: block;
}

.agenda-yellow {
    color: #f2c300;
}

.agenda-heading p {
    max-width: 790px;
    margin: 0 auto;
    color: #526066;
    font-size: 18px;
}

.agenda-lead-card {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: stretch;
    overflow: hidden;
    width: 100%;
    margin: 0 auto 30px;
    border-radius: 28px;
    color: #ffffff;
    background:
        linear-gradient(120deg, #0b4c31 0%, #101820 75%);
    box-shadow: 0 26px 55px rgba(16, 24, 32, 0.2);
}

.agenda-lead-content {
    padding: 42px;
}

.agenda-small-title {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 999px;
    color: #101820;
    background: #f2c300;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.agenda-lead-content h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.03;
}

.agenda-lead-content p {
    max-width: 710px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 16px;
}

.agenda-lead-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 17px;
}

.agenda-text-link {
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.agenda-text-link:hover {
    color: #f2c300;
}

.agenda-lead-image {
    min-height: 350px;
}

.agenda-lead-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.agenda-modern-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 24, 32, 0.07);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 24, 32, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.agenda-modern-card:hover {
    transform: translateY(-9px);
    border-color: rgba(242, 195, 0, 0.8);
    box-shadow: 0 24px 46px rgba(16, 24, 32, 0.17);
}

.agenda-card-image {
    position: relative;
    overflow: hidden;
    height: 185px;
    background: #dfe7e3;
}

.agenda-card-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(0deg, rgba(16, 24, 32, 0.25), transparent 65%);
}

.agenda-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.agenda-modern-card:hover .agenda-card-image img {
    transform: scale(1.1);
}

.agenda-card-content {
    position: relative;
    min-height: 285px;
    padding: 24px;
}

.agenda-icon-wrap {
    position: absolute;
    top: -30px;
    right: 22px;
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border: 4px solid #ffffff;
    border-radius: 18px;
    background: #f2c300;
    box-shadow: 0 9px 20px rgba(16, 24, 32, 0.13);
    font-size: 30px;
}

.agenda-card-number {
    display: block;
    margin-bottom: 9px;
    color: #146b46;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.agenda-card-content h3 {
    margin: 0 0 9px;
    color: #101820;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.08;
}

.agenda-card-content p {
    margin: 0 0 18px;
    color: #58666c;
    font-size: 14px;
}

.agenda-chip {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 999px;
    color: #0b4c31;
    background: rgba(20, 107, 70, 0.1);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.agenda-bottom-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding: 32px;
    border-radius: 24px;
    color: #ffffff;
    background:
        linear-gradient(110deg, #101820 0%, #0b4c31 100%);
    box-shadow: 0 18px 40px rgba(16, 24, 32, 0.16);
}

.agenda-bottom-banner span {
    color: #f2c300;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
}

.agenda-bottom-banner h3 {
    margin: 5px 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
}

.agenda-bottom-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.77);
}

@media (max-width: 1020px) {
    .agenda-modern-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .agenda-lead-card {
        grid-template-columns: 1fr;
    }

    .agenda-lead-image {
        max-height: 330px;
    }
}

@media (max-width: 650px) {
    .agenda-premium-section {
        padding: 75px 0;
    }

    .agenda-heading h2 {
        font-size: 47px;
    }

    .agenda-heading p {
        font-size: 16px;
    }

    .agenda-modern-grid {
        grid-template-columns: 1fr;
    }

    .agenda-lead-content {
        padding: 27px;
    }

    .agenda-lead-image {
        min-height: 265px;
    }

    .agenda-bottom-banner {
        display: block;
        padding: 25px;
    }

    .agenda-bottom-banner .button {
        width: 100%;
        margin-top: 18px;
    }
}

/* ==================================================
   KERICHO POLLING-STATION DROPDOWN PATCH
   ================================================== */

.support-form select:disabled,
.support-form input:read-only {
    cursor: not-allowed;
    color: #68766f;
    background: #f0f3f1;
}

.support-form select {
    appearance: auto;
    background-color: #ffffff;
}

.support-form select:focus {
    border-color: #146b46;
    box-shadow: 0 0 0 4px rgba(20, 107, 70, 0.12);
}

/* ==================================================
   KERICHO POLLING-STATION DROPDOWN PATCH
   ================================================== */

.support-form select:disabled,
.support-form input:read-only {
    cursor: not-allowed;
    color: #68766f;
    background: #f0f3f1;
}

.support-form select {
    appearance: auto;
    background-color: #ffffff;
}

.support-form select:focus {
    border-color: #146b46;
    box-shadow: 0 0 0 4px rgba(20, 107, 70, 0.12);
}

/* ==================================================
   PERSONALIZED SUPPORTER WELCOME POPUP
   ================================================== */

.kiptemor-welcome-popup {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    animation: kiptemorWelcomeFadeIn 0.3s ease both;
}

.kiptemor-welcome-popup.closing {
    animation: kiptemorWelcomeFadeOut 0.26s ease both;
}

.kiptemor-welcome-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(5px);
}

.kiptemor-welcome-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: min(560px, 94vw);
    padding: 38px 30px 30px;
    border: 3px solid #f2c300;
    border-radius: 28px;
    text-align: center;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(242, 195, 0, 0.24), transparent 32%),
        linear-gradient(145deg, #0b4c31 0%, #101820 92%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    animation: kiptemorWelcomePop 0.42s ease both;
}

.kiptemor-welcome-card::before,
.kiptemor-welcome-card::after {
    position: absolute;
    border-radius: 50%;
    content: "";
    opacity: 0.12;
    background: #f2c300;
}

.kiptemor-welcome-card::before {
    width: 155px;
    height: 155px;
    top: -68px;
    right: -48px;
}

.kiptemor-welcome-card::after {
    width: 130px;
    height: 130px;
    left: -54px;
    bottom: -58px;
}

.kiptemor-welcome-close {
    position: absolute;
    z-index: 4;
    top: 10px;
    right: 16px;
    border: 0;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
}

.kiptemor-welcome-icon {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    margin: 0 auto 16px;
    border: 5px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    color: #101820;
    background: #f2c300;
    box-shadow: 0 0 28px rgba(242, 195, 0, 0.5);
    font-size: 40px;
    font-weight: 900;
}

.kiptemor-welcome-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #f2c300;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
}

.kiptemor-welcome-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(27px, 5vw, 39px);
    font-weight: 900;
    line-height: 1;
}

.kiptemor-welcome-message {
    margin: 18px auto 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
}

.kiptemor-welcome-slogan {
    margin-bottom: 20px;
    color: #f2c300;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 4px;
}

.kiptemor-welcome-button {
    min-width: 190px;
}

@keyframes kiptemorWelcomeFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes kiptemorWelcomeFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes kiptemorWelcomePop {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.93);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 560px) {
    .kiptemor-welcome-card {
        padding: 32px 20px 24px;
        border-radius: 22px;
    }

    .kiptemor-welcome-message {
        font-size: 14px;
    }
}

/* ==================================================
   REGISTRATION DROPDOWN AND SUCCESS MESSAGE FIX
   ================================================== */

#register {
    scroll-margin-top: 95px;
}

.manual-entry-field {
    display: none;
    margin-top: 9px;
}

.registration-success-message {
    display: none;
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid rgba(20, 107, 70, 0.25);
    border-radius: 12px;
    color: #0b4c31;
    background: rgba(20, 107, 70, 0.1);
    font-size: 14px;
    font-weight: 800;
}

.kiptemor-success-popup {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.kiptemor-success-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(6px);
}

.kiptemor-success-card {
    position: relative;
    z-index: 2;
    width: min(570px, 94vw);
    padding: 38px 28px 30px;
    border: 3px solid #f2c300;
    border-radius: 28px;
    text-align: center;
    color: #ffffff;
    background:
        radial-gradient(
            circle at top right,
            rgba(242, 195, 0, 0.24),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #0b4c31 0%,
            #101820 94%
        );
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.44);
    animation: kiptemorSuccessOpen 0.34s ease both;
}

.kiptemor-success-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: 0;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
    font-size: 35px;
}

.kiptemor-success-check {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    margin: 0 auto 16px;
    border: 5px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    color: #101820;
    background: #f2c300;
    font-size: 41px;
    font-weight: 900;
}

.kiptemor-success-label {
    display: block;
    margin-bottom: 8px;
    color: #f2c300;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
}

.kiptemor-success-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(27px, 5vw, 38px);
    font-weight: 900;
}

.kiptemor-success-card p {
    margin: 18px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
}

.kiptemor-success-card strong {
    display: block;
    margin-bottom: 18px;
    color: #f2c300;
    letter-spacing: 4px;
}

@keyframes kiptemorSuccessOpen {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==================================================
   REGISTRATION DROPDOWN AND SUCCESS MESSAGE FIX
   ================================================== */

#register {
    scroll-margin-top: 95px;
}

.manual-entry-field {
    display: none;
    margin-top: 9px;
}

.registration-success-message {
    display: none;
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid rgba(20, 107, 70, 0.25);
    border-radius: 12px;
    color: #0b4c31;
    background: rgba(20, 107, 70, 0.1);
    font-size: 14px;
    font-weight: 800;
}

.kiptemor-success-popup {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.kiptemor-success-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(6px);
}

.kiptemor-success-card {
    position: relative;
    z-index: 2;
    width: min(570px, 94vw);
    padding: 38px 28px 30px;
    border: 3px solid #f2c300;
    border-radius: 28px;
    text-align: center;
    color: #ffffff;
    background:
        radial-gradient(
            circle at top right,
            rgba(242, 195, 0, 0.24),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #0b4c31 0%,
            #101820 94%
        );
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.44);
    animation: kiptemorSuccessOpen 0.34s ease both;
}

.kiptemor-success-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: 0;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
    font-size: 35px;
}

.kiptemor-success-check {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    margin: 0 auto 16px;
    border: 5px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    color: #101820;
    background: #f2c300;
    font-size: 41px;
    font-weight: 900;
}

.kiptemor-success-label {
    display: block;
    margin-bottom: 8px;
    color: #f2c300;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
}

.kiptemor-success-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(27px, 5vw, 38px);
    font-weight: 900;
}

.kiptemor-success-card p {
    margin: 18px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
}

.kiptemor-success-card strong {
    display: block;
    margin-bottom: 18px;
    color: #f2c300;
    letter-spacing: 4px;
}

@keyframes kiptemorSuccessOpen {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
