@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');

.home-page {
    --home-primary: #1e4e79;
    --home-primary-dark: #153f61;
    --home-deep: #09283c;

    --home-blue: #4a9bd1;
    --home-green: #378764;
    --home-orange: #c98239;

    --home-bg: #f6f9fc;
    --home-white: #ffffff;

    --home-text: #293d50;
    --home-muted: #6c7d8d;

    --home-border:
        rgba(30, 78, 121, 0.10);

    --home-shadow:
        0 18px 48px rgba(26, 69, 104, 0.08);

    --home-shadow-hover:
        0 25px 60px rgba(26, 69, 104, 0.14);

    width: 100%;

    overflow: hidden;

    background: var(--home-bg);

    color: var(--home-text);
}


.home-page * {
    box-sizing: border-box;
}


.home-page img {
    max-width: 100%;
}


.home-page a {
    text-decoration: none;
}


#tentang {
    scroll-margin-top: 105px;
}



/* ============================================================
   HERO
============================================================ */

.home-hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    isolation: isolate;

    background:
        url('../img/hero.jpeg')
        center center / cover
        no-repeat;

    color: #ffffff;
}


.home-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: -4;

    background:
        linear-gradient(
            100deg,
            rgba(4, 29, 45, 0.97) 0%,
            rgba(13, 56, 87, 0.91) 47%,
            rgba(20, 77, 101, 0.65) 100%
        );
}


.home-hero::before {
    content: '';

    position: absolute;

    inset: 0;

    z-index: -3;

    background:
        radial-gradient(
            circle at 78% 25%,
            rgba(105, 194, 240, 0.22),
            transparent 32%
        );
}


.home-hero .container {
    position: relative;

    z-index: 5;

    padding-top: 90px;
    padding-bottom: 125px;
}



/* ============================================================
   HERO DECORATION
============================================================ */

.home-hero-decoration {
    position: absolute;

    z-index: -1;

    border-radius: 50%;

    pointer-events: none;
}


.home-decoration-one {
    width: 500px;
    height: 500px;

    top: -265px;
    right: -120px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);
}


.home-decoration-two {
    width: 310px;
    height: 310px;

    right: 12%;
    bottom: -195px;

    background:
        rgba(255, 255, 255, 0.04);
}


.home-hero-curve {
    position: absolute;

    left: -5%;
    right: -5%;
    bottom: -70px;

    height: 120px;

    background: var(--home-bg);

    border-radius:
        50% 50% 0 0;
}



/* ============================================================
   HERO CONTENT
============================================================ */

.home-hero-content {
    max-width: 930px;
}


.home-hero-identity {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

    padding:
        8px 18px 8px 9px;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.09);

    backdrop-filter:
        blur(14px);
}


.home-hero-identity img {
    width: 42px;
    height: 42px;

    display: block;

    object-fit: contain;
}


.home-hero-identity div {
    display: flex;

    flex-direction: column;
}


.home-hero-identity small {
    color:
        rgba(255, 255, 255, 0.62);

    font-size: 0.60rem;

    font-weight: 700;

    letter-spacing: 0.11em;
}


.home-hero-identity strong {
    margin-top: 2px;

    color: #ffffff;

    font-size: 0.85rem;

    font-weight: 800;
}


.home-hero h1 {
    max-width: 1000px;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            3.4rem,
            6vw,
            6rem
        );

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.06em;

    text-shadow:
        0 5px 25px
        rgba(0, 0, 0, 0.20);
}


.home-hero h1 span {
    display: block;

    color: #a9deff;
}



/* ============================================================
   MOTTO DESA - ELEGANT LATIN SCRIPT
============================================================ */

.home-motto {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 27px;
}


.home-motto > span {
    position: relative;

    width: 48px;
    height: 1px;

    flex: 0 0 48px;

    overflow: visible;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #c8edff 0%,
            rgba(200, 237, 255, 0.24) 100%
        );
}


.home-motto > span::before {
    content: '';

    position: absolute;

    top: 50%;
    left: 0;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #e8f8ff;

    transform:
        translateY(-50%);

    box-shadow:
        0 0 11px
        rgba(174, 226, 252, 0.55);
}


