/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, .8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.hero-banner {
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 991.98px) {
    .hero-banner {
        height: 480px;
    }
}

@media (max-width: 575.98px) {
    .hero-banner {
        height: 320px;
        object-position: center top;
    }
}

/*** Lions District 307 A1 Navbar Branding ***/
.fixed-top,
.container-fluid.fixed-top {
    overflow: visible;
}

.navbar {
    min-height: 100px;
    overflow: visible;
}

.navbar-lions-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 430px;
    min-height: 94px;
    padding-top: 8px;
    padding-bottom: 8px;
    overflow: visible;
}

.navbar-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    padding: 7px;
    flex: 0 0 72px;
    overflow: visible;
}

.navbar-lions-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(.82);
    transform-origin: center;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    line-height: 1.12;
}

.brand-main {
    display: block;
    color: #FFFFFF;
    font-family: "Saira", sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .25px;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-sub {
    display: block;
    margin-top: 5px;
    color: #F4C542;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/*** About Images ***/
.about-image-stack {
    min-height: 590px;
    border-radius: 18px;
}

.about-image-main {
    position: absolute;
    inset: 0;
    width: calc(100% - 70px);
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
}

.about-image-secondary {
    position: absolute;
    right: 0;
    bottom: 28px;
    width: 230px;
    height: 230px;
    object-fit: cover;
    border: 10px solid #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 29, 35, .18);
}

.history-card,
.founder-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 29, 35, .08);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0, 29, 35, .07);
}

