/* ==========================================================
   Portal Digital Saka Bakti Husada Kwarcab Tuban
   frontend.css
   Bootstrap 5.3 Compatible
========================================================== */

:root{

    --primary:#198754;
    --primary-dark:#146c43;
    --secondary:#ffc107;
    --danger:#dc3545;
    --light:#f8f9fa;
    --dark:#212529;
    --white:#ffffff;
    --border:#e9ecef;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:16px;

}

/* ==========================================================
   GLOBAL
========================================================== */

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#444;
    line-height:1.7;

}

a{

    text-decoration:none;
    transition:.3s;

}

img{

    max-width:100%;

}

.section{

    padding:80px 0;

}

.section-title{

    font-size:34px;
    font-weight:700;
    color:var(--primary);

}

.section-subtitle{

    color:#6c757d;
    margin-bottom:40px;

}

/* ==========================================================
   LOADER
========================================================== */

#loader{

    position:fixed;
    inset:0;
    background:#fff;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;

}

/* ==========================================================
   NAVBAR
========================================================== */

.navbar{

    background:linear-gradient(90deg,#198754,#157347);
    box-shadow:0 5px 25px rgba(0,0,0,.08);

}

.navbar-brand{

    font-weight:700;

}

.navbar .nav-link{

    color:#fff!important;
    font-weight:500;
    padding:.8rem 1rem;

}

.navbar .nav-link:hover,
.navbar .nav-link.active{

    color:#ffd54f!important;

}

.dropdown-menu{

    border:none;
    border-radius:12px;
    box-shadow:var(--shadow);

}

.dropdown-item{

    padding:.65rem 1rem;

}

.dropdown-item:hover{

    background:#198754;
    color:#fff;

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    background:
        linear-gradient(rgba(25,135,84,.85),rgba(25,135,84,.85)),
        url('../images/hero.jpg') center/cover;

    color:#fff;

    padding:120px 0;

}

.hero h1{

    font-size:52px;
    font-weight:700;

}

.hero p{

    font-size:20px;

}

/* ==========================================================
   CARD
========================================================== */

.card{

    border:none;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.3s;

}

.card:hover{

    transform:translateY(-6px);

}

.card img{

    transition:.4s;

}

.card:hover img{

    transform:scale(1.05);

}

/* ==========================================================
   BUTTON
========================================================== */

.btn{

    border-radius:50px;
    padding:.7rem 1.4rem;

}

.btn-success{

    background:var(--primary);
    border:none;

}

.btn-success:hover{

    background:var(--primary-dark);

}

/* ==========================================================
   BERITA
========================================================== */

.news-card img{

    height:220px;
    object-fit:cover;

}

.news-title{

    font-size:20px;
    font-weight:600;

}

.news-meta{

    font-size:13px;
    color:#888;

}

/* ==========================================================
   GALERI
========================================================== */

.gallery-item{

    overflow:hidden;
    border-radius:16px;

}

.gallery-item img{

    width:100%;
    transition:.4s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-card{
    transition:.3s;
}

.gallery-card:hover{

    transform:translateY(-8px);

    box-shadow:0 .8rem 2rem rgba(0,0,0,.15)!important;

}

.gallery-card img{

    transition:.4s;

}

.gallery-card:hover img{

    transform:scale(1.05);

}

/* ==========================================================
   SIDEBAR
========================================================== */

.sidebar-widget{

    background:#fff;
    border-radius:var(--radius);
    padding:25px;
    box-shadow:var(--shadow);
    margin-bottom:30px;

}

.sidebar-title{

    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
    color:var(--primary);

}

/* ==========================================================
   TABLE
========================================================== */

.table{

    background:#fff;

}

.table thead{

    background:#198754;
    color:#fff;

}

/* ==========================================================
   FORM
========================================================== */

.form-control,
.form-select{

    border-radius:12px;
    padding:.75rem;

}

.form-control:focus,
.form-select:focus{

    border-color:#198754;
    box-shadow:0 0 0 .2rem rgba(25,135,84,.15);

}

/* ==========================================================
   PAGINATION
========================================================== */

.pagination .page-link{

    color:#198754;

}

.pagination .active .page-link{

    background:#198754;
    border-color:#198754;

}

/* ==========================================================
   FOOTER
========================================================== */

footer{

    background:#146c43;
    color:#fff;

}

footer a{

    color:#fff;

}

footer a:hover{

    color:#ffd54f;

}

/* ==========================================================
   WHATSAPP
========================================================== */

.whatsapp-float{

    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    box-shadow:var(--shadow);
    z-index:999;

}

/* ==========================================================
   BACK TO TOP
========================================================== */

#backToTop{

    position:fixed;
    right:20px;
    bottom:95px;
    display:none;
    z-index:999;

}

/* ==========================================================
   ANIMATION
========================================================== */

.fade-up{

    animation:fadeUp .7s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:991px){

.hero{

    padding:90px 0;

}

.hero h1{

    font-size:38px;

}

.section{

    padding:60px 0;

}

}

@media(max-width:768px){

.section-title{

    font-size:28px;

}

.hero h1{

    font-size:30px;

}

.hero p{

    font-size:16px;

}

.navbar-brand img{

    width:40px;

}

}

@media(max-width:576px){

.card{

    margin-bottom:20px;

}

.btn{

    width:100%;

}

}

/* ==========================================================
   INDEX / HOME
========================================================== */

.min-vh-75 {
    min-height: 75vh;
}

.hero-home {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            135deg,
            rgba(9, 84, 51, .94),
            rgba(25, 135, 84, .84)
        ),
        url('../images/hero-sbh.jpg') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 193, 7, .22),
            transparent 35%
        );
}