.home-motto p {
    margin: 0;

    color: #dff3ff;

    font-family:
        "Allura",
        "Segoe Script",
        "Lucida Handwriting",
        cursive;

    font-size: 1.82rem;

    font-weight: 400;

    font-style: normal;

    letter-spacing: 0.012em;

    line-height: 1.15;

    text-shadow:
        0 3px 14px
        rgba(0, 0, 0, 0.20);

    transform:
        translateY(1px);
}


.home-hero-description {
    max-width: 760px;

    margin:
        24px 0 0;

    color:
        rgba(255, 255, 255, 0.80);

    font-size: 1.02rem;

    line-height: 1.9;
}



/* ============================================================
   BUTTON
============================================================ */

.home-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 34px;
}


.home-btn {
    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        0 22px;

    border-radius: 999px;

    font-size: 0.87rem;

    font-weight: 750;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.home-btn:hover {
    transform:
        translateY(-2px);
}


.home-btn-light {
    color:
        var(--home-primary) !important;

    background: #ffffff;

    box-shadow:
        0 15px 38px
        rgba(0, 0, 0, 0.15);
}


.home-btn-light:hover {
    background: #f2faff;
}


.home-btn-outline {
    color: #ffffff !important;

    border:
        1px solid
        rgba(255, 255, 255, 0.32);

    background:
        rgba(255, 255, 255, 0.07);

    backdrop-filter:
        blur(10px);
}


.home-btn-outline:hover {
    background:
        rgba(255, 255, 255, 0.15);
}



/* ============================================================
   QUICK ACCESS
============================================================ */

.home-quick {
    position: relative;

    z-index: 10;

    margin-top: -18px;
}


.home-quick-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    overflow: hidden;

    border:
        1px solid
        var(--home-border);

    border-radius: 23px;

    background: #ffffff;

    box-shadow:
        0 18px 48px
        rgba(30, 78, 121, 0.09);
}


.home-quick-grid > a {
    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 0;

    padding:
        22px 19px;

    color:
        var(--home-text);

    transition:
        background 0.25s ease;
}


.home-quick-grid > a:not(:last-child) {
    border-right:
        1px solid
        var(--home-border);
}


.home-quick-grid > a:hover {
    background: #f3f9fc;
}


.home-quick-icon {
    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 13px;

    color:
        var(--home-primary);

    background: #eaf4fb;
}


.home-quick-grid > a > div {
    min-width: 0;

    display: flex;

    flex-direction: column;

    flex: 1;
}


.home-quick-grid strong {
    color:
        var(--home-deep);

    font-size: 0.84rem;
}


.home-quick-grid small {
    margin-top: 2px;

    color: #91a0ad;

    font-size: 0.67rem;
}


.home-quick-grid > a > i {
    color: #a7b3bd;

    font-size: 0.72rem;
}



/* ============================================================
   SECTION GLOBAL
============================================================ */

.home-section {
    padding:
        95px 0;
}


.home-section-label {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--home-blue);

    font-size: 0.70rem;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.home-section-title {
    margin:
        12px 0 0;

    color:
        var(--home-deep);

    font-size:
        clamp(
            2.1rem,
            4vw,
            3.4rem
        );

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -0.045em;
}


.home-section-title span {
    color:
        var(--home-primary);
}


.home-title-line {
    width: 56px;
    height: 4px;

    margin:
        23px 0;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--home-primary),
            #67bce8
        );
}


.home-section-text {
    margin: 0;

    color:
        var(--home-muted);

    font-size: 0.96rem;

    line-height: 1.9;
}


.home-section-heading {
    max-width: 720px;

    margin:
        0 auto 48px;

    text-align: center;
}


.home-section-heading p {
    max-width: 610px;

    margin:
        15px auto 0;

    color:
        var(--home-muted);

    font-size: 0.94rem;

    line-height: 1.75;
}



/* ============================================================
   ABOUT
============================================================ */

.home-about {
    background:
        var(--home-bg);
}


.home-about-image {
    position: relative;

    height: 510px;

    overflow: hidden;

    border-radius: 31px;

    box-shadow:
        var(--home-shadow);
}


.home-about-image > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.home-about-image:hover > img {
    transform:
        scale(1.04);
}


.home-about-image::after {
    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 45%,
            rgba(5, 35, 53, 0.50)
        );

    pointer-events: none;
}


