/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #18332a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font: inherit;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   COLORS

   logo:
   green      #075c3b
   lightgreen #55a630
   blue       #0876bd
   yellow     #f9bd00
========================================================= */


/* =========================================================
   TOPBAR
========================================================= */

.topbar {
    background: #075c3b;
    color: white;
    font-size: 13px;
}

.topbar-inner {
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    gap: 25px;
}

.topbar-left span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.topbar-right {
    display: flex;
    gap: 14px;
}

.topbar-right a {
    opacity: .85;
    transition: .2s;
}

.topbar-right a:hover {
    opacity: 1;
}


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

.header {
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #e7ece9;

    position: sticky;
    top: 0;

    z-index: 1000;
}

.header-inner {
    min-height: 92px;

    display: flex;
    align-items: center;

    gap: 35px;
}

.logo {
    width: 176px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
}

.navigation {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 28px;
}

.navigation a {
    font-size: 14px;
    font-weight: 600;

    position: relative;

    transition: .2s;
}

.navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #55a630;

    transition: .25s;
}

.navigation a:hover {
    color: #0876bd;
}

.navigation a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-button {
    width: 44px;
    height: 44px;

    border-radius: 50%;
    border: 1px solid #dfe7e3;

    background: #fff;

    cursor: pointer;

    transition: .2s;
}

.search-button:hover {
    background: #f3f8f5;
}

.header-button {
    padding: 12px 18px;

    border-radius: 10px;

    color: white;
    background: #075c3b;

    font-size: 13px;
    font-weight: 600;

    display: flex;
    align-items: center;

    gap: 8px;

    transition: .2s;
}

.header-button:hover {
    background: #0876bd;
}

.mobile-menu {
    display: none;

    border: none;
    background: transparent;

    font-size: 24px;

    cursor: pointer;
}


/* =========================================================
   NOTICE
========================================================= */

.notice {
    background: #fff6d6;
    border-bottom: 1px solid #f2e2a1;
}

.notice-inner {
    min-height: 51px;

    display: flex;
    align-items: center;

    gap: 20px;

    font-size: 13px;
}

.notice-label {
    padding: 6px 10px;

    border-radius: 6px;

    background: #f9bd00;
    color: #453500;

    font-weight: 800;

    font-size: 11px;
}

.notice-text {
    flex: 1;
}

.notice-link {
    color: #075c3b;
    font-weight: 700;
}


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

.hero {
    min-height: 580px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            100deg,
            rgba(3, 66, 43, .98) 0%,
            rgba(5, 90, 58, .94) 45%,
            rgba(8, 118, 189, .74) 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 620px;
    height: 620px;

    right: -160px;
    top: -240px;

    border-radius: 50%;

    border: 85px solid rgba(249,189,0,.13);
}

.hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: 130px;
    bottom: -320px;

    border-radius: 50%;

    background: rgba(85,166,48,.14);
}

.hero-content {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(320px, .65fr);

    gap: 90px;

    align-items: center;
}

.hero-text {
    color: white;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-weight: 700;
    font-size: 12px;

    margin-bottom: 20px;
}

.hero-label span {
    width: 35px;
    height: 3px;

    background: #f9bd00;

    border-radius: 10px;
}