.hero-badge,
.section-badge,
.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: .45rem 1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .03em;
}

.hero-badge {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    backdrop-filter: blur(8px);
}

.hero-logo-wrapper {
    width: 390px;
    height: 390px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroFloat 4s ease-in-out infinite;
}

.hero-logo {
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 18px 25px rgba(0, 0, 0, .25));
}

.hero-wave {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 120px;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Statistik */

.statistics-section {
    position: relative;
    margin-top: -85px;
    z-index: 10;
    padding-bottom: 50px;
}

.stat-card {
    height: 100%;
    padding: 28px 20px;
    border-radius: 18px;
    background: #fff;
    text-align: center;
    box-shadow: 0 15px 40px rgba(20, 108, 67, .12);
    transition: .3s ease;
}

.stat-card:hover {
    transform: translateY(-7px);
}

.stat-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: rgba(25, 135, 84, .1);
    color: var(--primary);
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    color: var(--primary-dark);
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
}

.stat-label {
    margin-top: 7px;
    color: #6c757d;
    font-weight: 500;
}

/* Section badge */

.section-badge {
    background: rgba(25, 135, 84, .1);
    color: var(--primary);
}

.section-badge-light {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

/* Tentang */

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper > img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    right: 25px;
    bottom: -25px;
    min-width: 165px;
    padding: 20px;
    border-radius: 18px;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 15px 35px rgba(25, 135, 84, .25);
}

.about-badge strong,
.about-badge span {
    display: block;
}