.home-image-badge {
    position: absolute;

    z-index: 3;

    top: 24px;
    left: 24px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        11px 15px;

    border-radius: 16px;

    color: #ffffff;

    background:
        rgba(8, 49, 74, 0.82);

    backdrop-filter:
        blur(12px);
}


.home-image-badge > span {
    width: 37px;
    height: 37px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: #c5ebff;

    background:
        rgba(255, 255, 255, 0.11);
}


.home-image-badge div {
    display: flex;

    flex-direction: column;
}


.home-image-badge small {
    color:
        rgba(255, 255, 255, 0.58);

    font-size: 0.55rem;
}


.home-image-badge strong {
    color: #ffffff;

    font-size: 0.82rem;
}


.home-image-location {
    position: absolute;

    z-index: 3;

    bottom: 24px;
    left: 25px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: #ffffff;

    font-size: 0.81rem;

    font-weight: 700;
}



/* ============================================================
   ABOUT META
============================================================ */

.home-about-meta {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 29px;
}


.home-about-meta > div {
    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;

    padding: 12px;

    border:
        1px solid
        var(--home-border);

    border-radius: 16px;

    background: #ffffff;
}


.home-about-meta > div > span {
    width: 37px;
    height: 37px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 11px;

    color:
        var(--home-primary);

    background: #eaf4fb;
}


.home-about-meta > div > div {
    min-width: 0;

    display: flex;

    flex-direction: column;
}


.home-about-meta small {
    color: #96a3ae;

    font-size: 0.56rem;

    text-transform: uppercase;
}


.home-about-meta strong {
    color: #3c5063;

    font-size: 0.72rem;
}


.home-more-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 27px;

    color:
        var(--home-primary) !important;

    font-size: 0.82rem;

    font-weight: 800;

    transition:
        gap 0.25s ease;
}


.home-more-link:hover {
    gap: 13px;
}



/* ============================================================
   VISI MISI
============================================================ */

.home-vision {
    background: #ffffff;
}


/* ============================================================
   CARD VISI
============================================================ */

.home-vision-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding: 38px 35px;
    border-radius: 30px;
    color: #ffffff;
    background:
        linear-gradient(
            150deg,
            #0d304a,
            #1e4e79 56%,
            #347da6
        );
    box-shadow:
        0 25px 60px
        rgba(18, 61, 94, 0.16);
}


.home-vision-card::after {
    content: '';
    position: absolute;
    width: 245px;
    height: 245px;
    top: -100px;
    right: -100px;
    border:
        1px solid
        rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    pointer-events: none;
}


/* ============================================================
   HEADER VISI
============================================================ */

.home-vision-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 0 6px;
}


.home-vision-card-heading {
    min-width: 0;
}


.home-vision-card-heading small {
    display: block;
    margin: 0 0 4px;
    color:
        rgba(255, 255, 255, 0.64);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.2;
}


.home-vision-card-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size:
        clamp(
            1.2rem,
            2vw,
            1.55rem
        );
    font-weight: 800;
    line-height: 1.25;
}



.home-vision-intro {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 4px 0 36px;
    color:
        rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    line-height: 1.7;
}

.maju-explanation {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    width: 100%;
    margin: 0;
    padding: 0;
}


.maju-item {
    display: grid;
    grid-template-columns:
        42px
        minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 17px 18px;
    border:
        1px solid
        rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    background:
        rgba(255, 255, 255, 0.075);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.maju-item:hover {
    transform:
        translateX(3px);
    background:
        rgba(255, 255, 255, 0.11);
    border-color:
        rgba(255, 255, 255, 0.21);
}


.maju-letter {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    margin: 0;
    border-radius: 12px;
    color: #174c75;
    background: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    box-shadow:
        0 8px 18px
        rgba(4, 25, 45, 0.16);
}


.maju-text {
    display: block;
    min-width: 0;
    padding: 0;
    color:
        rgba(255, 255, 255, 0.84);
    font-size: 0.96rem;
    line-height: 1.55;
}


.maju-text strong {
    display: block;
    margin: 0 0 3px;
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 750;
    line-height: 1.45;
}


.maju-text > span {
    display: block;
    color:
        rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.55;
}

.home-mission-card {
    height: 100%;
    padding: 36px;
    border:
        1px solid
        var(--home-border);
    border-radius: 30px;
    background: #ffffff;
    box-shadow:
        var(--home-shadow);
}


.home-mission-header {
    display: block;
    margin-bottom: 25px;
}


.home-mission-header small {
    color: #8d99a4;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}


.home-mission-header h3 {
    margin: 5px 0 0;
    color:
        var(--home-deep);
    font-size: 1.35rem;
    font-weight: 800;
}


.home-mission-list {
    display: grid;
    gap: 5px;
}


.home-mission-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 11px;
    border-radius: 15px;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.home-mission-item:hover {
    transform:
        translateX(4px);
    background: #f5f9fc;
}


.home-mission-item > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex:
        0 0 34px;
    border-radius: 10px;
    color:
        var(--home-primary);
    background: #eaf4fb;
    font-size: 0.66rem;
    font-weight: 800;
}


.home-mission-item p {
    margin: 3px 0 0;
    color: #607181;
    font-size: 0.96rem;
    line-height: 1.7;
}

.home-discover {
    background:
        linear-gradient(
            180deg,
            #f6f9fc 0%,
            #f2f7fb 100%
        );
}


.home-discover-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 35px;

    margin-bottom: 55px;
}