.hero h1 {
    max-width: 700px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(46px, 5vw, 70px);

    line-height: 1.06;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.hero h1 span {
    color: #f9bd00;
}

.hero-text > p {
    max-width: 620px;

    color: rgba(255,255,255,.82);

    font-size: 18px;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.button {
    min-height: 52px;

    padding: 0 22px;

    border-radius: 10px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    font-size: 14px;
    font-weight: 700;

    transition: .2s;
}

.button-primary {
    background: #f9bd00;
    color: #273000;
}

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

.button-light {
    background: rgba(255,255,255,.12);
    color: white;

    border: 1px solid rgba(255,255,255,.2);
}

.button-light:hover {
    background: rgba(255,255,255,.18);
}


/* HERO INFO CARD */

.hero-card {
    padding: 28px;

    border-radius: 24px;

    background: rgba(255,255,255,.96);

    box-shadow: 0 25px 60px rgba(0,0,0,.22);
}

.hero-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 22px;

    border-bottom: 1px solid #e9eeee;
}

.hero-card-head span {
    display: block;

    color: #6c7974;

    font-size: 12px;

    margin-bottom: 3px;
}

.hero-card-head strong {
    font-size: 18px;
}

.hero-card-icon {
    width: 48px;
    height: 48px;

    border-radius: 13px;

    display: grid;
    place-items: center;

    background: #e8f4e3;
    color: #55a630;

    font-size: 21px;
}

.hero-info {
    padding-top: 10px;
}

.hero-info > div {
    min-height: 68px;

    display: flex;
    align-items: center;

    gap: 14px;

    border-bottom: 1px solid #edf1ef;
}

.hero-info > div:last-child {
    border-bottom: none;
}

.hero-info > div > i {
    width: 35px;

    color: #0876bd;

    font-size: 18px;
}

.hero-info span {
    display: flex;
    flex-direction: column;
}

.hero-info small {
    color: #87928e;

    font-size: 11px;
}

.hero-info strong {
    font-size: 14px;
}


/* =========================================================
   QUICK LINKS
========================================================= */

.quick-section {
    position: relative;

    z-index: 5;

    margin-top: -45px;
}

.quick-grid {
    display: grid;

    grid-template-columns: repeat(8, 1fr);

    background: white;

    border-radius: 18px;

    box-shadow: 0 14px 45px rgba(19,62,47,.12);

    overflow: hidden;
}

.quick-card {
    min-height: 126px;

    padding: 17px 10px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-right: 1px solid #eef1ef;

    transition: .2s;
}

.quick-card:last-child {
    border-right: none;
}

.quick-card:hover {
    background: #f6faf7;

    transform: translateY(-3px);
}

.quick-icon {
    width: 44px;
    height: 44px;

    border-radius: 12px;

    display: grid;
    place-items: center;

    background: #eaf6e6;
    color: #55a630;

    font-size: 18px;
}

.quick-card:nth-child(2n) .quick-icon {
    background: #e7f3fa;
    color: #0876bd;
}

.quick-card span {
    font-weight: 700;
    font-size: 12px;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 100px 0;
}

.section-heading {
    margin-bottom: 38px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.section-label {
    color: #55a630;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.2;

    letter-spacing: -1.5px;

    margin: 5px 0 8px;
}

.section-heading p {
    color: #76827e;
}

.section-link {
    color: #0876bd;

    font-size: 13px;
    font-weight: 700;

    display: flex;
    align-items: center;

    gap: 8px;
}


/* =========================================================
   NEWS
========================================================= */

.news-layout {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 35px;
}

.news-main {
    border-radius: 18px;

    overflow: hidden;

    background: #fff;

    box-shadow: 0 9px 30px rgba(20,55,44,.08);

    border: 1px solid #e9eeeb;
}

.news-image {
    height: 330px;

    position: relative;

    overflow: hidden;
}

.placeholder-image {
    background:
        linear-gradient(
            135deg,
            #0876bd,
            #075c3b
        );

    display: grid;
    place-items: center;
}

.placeholder-tree {
    font-size: 100px;

    color: rgba(255,255,255,.16);
}

.category {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 7px 12px;

    background: #f9bd00;

    border-radius: 6px;

    font-size: 11px;
    font-weight: 800;
}

.news-main-content {
    padding: 27px;
}

.news-date {
    color: #80908a;

    font-size: 12px;

    margin-bottom: 11px;
}

.news-main-content h3 {
    font-family: "Manrope", sans-serif;

    font-size: 25px;

    line-height: 1.25;

    margin-bottom: 12px;
}

.news-main-content p {
    color: #74817d;

    font-size: 14px;

    margin-bottom: 17px;
}

.news-main-content a {
    color: #0876bd;

    font-size: 13px;
    font-weight: 700;
}

.news-side {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.news-small {
    flex: 1;

    padding: 19px;

    border-radius: 15px;

    border: 1px solid #e7ece9;

    display: grid;

    grid-template-columns: 75px 1fr;

    gap: 18px;

    align-items: center;

    transition: .2s;
}

.news-small:hover {
    box-shadow: 0 10px 25px rgba(20,55,44,.08);
}

.news-small-icon {
    width: 75px;
    height: 75px;

    border-radius: 13px;

    display: grid;
    place-items: center;

    font-size: 24px;
}

.news-small-icon.blue {
    background: #e8f3fa;
    color: #0876bd;
}

.news-small-icon.green {
    background: #edf7e9;
    color: #55a630;
}

.news-small-icon.yellow {
    background: #fff6d6;
    color: #d29f00;
}

.news-meta {
    color: #909b97;

    font-size: 10px;
}

.news-small h4 {
    line-height: 1.35;

    margin: 5px 0;
}

.news-small a {
    color: #0876bd;

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   EVENTS
========================================================= */

.events-section {
    background: #f5f8f6;
}

.events-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.event-card {
    min-height: 180px;

    padding: 25px;

    border-radius: 16px;

    background: white;

    border: 1px solid #e6ece8;

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 23px;

    transition: .2s;
}

.event-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 35px rgba(20,55,44,.1);
}

.event-date {
    width: 70px;
    height: 80px;

    border-radius: 12px;

    background: #075c3b;
    color: white;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.event-date strong {
    font-size: 27px;

    line-height: 1;
}

.event-date span {
    margin-top: 3px;

    font-size: 10px;

    letter-spacing: 1px;
}

.event-category {
    color: #55a630;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.event-content h3 {
    margin: 4px 0 13px;

    line-height: 1.3;
}

.event-content p {
    color: #76827e;

    font-size: 11px;

    margin-top: 5px;
}

.event-content p i {
    width: 17px;

    color: #0876bd;
}


/* =========================================================
   RESIDENT
========================================================= */

.resident-section {
    padding: 100px 0;

    color: white;

    background:
        linear-gradient(
            120deg,
            #064d33,
            #075c3b 55%,
            #0876bd
        );
}

.resident-wrapper {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 75px;

    align-items: center;
}

.resident-label {
    color: #f9bd00;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.resident-heading h2 {
    font-family: "Manrope", sans-serif;

    font-size: 42px;

    line-height: 1.15;

    margin: 10px 0 14px;
}

.resident-heading > p {
    color: rgba(255,255,255,.74);
}

.resident-search {
    height: 58px;

    margin-top: 28px;

    padding: 6px 6px 6px 18px;

    background: white;

    border-radius: 10px;

    display: flex;
    align-items: center;

    gap: 12px;
}

.resident-search i {
    color: #8b9692;
}

.resident-search input {
    flex: 1;

    border: none;
    outline: none;

    font-size: 12px;
}

.resident-search button {
    height: 46px;

    padding: 0 17px;

    border: none;

    border-radius: 8px;

    background: #f9bd00;

    font-weight: 700;

    cursor: pointer;
}

.resident-links {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}

.resident-links a {
    min-height: 85px;

    padding: 17px;

    border-radius: 12px;

    background: rgba(255,255,255,.1);

    border: 1px solid rgba(255,255,255,.12);

    display: grid;

    grid-template-columns: 34px 1fr 15px;

    gap: 9px;

    align-items: center;

    transition: .2s;
}

.resident-links a:hover {
    background: rgba(255,255,255,.16);
}

.resident-links > a > i:first-child {
    color: #f9bd00;

    font-size: 19px;
}

.resident-links span {
    display: flex;
    flex-direction: column;
}

.resident-links strong {
    font-size: 12px;
}

.resident-links span {
    font-size: 10px;
    color: rgba(255,255,255,.7);
}

.resident-links .fa-chevron-right {
    font-size: 9px;

    color: rgba(255,255,255,.5);
}


/* =========================================================
   VILLAGES
========================================================= */

.villages-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.villages-grid a {
    min-height: 100px;

    border-radius: 13px;

    display: flex;
    align-items: center;

    padding: 22px;

    font-family: "Manrope", sans-serif;

    font-weight: 700;

    color: white;

    background:
        linear-gradient(
            135deg,
            #075c3b,
            #55a630
        );

    position: relative;

    overflow: hidden;
}

.villages-grid a::after {
    content: "";

    position: absolute;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: rgba(255,255,255,.09);

    right: -15px;
    top: -15px;
}


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

.footer {
    background: #092c21;

    color: rgba(255,255,255,.72);
}

.footer-grid {
    padding: 65px 0;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 60px;
}

.footer-brand img {
    width: 180px;

    background: white;

    padding: 8px;

    border-radius: 8px;

    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 330px;

    font-size: 12px;

    line-height: 1.7;
}

.footer h4 {
    color: white;

    margin-bottom: 17px;

    font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.footer-grid a {
    font-size: 11px;

    transition: .2s;
}

.footer-grid a:hover {
    color: #f9bd00;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom .container {
    min-height: 60px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .navigation {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .mobile-menu {
        display: block;
    }

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

    .quick-card:nth-child(4) {
        border-right: none;
    }

}


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

@media (max-width: 800px) {

    .container {
        width: min(100% - 28px, 1180px);
    }


    /* TOP */

    .topbar-left span:nth-child(2) {
        display: none;
    }


    /* HEADER */

    .header-inner {
        min-height: 73px;
    }

    .logo {
        width: 135px;
    }

    .header-button {
        display: none;
    }


    /* NOTICE */

    .notice-inner {
        padding: 10px 0;
    }

    .notice-link {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding: 80px 0 120px;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hero h1 {
        font-size: 44px;

        letter-spacing: -2px;
    }

    .hero-text > p {
        font-size: 15px;
    }

    .hero-card {
        display: none;
    }


    /* QUICK */

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

    .quick-card {
        border-bottom: 1px solid #eef1ef;
    }


    /* SECTIONS */

    .section {
        padding: 70px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }


    /* NEWS */

    .news-layout {
        grid-template-columns: 1fr;
    }


    /* EVENTS */

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


    /* RESIDENT */

    .resident-section {
        padding: 70px 0;
    }

    .resident-wrapper {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .resident-heading h2 {
        font-size: 35px;
    }

    .resident-links {
        grid-template-columns: 1fr;
    }


    /* VILLAGES */

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


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

}


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

@media (max-width: 480px) {

    .hero h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        justify-content: center;
    }

    .resident-search button {
        display: none;
    }

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

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

    .footer-bottom .container {
        padding: 15px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }

}