.history-year {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 999px;
    font-family: "Saira", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 1199.98px) {
    .navbar {
        min-height: 88px;
    }

    .navbar-lions-brand {
        gap: 9px;
        min-height: 82px;
    }

    .navbar-logo-frame {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .brand-main {
        font-size: 15px;
    }

    .brand-sub {
        font-size: 11px;
    }

    .about-image-stack {
        min-height: 520px;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 80px;
    }

    .navbar-lions-brand {
        min-height: 74px;
    }

    .navbar-logo-frame {
        width: 58px;
        height: 58px;
        padding: 5px;
        flex-basis: 58px;
    }

    .brand-main {
        font-size: 14px;
    }

    .brand-sub {
        margin-top: 3px;
        font-size: 10px;
    }

    .about-image-stack {
        min-height: 650px;
    }
}

@media (max-width: 575.98px) {
    .navbar-lions-brand {
        gap: 0;
        min-height: 68px;
    }

    .navbar-logo-frame {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .navbar-brand-text {
        display: none;
    }

    .about-image-stack {
        min-height: 510px;
    }

    .about-image-main {
        width: 100%;
    }

    .about-image-secondary {
        right: 15px;
        bottom: 15px;
        width: 155px;
        height: 155px;
        border-width: 7px;
    }
}



/*** Lions Program Cards ***/
.program-card {
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(0, 29, 35, .08);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 29, 35, .08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 29, 35, .14);
}

.program-card-image {
    display: block;
    width: 100%;
    height: 310px;
    object-fit: cover;
    object-position: center top;
}

.program-card-body {
    padding: 28px;
}

.program-badge,
.program-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.program-tags span {
    padding: 5px 10px;
    color: var(--dark);
    background: var(--secondary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.program-link {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 700;
}

.program-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 22px;
}

.program-number,
.program-number-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 64px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 50%;
    font-family: "Saira", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.program-detail-card {
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(0, 29, 35, .08);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 29, 35, .07);
}

.program-detail-image {
    display: block;
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center top;
}

.program-detail-body {
    padding: 28px;
}

.program-feature-row {
    padding: 46px;
    background: #F8F8F9;
    border-radius: 24px;
}

.program-feature-image {
    display: block;
    width: 100%;
    max-height: 680px;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(0, 29, 35, .13);
}

.program-number-inline {
    width: 58px;
    min-width: 58px;
    height: 58px;
    margin-bottom: 20px;
}

@media (max-width: 991.98px) {
    .program-card-image {
        height: 360px;
    }

    .program-detail-image {
        height: 520px;
    }

    .program-feature-row {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .program-card-image {
        height: 330px;
    }

    .program-card-body,
    .program-detail-body {
        padding: 22px;
    }

    .program-section-heading {
        display: block;
    }

    .program-number {
        margin-bottom: 18px;
    }

    .program-detail-image {
        height: 420px;
    }

    .program-feature-row {
        padding: 22px;
    }
}



/*** Lions News & Activities ***/
.news-card{overflow:hidden;background:#fff;border:1px solid rgba(0,29,35,.08);border-radius:18px;box-shadow:0 14px 40px rgba(0,29,35,.08);transition:.35s}
.news-card:hover{transform:translateY(-7px);box-shadow:0 22px 50px rgba(0,29,35,.14)}
.news-media{position:relative;display:block;overflow:hidden}
.news-card-image{display:block;width:100%;height:360px;object-fit:cover;object-position:center;transition:transform .5s ease}
.news-card:hover .news-card-image{transform:scale(1.04)}
.news-video-badge{position:absolute;left:20px;bottom:20px;display:inline-flex;align-items:center;gap:9px;padding:9px 14px;color:#fff;background:rgba(0,29,35,.9);border-radius:999px;font-size:13px;font-weight:700}
.news-card-body{padding:28px}
.news-card-body h2 a{color:var(--dark)}
.news-card-body h2 a:hover{color:var(--primary)}
.news-meta,.news-detail-meta{display:flex;flex-wrap:wrap;gap:10px 22px;margin-bottom:14px;color:#788487;font-size:13px;font-weight:500}
.news-video-wrapper{overflow:hidden;background:#000;border-radius:18px;box-shadow:0 18px 50px rgba(0,29,35,.16)}
.news-video-wrapper video{display:block;width:100%;max-height:720px;background:#000}
.news-detail-image{display:block;width:100%;max-height:660px;object-fit:cover;border-radius:18px;box-shadow:0 18px 50px rgba(0,29,35,.13)}
.news-highlight{padding:28px;background:var(--light);border-left:5px solid var(--primary);border-radius:12px}
.news-quote{margin:32px 0;padding:24px 28px;color:var(--dark);background:var(--secondary);border-left:5px solid var(--primary);border-radius:12px;font-family:"Saira",sans-serif;font-size:21px;font-weight:600}
.news-source{padding-top:18px;border-top:1px solid rgba(0,29,35,.1);font-size:14px}
@media(max-width:767.98px){.news-card-image{height:280px}.news-card-body{padding:22px}.news-quote{font-size:18px}}



/*** Lions District Officers ***/
.officer-card {
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(0, 29, 35, .08);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 29, 35, .09);
    transition: transform .35s ease, box-shadow .35s ease;
}

.officer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0, 29, 35, .15);
}

.officer-image {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
}

.officer-body {
    padding: 26px;
    text-align: center;
}

.officer-role {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .officer-image {
        height: 560px;
    }
}

@media (max-width: 575.98px) {
    .officer-image {
        height: 500px;
    }

    .officer-body {
        padding: 22px;
    }
}



/*** Lions Donation Contact ***/
.donation-info-card,
.donation-purpose-card {
    padding: 42px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 29, 35, .08);
    border-radius: 20px;
    box-shadow: 0 16px 45px rgba(0, 29, 35, .09);
}

.donation-purpose-card {
    color: #FFFFFF;
    background: var(--dark);
}

.donation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 50%;
    font-size: 24px;
}

.donation-contact-link {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 14px 18px;
    color: var(--dark);
    background: var(--secondary);
    border-radius: 12px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.donation-contact-link:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.donation-divider {
    height: 1px;
    margin: 30px 0;
    background: rgba(0, 29, 35, .1);
}

.donation-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #F4C542;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.donation-purpose-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.donation-purpose-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .85);
}

.donation-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 50%;
    font-size: 11px;
}

.donation-note {
    padding: 17px 18px;
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .08);
    border-radius: 12px;
}