.about-badge strong {
    font-size: 1.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item i {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: rgba(25, 135, 84, .12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Krida */

.krida-card{
    background:#ffffff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    cursor:pointer;
    border:1px solid #eef2f7;
}

.krida-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.krida-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    background:#0f5132;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:20px;

}

.krida-card h3{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.krida-card p{

    color:#6c757d;

    line-height:1.8;

}

.krida-detail{

    display:none;

    margin-top:20px;

    padding-top:20px;

    border-top:1px solid #dee2e6;

    animation:fadeKrida .35s ease;

}

.krida-detail.show{

    display:block;

}

.arrow{

    transition:.3s ease;

}

.arrow.rotate{

    transform:rotate(180deg);

}

@keyframes fadeKrida{

    from{

        opacity:0;
        transform:translateY(-10px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* Berita */

.read-more {
    color: var(--primary);
    font-weight: 600;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Agenda */

.agenda-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #0f6b40, #198754) !important;
}

.agenda-section::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.agenda-list {
    display: grid;
    gap: 16px;
}

.agenda-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
}

.agenda-date {
    width: 72px;
    min-width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #ffc107;
    color: #212529;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.agenda-date strong {
    font-size: 1.65rem;
    line-height: 1;
}

.agenda-date span {
    margin-top: 4px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.agenda-content h3 {
    margin-bottom: 7px;
    font-size: 1rem;
    font-weight: 600;
}

.agenda-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: .83rem;
}

.agenda-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.agenda-empty {
    padding: 45px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .12);
    text-align: center;
}

.agenda-empty > i {
    margin-bottom: 18px;
    font-size: 3rem;
    color: #ffc107;
}

/* Album */

.album-card {
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: .3s ease;
}

.album-card:hover {
    transform: translateY(-7px);
}

.album-image {
    position: relative;
    height: 240px;
    display: block;
    overflow: hidden;
}

.album-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.album-card:hover .album-image img {
    transform: scale(1.08);
}

.album-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 45px 18px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .75));
    color: #fff;
}

.album-body {
    padding: 20px;
}

.album-body h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 700;
}

.album-body p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: .9rem;
}

/* Pengurus */

.team-card {
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: .3s ease;
}

.team-card:hover {
    transform: translateY(-7px);
}

.team-photo {
    height: 285px;
    overflow: hidden;
    background: #eef3f0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-body {
    padding: 22px 18px;
}

.team-body h3 {
    margin-bottom: 6px;
    color: #24332b;
    font-size: 1.05rem;
    font-weight: 700;
}

.team-body p {
    margin-bottom: 6px;
    color: var(--primary);
    font-size: .9rem;
    font-weight: 600;
}

.team-body small {
    color: #6c757d;
}

/* CTA */

.cta-section {
    padding: 40px 0 80px;
}

.cta-wrapper {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            rgba(9, 84, 51, .96),
            rgba(25, 135, 84, .92)
        ),
        url('../images/cta-bg.jpg') center / cover;
    color: #fff;
    box-shadow: 0 20px 50px rgba(25, 135, 84, .22);
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -180px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.cta-wrapper > .row {
    position: relative;
    z-index: 1;
}

.cta-badge {
    margin-bottom: 13px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.cta-wrapper h2 {
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 700;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, .78);
}

/* Layanan */

.service-card {
    height: 100%;
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #edf1f4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #343a40;
    transition: .3s ease;
}

.service-card:hover {
    color: #343a40;
    border-color: rgba(25, 135, 84, .28);
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(25, 135, 84, .12);
}

.service-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 18px;
    background: rgba(25, 135, 84, .1);
    color: var(--primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    margin-bottom: 7px;
    font-size: 1.05rem;
    font-weight: 700;
}

.service-card p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: .9rem;
}

/* Empty state */

.empty-state {
    padding: 55px 25px;
    border-radius: 20px;
    background: #fff;
    text-align: center;
    box-shadow: var(--shadow);
}

.empty-state > i {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 3rem;
}

.empty-state h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.empty-state p {
    margin-bottom: 0;
    color: #6c757d;
}

/* Responsive index */