.home-discover-heading > p {
    max-width: 450px;

    margin: 0;

    color:
        var(--home-muted);

    font-size: 0.92rem;

    line-height: 1.75;
}

.home-content-section
+ .home-content-section {
    margin-top: 80px;
}


.home-content-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 24px;
}


.home-content-header > div {
    display: flex;

    align-items: center;

    gap: 13px;
}


.home-content-icon {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    font-size: 1rem;
}


.icon-news {
    color: #287aae;

    background: #e5f1fa;
}


.icon-tourism {
    color: #357e5e;

    background: #e7f4ed;
}


.icon-umkm {
    color: #a9672e;

    background: #faf0e4;
}


.home-content-header small {
    color: #95a1ac;

    font-size: 0.60rem;

    font-weight: 800;

    letter-spacing: 0.11em;
}


.home-content-header h3 {
    margin:
        2px 0 0;

    color:
        var(--home-deep);

    font-size: 1.25rem;

    font-weight: 800;
}


.home-content-header > a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--home-primary);

    font-size: 0.75rem;

    font-weight: 800;
}

.home-item-card {
    height: 100%;

    overflow: hidden;

    border:
        1px solid
        var(--home-border);

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(30, 78, 121, 0.055);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.home-item-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        var(--home-shadow-hover);
}


.home-item-image {
    position: relative;

    height: 220px;

    overflow: hidden;
}


.home-item-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.home-item-card:hover
.home-item-image img {
    transform:
        scale(1.055);
}


.home-item-image::after {
    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(4, 28, 44, 0.26)
        );

    pointer-events: none;
}


.home-item-badge {
    position: absolute;

    z-index: 2;

    top: 15px;
    left: 15px;

    padding:
        5px 10px;

    border-radius: 999px;

    color: #276e9d;

    background:
        rgba(238, 248, 255, 0.94);

    backdrop-filter:
        blur(8px);

    font-size: 0.60rem;

    font-weight: 800;
}


.badge-tourism {
    color: #35795c;

    background:
        rgba(235, 249, 241, 0.94);
}


.badge-umkm {
    color: #a4662e;

    background:
        rgba(255, 247, 235, 0.94);
}


.home-item-body {
    padding: 22px;
}


.home-item-date {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 10px;

    color: #94a0aa;

    font-size: 0.67rem;
}


.home-item-body h4 {
    margin:
        0 0 10px;

    color:
        var(--home-deep);

    font-size: 1rem;

    font-weight: 800;

    line-height: 1.45;
}


.home-item-body p {
    margin:
        0 0 15px;

    color:
        var(--home-muted);

    font-size: 0.79rem;

    line-height: 1.65;
}


.home-item-body > a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--home-primary);

    font-size: 0.73rem;

    font-weight: 800;

    transition:
        gap 0.25s ease;
}


.home-item-body > a:hover {
    gap: 11px;
}

.home-empty {
    min-height: 190px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 40px;

    border:
        1px dashed
        rgba(30, 78, 121, 0.20);

    border-radius: 22px;

    background: #ffffff;

    color:
        var(--home-muted);

    text-align: center;
}


.home-empty i {
    margin-bottom: 12px;

    color:
        var(--home-primary);

    font-size: 1.6rem;
}


.home-empty p {
    margin: 0;

    font-size: 0.86rem;
}