.donation-home-card {
    padding: 34px;
    background: #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.donation-home-email {
    display: block;
    color: var(--primary);
    font-weight: 700;
    overflow-wrap: anywhere;
}

@media (max-width: 575.98px) {
    .donation-info-card,
    .donation-purpose-card {
        padding: 28px 22px;
    }

    .donation-home-card {
        padding: 26px 22px;
    }
}

/*** Donation Visibility Fix ***/
.donation-whatsapp-placeholder {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 13px 18px;
    color: #5E6668;
    background: #F8F8F9;
    border: 1px solid rgba(0, 29, 35, .16);
    border-radius: 12px;
    font-weight: 700;
}

.donation-whatsapp-placeholder .fa-whatsapp {
    color: #25D366;
    font-size: 20px;
}

#berita-terbaru .text-center {
    text-align: center !important;
}

#berita-terbaru .text-center .btn {
    margin-left: auto;
    margin-right: auto;
}

/*** Lions Social & Contact ***/
.social-media-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 230px;
    padding: 36px 24px;
    color: var(--dark);
    background: #FFFFFF;
    border: 1px solid rgba(0, 29, 35, .08);
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(0, 29, 35, .08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.social-media-card:hover {
    color: var(--dark);
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0, 29, 35, .14);
}

.social-media-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 30px;
}

.social-media-card.instagram .social-media-icon {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
}

.social-media-card.youtube .social-media-icon {
    background: #FF0000;
}

.social-media-card.tiktok .social-media-icon {
    background: #111111;
}

.social-media-name {
    margin-bottom: 7px;
    font-family: "Saira", sans-serif;
    font-size: 21px;
    font-weight: 700;
}

.social-media-status {
    color: #788487;
    font-size: 13px;
}

.contact-home-panel {
    padding: 46px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 29, 35, .08);
    border-radius: 22px;
    box-shadow: 0 16px 45px rgba(0, 29, 35, .09);
}

.contact-home-email {
    color: var(--primary);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.contact-info-card,
.contact-form-card {
    padding: 40px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 29, 35, .08);
    border-radius: 20px;
    box-shadow: 0 16px 45px rgba(0, 29, 35, .09);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 50%;
    font-size: 24px;
}

.contact-email-link {
    display: block;
    padding: 14px 18px;
    color: var(--dark);
    background: var(--secondary);
    border-radius: 12px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.contact-email-link:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.contact-separator {
    height: 1px;
    margin: 30px 0;
    background: rgba(0, 29, 35, .1);
}

.contact-whatsapp-placeholder {
    display: inline-flex;
    align-items: center;
    padding: 13px 18px;
    color: #5E6668;
    background: #F8F8F9;
    border: 1px solid rgba(0, 29, 35, .16);
    border-radius: 12px;
    font-weight: 700;
}

.contact-whatsapp-placeholder .fa-whatsapp {
    color: #25D366;
    font-size: 20px;
}

.contact-form-card .form-control {
    min-height: 54px;
    padding: 13px 16px;
    background: #F8F8F9;
    border: 1px solid rgba(0, 29, 35, .12);
    border-radius: 10px;
}

.contact-form-card textarea.form-control {
    min-height: 150px;
}

.contact-form-note {
    color: #788487;
    font-size: 13px;
}

@media (max-width: 575.98px) {
    .contact-home-panel,
    .contact-info-card,
    .contact-form-card {
        padding: 28px 22px;
    }

    .social-media-card {
        min-height: 200px;
        padding: 28px 20px;
    }
}

/*** Lions Global Footer ***/
.footer-logo {
    width: 74px;
    height: 74px;
    padding: 5px;
    object-fit: contain;
    flex: 0 0 74px;
}

.footer-district {
    color: #F4C542;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.footer-address-link {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
}

.footer-address-link:hover {
    color: #FFFFFF;
}

.footer p a {
    color: rgba(255, 255, 255, .65);
    overflow-wrap: anywhere;
}

.footer p a:hover {
    color: #FFFFFF;
}

.footer .fa-tiktok {
    font-size: 16px;
}

@media (max-width: 575.98px) {
    .footer-logo {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    .footer-brand h4 {
        font-size: 18px;
    }
}

/*** Ways We Serve + Social Feed Final ***/
.topbar-link {
    color: rgba(255, 255, 255, .5);
}

.topbar-link:hover {
    color: #FFFFFF;
}

.tiktok-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
    transform: rotate(-10deg);
}

.serve-card {
    display: block;
    min-height: 255px;
    padding: 32px 26px;
    color: var(--dark);
    background: #FFFFFF;
    border: 1px solid rgba(0, 29, 35, .08);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 29, 35, .07);
    transition: transform .35s ease, box-shadow .35s ease;
}