@media (max-width: 991.98px) {
    .hero-home {
        min-height: 620px;
        text-align: center;
    }

    .statistics-section {
        margin-top: -50px;
    }

    .about-image-wrapper > img {
        min-height: 360px;
    }

    .cta-wrapper {
        padding: 38px 30px;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-home {
        min-height: 570px;
    }

    .hero-home h1 {
        font-size: 2.3rem;
    }

    .statistics-section {
        margin-top: -30px;
    }

    .stat-card {
        padding: 22px 12px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .about-badge {
        right: 15px;
        bottom: -20px;
    }

    .agenda-item {
        align-items: flex-start;
        padding: 16px;
    }

    .album-image {
        height: 215px;
    }

    .cta-wrapper h2 {
        font-size: 1.55rem;
    }
}

@media (max-width: 575.98px) {
    .hero-home {
        min-height: 610px;
    }

    .hero-home h1 {
        font-size: 1.9rem;
    }

    .hero-home .btn {
        width: 100%;
    }

    .statistics-section {
        margin-top: -20px;
    }

    .stat-icon {
        width: 52px;
        height: 52px;
        font-size: 21px;
    }

    .about-image-wrapper > img {
        min-height: 280px;
    }

    .agenda-date {
        width: 58px;
        min-width: 58px;
        height: 64px;
    }

    .agenda-date strong {
        font-size: 1.4rem;
    }

    .agenda-meta {
        display: grid;
        gap: 5px;
    }

    .cta-wrapper {
        padding: 32px 20px;
    }

    .service-card {
        padding: 22px;
    }
}
/* ==========================================================
   FINAL ENHANCEMENT PACK
   Portal Digital Saka Bakti Husada Kwarcab Tuban
   ========================================================== */

::selection{background:var(--primary);color:var(--white)}
:focus-visible{outline:3px solid rgba(255,193,7,.75);outline-offset:3px}
html{scroll-padding-top:90px}
body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

::-webkit-scrollbar{width:10px;height:10px}
::-webkit-scrollbar-track{background:#eef2f0}
::-webkit-scrollbar-thumb{background:linear-gradient(var(--primary),var(--primary-dark));border-radius:999px;border:2px solid #eef2f0}
::-webkit-scrollbar-thumb:hover{background:var(--primary-dark)}

#loader{opacity:1;visibility:visible;transition:opacity .35s ease,visibility .35s ease}
#loader.loader-hidden{opacity:0;visibility:hidden;pointer-events:none}
.loader-spinner{width:52px;height:52px;border:5px solid rgba(25,135,84,.18);border-top-color:var(--primary);border-radius:50%;animation:loaderSpin .8s linear infinite}
@keyframes loaderSpin{to{transform:rotate(360deg)}}

.navbar{transition:background .3s ease,box-shadow .3s ease,transform .3s ease}
.navbar-scrolled{background:rgba(20,108,67,.96)!important;box-shadow:0 12px 35px rgba(0,0,0,.16);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}
.navbar .nav-link{position:relative}
.navbar .nav-link::after{content:"";position:absolute;left:1rem;right:1rem;bottom:.4rem;height:2px;border-radius:999px;background:var(--secondary);transform:scaleX(0);transform-origin:center;transition:transform .25s ease}
.navbar .nav-link:hover::after,.navbar .nav-link.active::after{transform:scaleX(1)}
.navbar-toggler{border-color:rgba(255,255,255,.35)}
.navbar-toggler:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.25)}
.dropdown-menu{padding:.55rem}
.dropdown-item{border-radius:8px}

.btn{font-weight:600;letter-spacing:.01em;box-shadow:none;transition:transform .2s ease,box-shadow .2s ease,background .2s ease,border-color .2s ease}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0)}
.btn-success{box-shadow:0 10px 24px rgba(25,135,84,.2)}
.btn-success:hover{box-shadow:0 14px 30px rgba(20,108,67,.28)}
.btn-warning{color:#212529;box-shadow:0 10px 24px rgba(255,193,7,.2)}

.card,.stat-card,.krida-card,.album-card,.team-card,.service-card,.sidebar-widget,.empty-state{will-change:transform}
.card:hover,.stat-card:hover,.krida-card:hover,.album-card:hover,.team-card:hover,.service-card:hover{box-shadow:0 22px 50px rgba(20,108,67,.14)}

.hero-home{isolation:isolate}
.hero-home::before{content:"";position:absolute;inset:0;background:linear-gradient(120deg,rgba(255,255,255,.05),transparent 36%),radial-gradient(circle at 18% 22%,rgba(255,193,7,.14),transparent 28%);pointer-events:none;z-index:0}
.hero-home>.container{position:relative;z-index:2}
.hero-home h1{text-wrap:balance;text-shadow:0 8px 28px rgba(0,0,0,.18)}
.hero-home p{color:rgba(255,255,255,.88)}
.hero-logo-wrapper{box-shadow:0 28px 70px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.2)}