/* ============================================================
   PERANGKAT DESA — HOME CLOSING CTA COMPACT
============================================================ */

.home-cta {
    position: relative;

    padding:
        18px 0 72px;

    background:
        linear-gradient(
            180deg,
            #f2f7fb 0%,
            #edf5fa 100%
        );
}


.home-team-cta {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(420px, 1.08fr);

    min-height: 350px;
    max-height: 350px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #0b3049 0%,
            #164d72 100%
        );

    box-shadow:
        0 22px 55px
        rgba(15, 57, 87, 0.16);

    isolation: isolate;
}


.home-team-cta::before {
    content: '';

    position: absolute;

    width: 240px;
    height: 240px;

    top: -150px;
    left: -90px;

    z-index: -1;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 50%;

    pointer-events: none;
}


.home-team-cta::after {
    content: '';

    position: absolute;

    width: 130px;
    height: 130px;

    bottom: -82px;
    left: 34%;

    z-index: -1;

    border-radius: 50%;

    background:
        rgba(111, 197, 236, 0.055);

    pointer-events: none;
}


/* ============================================================
   CONTENT
============================================================ */

.home-team-cta-content {
    position: relative;

    z-index: 3;

    min-width: 0;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding:
        34px 30px 34px 42px;
}


.home-team-cta-eyebrow {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 13px;

    padding:
        6px 9px;

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: 999px;

    color:
        rgba(255, 255, 255, 0.73);

    background:
        rgba(255, 255, 255, 0.06);

    font-size: 0.54rem;
    font-weight: 800;

    letter-spacing: 0.09em;
}


.home-team-cta-eyebrow i {
    color: #a8e2fa;
}


.home-team-cta-content h2 {
    max-width: 470px;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            1.8rem,
            2.8vw,
            2.55rem
        );

    font-weight: 850;

    line-height: 1.07;

    letter-spacing: -0.045em;
}


.home-team-cta-content h2 span {
    display: block;

    color: #b9e8ff;
}


.home-team-cta-content p {
    max-width: 455px;

    margin:
        13px 0 0;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 0.76rem;

    line-height: 1.7;
}


/* ============================================================
   CTA BUTTONS
============================================================ */

.home-team-cta-actions {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 20px;
}


.home-team-cta-primary,
.home-team-cta-secondary {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding:
        0 16px;

    border-radius: 999px;

    font-size: 0.67rem;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.home-team-cta-primary {
    color:
        var(--home-primary) !important;

    background: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(4, 29, 45, 0.17);
}


.home-team-cta-primary:hover {
    transform:
        translateY(-2px);

    background: #f4fbff;

    box-shadow:
        0 14px 31px
        rgba(4, 29, 45, 0.21);
}


.home-team-cta-primary i {
    transition:
        transform 0.25s ease;
}


.home-team-cta-primary:hover i {
    transform:
        translateX(3px);
}


.home-team-cta-secondary {
    color: #ffffff !important;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    background:
        rgba(255, 255, 255, 0.07);
}


.home-team-cta-secondary:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(255, 255, 255, 0.30);

    background:
        rgba(255, 255, 255, 0.13);
}


/* ============================================================
   META
============================================================ */

.home-team-cta-meta {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 7px 14px;

    margin-top: 18px;

    padding-top: 14px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.09);
}


.home-team-cta-meta span {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color:
        rgba(255, 255, 255, 0.50);

    font-size: 0.55rem;
    font-weight: 650;
}


.home-team-cta-meta i {
    color: #98d9f4;
}


/* ============================================================
   PHOTO
============================================================ */

.home-team-cta-photo {
    position: relative;

    min-width: 0;
    height: 350px;

    overflow: hidden;

    background: #dce8ed;
}


.home-team-cta-photo::before {
    content: '';

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    z-index: 2;

    width: 78px;

    background:
        linear-gradient(
            90deg,
            #164d72 0%,
            rgba(22, 77, 114, 0.48) 38%,
            transparent 100%
        );

    pointer-events: none;
}


.home-team-cta-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center 45%;

    transition:
        transform 0.6s ease;
}


.home-team-cta:hover
.home-team-cta-photo img {
    transform:
        scale(1.018);
}


.home-team-cta-photo-shade {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            transparent 62%,
            rgba(5, 31, 47, 0.34) 100%
        );

    pointer-events: none;
}