.serve-card:hover {
    color: var(--dark);
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 29, 35, .14);
}

.serve-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 16px;
    font-size: 24px;
}

.social-feed-panel {
    overflow: hidden;
    padding: 26px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 29, 35, .08);
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(0, 29, 35, .08);
}

.social-feed-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.social-feed-header span:not(.social-feed-logo):not(.tiktok-icon-large) {
    color: #788487;
    font-size: 13px;
}

.social-feed-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #FFFFFF;
    border-radius: 14px;
    font-size: 23px;
}

.social-feed-logo.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
}

.social-feed-logo.youtube {
    background: #FF0000;
}

.social-feed-logo.tiktok {
    background: #111111;
}

.tiktok-icon-large {
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    transform: rotate(-10deg);
}

.social-profile-preview {
    display: flex;
    min-height: 360px;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #F8F8F9;
    border-radius: 16px;
}

.social-profile-preview > i {
    margin-bottom: 18px;
    font-size: 56px;
    color: #C13584;
}

.social-video-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
    background: #000000;
    border-radius: 16px;
}

.social-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.social-feed-link {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 700;
}

.social-embed-note {
    margin-top: 16px;
    color: #788487;
    font-size: 12px;
    line-height: 1.5;
}

.footer-social-link {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .65);
}

.footer-social-link:hover,
.footer-email-link:hover {
    color: #FFFFFF;
}

.footer-social-link i {
    width: 24px;
}

.footer-email-link {
    display: block;
    color: rgba(255, 255, 255, .72);
    overflow-wrap: anywhere;
}

@media (max-width: 991.98px) {
    .social-profile-preview {
        min-height: 290px;
    }

    .social-video-frame {
        padding-top: 70%;
    }
}

@media (max-width: 575.98px) {
    .serve-card {
        min-height: auto;
    }

    .social-feed-panel {
        padding: 22px;
    }
}

/*** Header Logo + Reliable Social Feed Fix ***/
.top-bar {
    height: 44px;
    min-height: 44px;
    white-space: nowrap;
    overflow: hidden;
}

.topbar-left,
.topbar-social {
    display: flex;
    align-items: center;
    height: 44px;
}

.topbar-social {
    justify-content: flex-end;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .55);
}

.topbar-link:hover {
    color: #FFFFFF;
}

.navbar {
    min-height: 104px;
    overflow: visible;
}

.navbar-lions-brand {
    min-height: 96px;
    overflow: visible;
}

.navbar-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    padding: 10px;
    flex: 0 0 78px;
    overflow: visible;
}

.navbar-lions-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(.72);
    transform-origin: center;
}

.instagram-profile-preview,
.tiktok-profile-preview {
    display: flex;
    min-height: 380px;
    padding: 34px 28px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-align: center;
    background: #F8F8F9;
    border-radius: 16px;
}