.stat-number{font-variant-numeric:tabular-nums;transition:color .3s ease}
.stat-card:hover .stat-number{color:var(--primary)}
.section-title{line-height:1.25;text-wrap:balance}
.section-title::after{content:"";display:block;width:64px;height:4px;margin-top:14px;border-radius:999px;background:linear-gradient(90deg,var(--primary),var(--secondary))}
.text-center .section-title::after,.section-title.text-center::after{margin-left:auto;margin-right:auto}

img{height:auto}
.img-cover{width:100%;height:100%;object-fit:cover}
.image-hover{overflow:hidden}
.image-hover img{transition:transform .45s ease}
.image-hover:hover img{transform:scale(1.06)}

.news-card{height:100%;border-radius:18px;overflow:hidden;background:#fff}
.news-card .card-body{display:flex;flex-direction:column}
.news-card .read-more{margin-top:auto}
.news-title{line-height:1.4}
.news-meta{display:flex;flex-wrap:wrap;gap:.75rem}

.gallery-item{position:relative;min-height:220px;background:#e9efeb}
.gallery-item::after{content:"\f00e";font-family:"Font Awesome 6 Free";font-weight:900;position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.8rem;background:rgba(20,108,67,.52);opacity:0;transition:opacity .3s ease}
.gallery-item:hover::after{opacity:1}

.agenda-item{transition:transform .25s ease,background .25s ease,border-color .25s ease}
.agenda-item:hover{transform:translateX(6px);background:rgba(255,255,255,.17);border-color:rgba(255,255,255,.28)}

.form-label{font-weight:600;color:#334039}
.form-control,.form-select{border:1px solid #dce5df;background-color:#fff;transition:border-color .2s ease,box-shadow .2s ease,background .2s ease}
.form-control:hover,.form-select:hover{border-color:#b8c9bf}
.form-control::placeholder{color:#98a39d}
.input-group-text{border-color:#dce5df;background:#f5f8f6}
.form-check-input:checked{background-color:var(--primary);border-color:var(--primary)}

.table-responsive{border-radius:16px;box-shadow:var(--shadow)}
.table{margin-bottom:0}
.table thead th{border:0;padding:1rem;white-space:nowrap}
.table tbody td{padding:.95rem 1rem;vertical-align:middle}
.table tbody tr{transition:background .2s ease}
.table tbody tr:hover{background:rgba(25,135,84,.05)}

.breadcrumb{padding:.85rem 1rem;border-radius:12px;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.05)}
.breadcrumb-item+.breadcrumb-item::before{color:#8a9890}
.badge{border-radius:999px;padding:.5em .8em;font-weight:600}

.pagination{gap:.35rem}
.pagination .page-link{min-width:42px;height:42px;border:0;border-radius:50%!important;display:flex;align-items:center;justify-content:center;background:#fff;box-shadow:0 6px 18px rgba(0,0,0,.06)}
.pagination .page-link:hover{background:rgba(25,135,84,.1);color:var(--primary-dark)}

.alert{border:0;border-radius:14px;box-shadow:0 10px 30px rgba(0,0,0,.06)}
.toast{border:0;border-radius:14px;box-shadow:0 18px 45px rgba(0,0,0,.15)}
.whatsapp-float,#backToTop{transition:transform .25s ease,box-shadow .25s ease,opacity .25s ease}
.whatsapp-float:hover,#backToTop:hover{transform:translateY(-4px) scale(1.03)}
.whatsapp-float:hover{color:#fff;box-shadow:0 16px 35px rgba(37,211,102,.35)}
#backToTop{width:48px;height:48px;border:0;border-radius:50%;background:var(--primary);color:#fff;box-shadow:0 12px 28px rgba(25,135,84,.28)}

footer{position:relative;overflow:hidden}
footer::before{content:"";position:absolute;width:320px;height:320px;right:-150px;top:-150px;border-radius:50%;background:rgba(255,255,255,.04)}
footer>*{position:relative;z-index:1}
footer .social-link{width:42px;height:42px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,255,255,.1);transition:background .25s ease,transform .25s ease}
footer .social-link:hover{background:var(--secondary);color:#212529;transform:translateY(-3px)}

.skeleton{position:relative;overflow:hidden;background:#e8eeea;color:transparent!important;border-radius:10px}
.skeleton::after{content:"";position:absolute;inset:0;transform:translateX(-100%);background:linear-gradient(90deg,transparent,rgba(255,255,255,.65),transparent);animation:skeletonMove 1.25s infinite}
@keyframes skeletonMove{to{transform:translateX(100%)}}

.shadow-soft{box-shadow:var(--shadow)!important}
.rounded-premium{border-radius:var(--radius)!important}
.bg-soft-success{background:rgba(25,135,84,.08)!important}
.text-balance{text-wrap:balance}
.object-cover{object-fit:cover}
.transition{transition:.3s ease}

@media (prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}

@media (max-width:991.98px){
.navbar-collapse{margin-top:.75rem;padding:1rem;border-radius:14px;background:rgba(20,108,67,.98);box-shadow:0 15px 35px rgba(0,0,0,.14)}
.navbar .nav-link::after{left:0;right:auto;width:36px;bottom:.25rem}
.hero-logo-wrapper{width:300px;height:300px;padding:38px}
.hero-logo{max-height:220px}
}

@media (max-width:767.98px){
.section{padding:56px 0}
.section-title{font-size:1.85rem}
.hero-logo-wrapper{width:240px;height:240px;padding:30px}
.hero-logo{max-height:170px}
.agenda-item:hover{transform:none}
.table-responsive{border-radius:12px}
}

@media (max-width:575.98px){
.container{padding-left:18px;padding-right:18px}
.hero-home{padding-top:95px;padding-bottom:95px}
.section-title{font-size:1.65rem}
.section-subtitle{margin-bottom:28px}
.btn:not(.btn-sm):not(.btn-icon){min-height:46px}
.whatsapp-float{right:16px;bottom:16px;width:54px;height:54px;font-size:25px}
#backToTop{right:19px;bottom:82px;width:46px;height:46px}
}

@media print{
.navbar,footer,.whatsapp-float,#backToTop,#loader,.btn,.pagination{display:none!important}
body{background:#fff;color:#000;font-size:12pt}
.section{padding:20px 0}
.card,.stat-card,.krida-card,.album-card,.team-card,.service-card,.sidebar-widget{box-shadow:none!important;border:1px solid #ddd!important;break-inside:avoid}
a{color:#000!important;text-decoration:none!important}
}

/*==========================================
  VISI MISI TUJUAN
==========================================*/

.vmt-card{
    background:#fff;
    border-radius:22px;
    padding:30px;
    height:100%;
    border:1px solid #edf1f5;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s ease;
}

.vmt-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.vmt-icon{
    width:68px;
    height:68px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.vmt-title{
    font-size:1.45rem;
    font-weight:700;
    color:#0b5d3b;
    margin-bottom:18px;
}

.vmt-text{
    color:#64748b;
    line-height:1.9;
    margin:0;
}

.vmt-list{
    margin:0;
    padding-left:20px;
    color:#64748b;
    line-height:1.9;
}

.vmt-list li{
    margin-bottom:8px;
}

@media(max-width:991px){

    .vmt-card{
        padding:25px;
    }

}