.home-team-cta-photo-label {
    position: absolute;

    right: 16px;
    bottom: 15px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 8px;

    padding:
        8px 10px 8px 8px;

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    border-radius: 13px;

    color: #ffffff;

    background:
        rgba(5, 33, 50, 0.62);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.home-team-cta-photo-label > span {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    flex: 0 0 31px;

    border-radius: 9px;

    color: #c6edff;

    background:
        rgba(255, 255, 255, 0.10);
}


.home-team-cta-photo-label > div {
    display: flex;
    flex-direction: column;

    gap: 1px;
}


.home-team-cta-photo-label small {
    color:
        rgba(255, 255, 255, 0.53);

    font-size: 0.46rem;
    font-weight: 800;

    letter-spacing: 0.07em;
}


.home-team-cta-photo-label strong {
    color: #ffffff;

    font-size: 0.65rem;
    font-weight: 800;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .home-team-cta {
        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(350px, 1.05fr);

        min-height: 340px;
        max-height: 340px;
    }


    .home-team-cta-content {
        padding:
            31px 23px 31px 32px;
    }


    .home-team-cta-photo {
        height: 340px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .home-cta {
        padding:
            10px 0 62px;
    }


    .home-team-cta {
        display: flex;
        flex-direction: column;

        min-height: 0;
        max-height: none;

        border-radius: 24px;
    }


    .home-team-cta-photo {
        order: 1;

        width: 100%;
        height: 260px;
    }


    .home-team-cta-photo::before {
        display: none;
    }


    .home-team-cta-photo img {
        object-position: center 44%;
    }


    .home-team-cta-photo-shade {
        background:
            linear-gradient(
                180deg,
                transparent 54%,
                rgba(5, 31, 47, 0.38) 100%
            );
    }


    .home-team-cta-content {
        order: 2;

        padding:
            27px 22px 28px;
    }


    .home-team-cta-content h2 {
        font-size: 2rem;
    }


    .home-team-cta-content p {
        font-size: 0.81rem;
    }


    .home-team-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }


    .home-team-cta-primary,
    .home-team-cta-secondary {
        width: 100%;
    }


    .home-team-cta-meta {
        margin-top: 17px;
    }


    .home-team-cta-photo-label {
        right: 14px;
        bottom: 14px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .home-team-cta {
        border-radius: 22px;
    }


    .home-team-cta-photo {
        height: 235px;
    }


    .home-team-cta-content {
        padding:
            25px 18px 25px;
    }


    .home-team-cta-eyebrow {
        font-size: 0.49rem;
    }


    .home-team-cta-content h2 {
        font-size: 1.85rem;
    }


    .home-team-cta-content p {
        font-size: 0.78rem;
    }


    .home-team-cta-meta {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 991px) {

    .home-hero {
        min-height: 650px;
    }


    .home-hero .container {
        padding-top: 80px;
        padding-bottom: 115px;
    }


    .home-hero-content {
        max-width: 850px;
    }


    .home-quick-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .home-quick-grid > a:nth-child(2) {
        border-right: none;
    }


    .home-quick-grid > a:nth-child(-n+2) {
        border-bottom:
            1px solid
            var(--home-border);
    }


    .home-section {
        padding:
            75px 0;
    }


    .home-about-image {
        height: 440px;
    }


    .home-about-meta {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .home-vision-intro {
        margin-bottom: 30px;
    }


    .maju-item {
        padding: 16px 17px;
    }


    .home-discover-heading {
        align-items: flex-start;

        flex-direction: column;
    }


    .home-cta-card {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 45px 42px;
    }


    .home-cta-content {
        max-width: 760px;
    }


    .home-cta-explore {
        width: 100%;
    }

}

@media (max-width: 767px) {

    .home-hero {
        min-height: auto;
    }


    .home-hero .container {
        padding-top: 60px;
        padding-bottom: 105px;
    }


    .home-hero h1 {
        font-size:
            clamp(
                2.7rem,
                12vw,
                4rem
            );
    }


    .home-hero-description {
        font-size: 0.91rem;
    }


    .home-hero-actions {
        flex-direction: column;
    }


    .home-btn {
        width: 100%;
    }


    .home-quick {
        margin-top: -16px;
    }


    .home-quick-grid {
        grid-template-columns: 1fr;

        margin: 0 4px;
    }


    .home-quick-grid > a {
        border-right:
            none !important;

        border-bottom:
            1px solid
            var(--home-border);
    }


    .home-quick-grid > a:last-child {
        border-bottom: none;
    }


    .home-section {
        padding:
            62px 0;
    }


    .home-about-image {
        height: 350px;

        border-radius: 23px;
    }


    .home-image-badge {
        top: 16px;
        left: 16px;
    }


    .home-image-location {
        bottom: 17px;
        left: 17px;
    }


    .home-about-meta {
        grid-template-columns: 1fr;
    }


    .home-vision-card,
    .home-mission-card {
        padding:
            29px 23px;

        border-radius: 24px;
    }


    .home-vision-card-header {
        margin-bottom: 5px;
    }


    .home-vision-intro {
        margin:
            4px 0 26px;

        font-size: 0.95rem;
        line-height: 1.68;
    }


    .maju-explanation {
        gap: 13px;
    }


    .maju-item {
        grid-template-columns:
            39px
            minmax(0, 1fr);

        gap: 12px;

        padding:
            15px 16px;
    }


    .maju-letter {
        width: 39px;
        height: 39px;
        min-width: 39px;

        font-size: 0.94rem;
    }


    .maju-text,
    .maju-text strong {
        font-size: 0.92rem;
    }


    .maju-text > span {
        font-size: 0.90rem;
    }


    .home-mission-item p {
        font-size: 0.92rem;
    }


    .home-discover-heading {
        margin-bottom: 40px;
    }


    .home-content-section
    + .home-content-section {
        margin-top: 65px;
    }


    .home-content-header {
        align-items: flex-start;
    }


    .home-content-header > a {
        margin-top: 9px;

        white-space: nowrap;
    }


    .home-item-image {
        height: 210px;
    }


    .home-cta-card {
        gap: 28px;
        padding:
            34px 24px;
        border-radius: 26px;
    }


    .home-cta-content h2 {
        font-size:
            clamp(
                2rem,
                9vw,
                2.8rem
            );
    }


    .home-cta-buttons {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }


    .home-cta-primary,
    .home-cta-secondary {
        width: 100%;
    }


    .home-cta-explore {
        padding: 15px;
        border-radius: 20px;
    }

}


@media (max-width: 480px) {

    .home-hero-identity {
        padding-right: 12px;
    }


    .home-hero-identity img {
        width: 36px;
        height: 36px;
    }


    .home-hero-identity small {
        font-size: 0.52rem;
    }


    .home-hero-identity strong {
        font-size: 0.75rem;
    }


    .home-hero h1 {
        font-size: 2.55rem;
    }


    .home-motto {
        gap: 11px;

        margin-top: 22px;
    }


    .home-motto > span {
        width: 34px;

        flex-basis: 34px;
    }


    .home-motto p {
        font-size: 1.5rem;

        letter-spacing: 0.008em;
    }


    .home-section-title {
        font-size: 2rem;
    }


    .home-item-image {
        height: 190px;
    }


    .home-content-header h3 {
        font-size: 1.05rem;
    }


    .home-content-header > a {
        font-size: 0.67rem;
    }


    .home-vision-intro {
        margin-bottom: 22px;
        font-size: 0.92rem;
    }


    .maju-explanation {
        gap: 12px;
    }


    .maju-item {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        gap: 11px;

        padding:
            14px 15px;
    }


    .maju-letter {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }


    .maju-text,
    .maju-text strong {
        font-size: 0.89rem;
    }


    .maju-text > span {
        font-size: 0.87rem;
    }


    .home-cta-card {
        padding:
            30px 18px;
        border-radius: 22px;
    }


    .home-cta-eyebrow {
        font-size: 0.55rem;
    }


    .home-cta-content h2 {
        font-size: 2rem;
    }


    .home-cta-content p {
        font-size: 0.88rem;
    }


    .home-cta-primary {
        min-width: 0;
    }


    .home-cta-explore {
        padding: 13px;
    }


    .home-cta-explore-list > a {
        grid-template-columns:
            39px
            minmax(0, 1fr)
            auto;
        gap: 10px;
        padding: 10px;
    }


    .home-cta-explore-icon {
        width: 39px;
        height: 39px;
    }


    .home-cta-explore-list strong {
        font-size: 0.72rem;
    }

}