.instagram-profile-preview:hover,
.tiktok-profile-preview:hover {
    color: var(--dark);
}

.instagram-preview-icon,
.tiktok-preview-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
    color: #FFFFFF;
    border-radius: 24px;
    font-size: 42px;
}

.instagram-preview-icon {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
}

.tiktok-preview-logo {
    background: #111111;
    font-family: Arial, sans-serif;
    font-weight: 900;
    transform: rotate(-8deg);
}

.tiktok-brand-icon {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 900;
    line-height: 1;
    transform: rotate(-8deg);
}

.instagram-profile-preview strong,
.tiktok-profile-preview strong {
    margin-bottom: 14px;
    font-family: "Saira", sans-serif;
    font-size: 20px;
}

.instagram-profile-preview p,
.tiktok-profile-preview p {
    max-width: 300px;
    margin-bottom: 24px;
    color: #667174;
}

.youtube-feed-frame {
    padding-top: 100%;
}

.social-feed-caption {
    margin: 16px 0 0;
    color: #788487;
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 1199.98px) {
    .navbar {
        min-height: 94px;
    }

    .navbar-lions-brand {
        min-height: 86px;
    }

    .navbar-logo-frame {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 82px;
    }

    .navbar-lions-brand {
        min-height: 74px;
    }

    .navbar-logo-frame {
        width: 62px;
        height: 62px;
        padding: 8px;
        flex-basis: 62px;
    }

    .navbar-lions-logo {
        transform: scale(.74);
    }

    .instagram-profile-preview,
    .tiktok-profile-preview {
        min-height: 300px;
    }

    .youtube-feed-frame {
        padding-top: 60%;
    }
}

@media (max-width: 575.98px) {
    .navbar-logo-frame {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .navbar-lions-logo {
        transform: scale(.72);
    }
}

/*** Final Proportional Logo Fix ***/
.navbar {
    min-height: 96px;
    overflow: visible;
}

.navbar-lions-brand {
    min-height: 88px;
    overflow: visible;
}

.navbar-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    padding: 0;
    flex: 0 0 76px;
    overflow: visible;
}

.navbar-lions-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none !important;
}

.footer-logo {
    width: 78px;
    height: 78px;
    padding: 0;
    object-fit: contain;
    transform: none !important;
}

@media (max-width: 1199.98px) {
    .navbar-logo-frame {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }
}

@media (max-width: 991.98px) {
    .navbar-logo-frame {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }
}

@media (max-width: 575.98px) {
    .navbar-logo-frame {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .footer-logo {
        width: 66px;
        height: 66px;
    }
}

/*** Final Brand Proportion Fix ***/
.navbar-lions-brand {
    max-width: 430px;
    margin-right: 28px;
    gap: 10px;
}

.navbar-brand-text {
    max-width: 315px;
}

.brand-main {
    font-size: 16px;
    letter-spacing: .15px;
    line-height: 1.1;
}

.brand-sub {
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 1.3px;
}

@media (max-width: 1399.98px) {
    .navbar-lions-brand {
        max-width: 360px;
        margin-right: 18px;
    }

    .navbar-brand-text {
        max-width: 275px;
    }

    .brand-main {
        font-size: 14px;
    }

    .brand-sub {
        font-size: 10px;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 22px;
    }
}

@media (max-width: 1199.98px) {
    .navbar-lions-brand {
        max-width: 300px;
        margin-right: 10px;
    }

    .navbar-brand-text {
        max-width: 220px;
    }

    .brand-main {
        font-size: 12px;
    }

    .brand-sub {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 16px;
    }
}

@media (max-width: 991.98px) {
    .navbar-lions-brand {
        max-width: none;
        margin-right: 0;
    }

    .brand-main {
        font-size: 14px;
    }

    .brand-sub {
        font-size: 10px;
    }
}

/*** Final Internal Page Banner Fix ***/
.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background:
        linear-gradient(rgba(0, 29, 35, .72), rgba(0, 29, 35, .72)),
        url(../img/carousel-1.jpg) center 42% no-repeat;
    background-size: cover;
}

@media (max-width: 991.98px) {
    .page-header {
        padding-top: 10rem;
        padding-bottom: 4.5rem;
        background-position: center 45%;
    }
}

@media (max-width: 575.98px) {
    .page-header {
        padding-top: 8.5rem;
        padding-bottom: 3.5rem;
        background-position: center center;
    }
}

/*** Custom Social PNG Icons ***/
.social-icon-image {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.social-feed-logo.instagram,
.social-feed-logo.youtube,
.social-feed-logo.tiktok {
    padding: 7px;
    background: transparent;
}

.social-preview-image {
    display: block;
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.instagram-preview-icon,
.tiktok-preview-logo {
    background: transparent !important;
    transform: none !important;
}

.topbar-social-image {
    display: inline-block;
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
}

.footer-social-image {
    display: inline-block;
    width: 23px;
    height: 23px;
    margin-right: 8px;
    object-fit: contain;
    vertical-align: middle;
}

@media (max-width: 575.98px) {
    .social-icon-image {
        width: 30px;
        height: 30px;
    }

    .social-preview-image {
        width: 76px;
        height: 76px;
    }
}

/*** Active WhatsApp Contact ***/
.donation-whatsapp-active,
.contact-whatsapp-active {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 13px 18px;
    color: #FFFFFF;
    background: #25D366;
    border: 1px solid #25D366;
    border-radius: 12px;
    font-weight: 700;
}

.donation-whatsapp-active:hover,
.contact-whatsapp-active:hover {
    color: #FFFFFF;
    background: #1EAE54;
    border-color: #1EAE54;
}

.donation-whatsapp-active .fa-whatsapp,
.contact-whatsapp-active .fa-whatsapp {
    font-size: 20px;
}


/*** Lions International Brand Alignment — 2026 ***/
:root {
    --primary: #00338D;
    --secondary: #F3F6FB;
    --light: #F7F8FA;
    --dark: #0D2240;
    --lions-blue: #00338D;
    --lions-yellow: #EBB700;
    --lions-purple: #7A2582;
    --lions-mid-blue: #407CCA;
    --lions-gray: #55565A;
    --lions-light-gray: #B3B2B1;
}

html { scroll-behavior: smooth; }
body {
    color: #55565A;
    background: #FFFFFF;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    line-height: 1.65;
}
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    color: #0D2240;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
}
a { color: #00338D; }
a:hover { color: #407CCA; }
.text-primary { color: #00338D !important; }
.text-secondary { color: #7A2582 !important; }
.bg-primary { background-color: #00338D !important; }
.bg-secondary { background-color: #F3F6FB !important; }
.border-primary { border-color: #EBB700 !important; }

.btn {
    min-height: 46px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: .01em;
}
.btn-primary {
    color: #0D2240 !important;
    background-color: #EBB700 !important;
    border-color: #EBB700 !important;
}
.btn-primary:hover,
.btn-primary:focus {
    color: #FFFFFF !important;
    background-color: #00338D !important;
    border-color: #00338D !important;
}
.btn-outline-primary {
    color: #FFFFFF;
    border-color: rgba(255,255,255,.8);
}
.btn-outline-primary:hover {
    color: #0D2240 !important;
    background: #EBB700 !important;
    border-color: #EBB700 !important;
}
.btn .bg-white.text-primary { color: #00338D !important; }

.fixed-top { background: rgba(13,34,64,.98); box-shadow: 0 8px 24px rgba(13,34,64,.12); }
.top-bar { height: 40px; background: #0A1B34; border-bottom-color: rgba(255,255,255,.12); }
.topbar-link, .topbar-link small { color: rgba(255,255,255,.76); }
.topbar-link:hover, .topbar-link:hover small { color: #FFFFFF; }
.navbar { min-height: 82px; background: #0D2240; }
.navbar-lions-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    max-width: 360px;
}
.navbar-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 5px;
}
.navbar-lions-logo {
    display: block;
    width: auto;
    height: 62px;
    max-width: 110px;
    object-fit: contain;
    object-position: center;
    filter: none !important;
    transform: none !important;
}
.navbar-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-main { color: #FFFFFF; font-size: 17px; font-weight: 700; letter-spacing: -.015em; }
.brand-sub { color: #EBB700; font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; margin-top: 5px; }
.navbar .navbar-nav .nav-link {
    margin-right: 24px;
    padding: 30px 0 27px;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FFFFFF;
    border-bottom-color: #EBB700;
}
.navbar .dropdown-menu { padding: 10px; border: 0; border-radius: 6px; box-shadow: 0 14px 35px rgba(13,34,64,.18); }
.navbar .dropdown-item { border-radius: 4px; padding: 10px 14px; font-weight: 600; color: #0D2240; }
.navbar .dropdown-item:hover { color: #00338D; background: #F3F6FB; }

.carousel-caption {
    text-align: left;
    background: linear-gradient(90deg, rgba(13,34,64,.93) 0%, rgba(13,34,64,.75) 52%, rgba(13,34,64,.35) 100%);
}
#header-carousel .carousel-caption .row { justify-content: flex-start !important; }
#header-carousel .carousel-caption .col-lg-7 { max-width: 760px; }
#header-carousel h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: 1.05; letter-spacing: -.045em; }
#header-carousel h1::after {
    content: "";
    display: block;
    width: 92px;
    height: 6px;
    margin-top: 24px;
    background: #EBB700;
}
#header-carousel .text-white-50 { color: rgba(255,255,255,.88) !important; max-width: 680px; }
.carousel-control-prev-icon, .carousel-control-next-icon { background-color: #00338D; border-color: #00338D; }

.page-header {
    background:
        linear-gradient(90deg, rgba(13,34,64,.94), rgba(0,51,141,.72)),
        url(../img/carousel-1.jpg) center 42% no-repeat;
    background-size: cover;
}
.page-header h1 { color: #FFFFFF; }
.page-header .breadcrumb-item, .page-header .breadcrumb-item a { color: rgba(255,255,255,.9); }

.rounded-pill.bg-secondary {
    color: #00338D !important;
    background: #F3F6FB !important;
    border: 1px solid #DDE6F4;
    border-radius: 999px !important;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.program-card, .service-item, .team-item, .testimonial-item, .news-card {
    border: 1px solid #E5EAF1;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(13,34,64,.07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.program-card:hover, .service-item:hover, .team-item:hover, .news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,51,141,.25);
    box-shadow: 0 16px 38px rgba(13,34,64,.12);
}
.program-badge, .program-tags span { color: #00338D; background: #F3F6FB; border-color: #DDE6F4; }
.program-link { color: #00338D; font-weight: 700; }
.program-link:hover { color: #7A2582; }

.footer, .container-fluid.bg-dark { background: #0D2240 !important; }
.footer h5 { color: #FFFFFF; }
.footer .btn-link:hover { color: #EBB700; }
.footer .copyright { border-color: rgba(255,255,255,.12); }

.social-icon-image, .topbar-social-image, .footer-social-image { filter: none; }
.donation-whatsapp-active, .contact-whatsapp-active { border-radius: 4px; }

*:focus-visible { outline: 3px solid #EBB700; outline-offset: 3px; }

@media (max-width: 1199.98px) {
    .navbar .navbar-nav .nav-link { margin-right: 16px; font-size: 14px; }
    .navbar-lions-logo { height: 56px; }
    .brand-main { font-size: 15px; }
}
@media (max-width: 991.98px) {
    .navbar { min-height: 74px; }
    .navbar-lions-brand { max-width: calc(100% - 80px); gap: 10px; }
    .navbar-lions-logo { height: 50px; max-width: 88px; }
    .brand-main { font-size: 14px; }
    .brand-sub { font-size: 10px; }
    .navbar .navbar-nav { background: #0D2240; border-top-color: rgba(255,255,255,.12); padding: 14px 20px !important; }
    .navbar .navbar-nav .nav-link { margin-right: 0; padding: 11px 0; border-bottom: 0; }
    .navbar .navbar-nav .nav-link.active { color: #EBB700; }
    .carousel-caption { text-align: center; background: rgba(13,34,64,.82); }
    #header-carousel .carousel-caption .row { justify-content: center !important; }
    #header-carousel h1::after { margin-left: auto; margin-right: auto; }
}
@media (max-width: 575.98px) {
    .navbar-brand-text { display: none; }
    .navbar-lions-logo { height: 48px; max-width: 82px; }
    #header-carousel h1 { font-size: 2.25rem; }
    #header-carousel .carousel-caption { padding-top: 90px; }
    #header-carousel .fs-5 { font-size: 1rem !important; }
}

/*** Homepage corrections — Slider & CTA buttons ***/
#header-carousel .carousel-item {
    height: clamp(560px, 67vh, 720px);
    min-height: 560px;
}

#header-carousel .carousel-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#header-carousel .carousel-caption {
    padding-top: 110px;
    padding-bottom: 48px;
}

#header-carousel .carousel-caption .container,
#header-carousel .carousel-caption .row {
    height: 100%;
}

#header-carousel .carousel-caption .row {
    align-items: center;
}

#header-carousel .carousel-caption .col-lg-7 {
    padding-top: 0 !important;
    max-width: 700px;
}

#header-carousel .hero-kicker {
    color: #EBB700;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

#header-carousel h1 {
    max-width: 650px;
    font-size: clamp(2.7rem, 4.3vw, 4.4rem);
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
}

#header-carousel .fs-5 {
    max-width: 650px;
    font-size: clamp(1rem, 1.35vw, 1.25rem) !important;
    line-height: 1.65;
}

/* CTA buttons on white homepage sections must remain visibly filled. */
#tentang-kami .btn-primary,
#berita-terbaru .btn-primary,
#pengurus .btn-primary,
#kontak-home .btn-primary {
    color: #0D2240 !important;
    background-color: #EBB700 !important;
    border-color: #EBB700 !important;
    box-shadow: 0 8px 20px rgba(235, 183, 0, .20);
}

#tentang-kami .btn-primary:hover,
#berita-terbaru .btn-primary:hover,
#pengurus .btn-primary:hover,
#kontak-home .btn-primary:hover {
    color: #FFFFFF !important;
    background-color: #00338D !important;
    border-color: #00338D !important;
}

.contact-home-email {
    gap: 2px;
    text-decoration: none;
}

.contact-home-email i {
    flex: 0 0 auto;
    color: #00338D;
    font-size: 1.05rem;
}

@media (max-width: 991.98px) {
    #header-carousel .carousel-item {
        height: 570px;
        min-height: 570px;
    }
    #header-carousel .carousel-caption {
        padding: 105px 55px 35px;
    }
    #header-carousel h1,
    #header-carousel .fs-5 {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-home-email {
        justify-content: flex-start !important;
    }
}

@media (max-width: 575.98px) {
    #header-carousel .carousel-item {
        height: 540px;
        min-height: 540px;
    }
    #header-carousel .carousel-caption {
        padding: 90px 38px 28px;
    }
    #header-carousel .hero-kicker {
        font-size: .7rem;
        letter-spacing: .08em;
    }
    #header-carousel h1 {
        font-size: 2.25rem;
    }
    #header-carousel h1::after {
        width: 70px;
        height: 4px;
        margin-top: 18px;
    }
}
