/* RESET */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', Arial, Helvetica, sans-serif;
}

body{
    overflow-x:hidden;
    background-color:#0b1c0f;
    min-width:320px;
}

/* ================= TOMBOL & MODAL DETAIL RUMAH ================= */

.lihat-detail-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:15px;
    margin-left:8px;
    padding:14px 25px;
    border:1px solid #19864f;
    border-radius:10px;
    background:#fff;
    color:#19864f;
    font:inherit;
    font-weight:700;
    cursor:pointer;
    transition:background .25s ease, color .25s ease, transform .25s ease;
}

.lihat-detail-btn:hover{
    background:#19864f;
    color:#fff;
    transform:translateY(-2px);
}

.detail-rumah-modal{
    position:fixed;
    inset:0;
    z-index:10000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:rgba(5,18,9,.76);
    opacity:0;
    visibility:hidden;
    transition:opacity .25s ease, visibility .25s ease;
}

.detail-rumah-modal.is-open{
    opacity:1;
    visibility:visible;
}

.detail-rumah-dialog{
    position:relative;
    width:min(820px, 100%);
    max-height:92vh;
    overflow:auto;
    padding:34px;
    border-radius:22px;
    background:#fff;
    box-shadow:0 24px 70px rgba(0,0,0,.35);
    transform:translateY(18px) scale(.98);
    transition:transform .25s ease;
}

.detail-rumah-modal.is-open .detail-rumah-dialog{
    transform:translateY(0) scale(1);
}

.detail-rumah-close{
    position:absolute;
    top:16px;
    right:16px;
    z-index:2;
    width:36px;
    height:36px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    color:#176b3e;
    cursor:pointer;
    font-size:18px;
    box-shadow:0 4px 12px rgba(0,0,0,.12);
}

.detail-rumah-kicker{
    color:#19864f;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
}

.detail-rumah-dialog h2{
    margin:8px 0 22px;
    color:#132219;
    font-size:30px;
}

.detail-rumah-hero{
    overflow:hidden;
    border-radius:16px;
    background:#f3f8f3;
}

.detail-rumah-hero img{
    display:block;
    width:100%;
    height:auto;
    max-height:430px;
    object-fit:contain;
}

.detail-rumah-copy{
    margin-top:26px;
}

.detail-rumah-copy h3,
.detail-rumah-features h3{
    margin-bottom:10px;
    color:#176b3e;
    font-size:21px;
}

.detail-rumah-copy p{
    margin-bottom:12px;
    color:#506056;
    font-size:14px;
    line-height:1.8;
}

.detail-rumah-highlights{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:12px;
    margin:24px 0;
}

.detail-rumah-highlights div{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:4px;
    padding:15px 8px;
    border-radius:12px;
    background:#f1f8f2;
    color:#506056;
    text-align:center;
}

.detail-rumah-highlights i{
    margin-bottom:4px;
    color:#19864f;
    font-size:22px;
}

.detail-rumah-highlights strong{
    color:#163d25;
    font-size:18px;
}

.detail-rumah-highlights span{
    font-size:11px;
}

.detail-rumah-features{
    padding:20px;
    border-left:4px solid #2ecc71;
    border-radius:0 12px 12px 0;
    background:#f8fbf8;
}

.detail-rumah-features ul{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:8px 24px;
    margin:0;
    padding-left:18px;
    color:#506056;
    font-size:13px;
    line-height:1.6;
}

.detail-rumah-contact{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:24px;
    padding:13px 20px;
    border-radius:10px;
    background:#25d366;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:background .25s ease, transform .25s ease;
}

.detail-rumah-contact:hover{
    background:#128c7e;
    color:#fff;
    transform:translateY(-2px);
}

@media (max-width:600px){
    .lihat-detail-btn{
        margin-left:0;
        width:100%;
        justify-content:center;
    }

    .detail-rumah-dialog{
        padding:26px 20px;
    }

    .detail-rumah-dialog h2{
        font-size:24px;
    }

    .detail-rumah-highlights{
        grid-template-columns:repeat(2, 1fr);
    }

    .detail-rumah-features ul{
        grid-template-columns:1fr;
    }
}

/* ================= SPLASH SCREEN ================= */

#loading{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("videos/backround.mp4");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:9999;

    transition:opacity .6s ease;
}

.visited-before #loading {
    display: none;
}

#loading img{
    width:1000px;
    max-width:90%;
    height:auto;
    animation:logoAnimation 2s ease-in-out;
}

@keyframes logoAnimation{

    0%{
        transform:scale(.2);
        opacity:0;
    }

    40%{
        transform:scale(1.15);
        opacity:1;
    }

    70%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}

/* ================= WEBSITE ================= */

#website{
    opacity:0;
    visibility:hidden;
    transition:opacity .8s ease, visibility .8s ease;
}

#website.show{
    opacity:1;
    visibility:visible;
}

#website.page-exit{
    opacity:0;
    transition:opacity .3s ease;
}

/* CATATAN PENTING:
   Properti "transform" pada #website SENGAJA dihapus.
   Elemen dengan "transform" (walau translateY(0)) membuat
   semua anak yang position:fixed (misalnya tombol WhatsApp
   melayang) ikut bergerak mengikuti #website, bukan menempel
   ke layar. Akibatnya tombol WA jadi tidak konsisten saat
   halaman di-scroll. Efek geser (slide up/down) pada transisi
   halaman jadi hilang, tapi efek fade (opacity) tetap ada. */

.page-transition{
    position:fixed;
    inset:0;
    background:#0b1c0f;
    pointer-events:none;
    opacity:0;
    transition:opacity .25s ease;
    z-index:9998;
}

.page-transition.active{
    opacity:1;
}



/* ================= HEADER ================= */

header{

    position:relative;

    width:100%;
    min-height:100vh;
    height:auto;

    display:flex;
    flex-direction:column;
    align-items:center;

    padding:130px 20px 60px;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("videos/backround.mp4");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

/* ================= NAVBAR ================= */

nav{

    position:absolute;

    top:10px;
    left:0;

    width:100%;

    padding:0 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:nowrap;

    z-index:100;

}

.logo img{

    width:140px;
    height:auto;

}

nav ul{

    display:flex;
    gap:35px;
    flex-wrap:nowrap;
    white-space:nowrap;

    list-style:none;

}

nav ul li a{

    color:#fff;
    text-decoration:none;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    padding:0 8px;
    transition:.3s;

}

nav ul li a:hover,
.footer-column ul li a:hover,
.kontak-info h3:hover,
.maps-btn a:hover,
.social a:hover{

    color:#2ecc71;
    transform:translateY(-1px);
}

.footer-column ul li a{
    color:#e9f2ea;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#63b86f;
}

.kontak-info h3{
    color:#0f8f3b;
    transition:.3s;
}

.kontak-info h3:hover{
    color:#2ecc71;
}


/* ================= HERO ================= */

.hero{

    position:relative;

    width:100%;
    max-width:900px;
    margin:0 auto;

    text-align:center;
    color:#fff;
    z-index:2;

}

.hero h1{

    font-size:clamp(28px, 6vw, 62px);
    letter-spacing:0.5px;
    text-transform:none;
    margin-bottom:10px;
    white-space:normal;

}

.hero h2{

    font-size:clamp(20px, 4.4vw, 46px);
    margin:8px 0 0;
    text-transform:none;
    white-space:nowrap;

}

.hero span{

    color:#2ecc71;
    text-transform:uppercase;

}

.hero p{

    width:680px;
    max-width:100%;
    margin:20px auto 0;

    line-height:32px;
    font-size:16px;

    transition:transform .3s ease, color .3s ease;
}

.hero h1,
.hero h2,
.hero span,
.hero p,
.produk-title h1,
.judul h1,
.judul-fasilitas h1,
.judul-kontak h1{
    transition:transform .3s ease, color .3s ease;
}

.hero h1:hover,
.hero h2:hover,
.hero p:hover,
.produk-title h1:hover,
.judul h1:hover,
.judul-fasilitas h1:hover,
.judul-kontak h1:hover{
    transform:translateY(-4px);
}

.hero span:hover{
    transform:scale(1.04);
    color:#a8f7a2;
}

.btn{

    display:inline-block;

    position:relative;
    z-index:3;
    margin-top:28px;

    padding:14px 42px;

    border-radius:40px;

    background:#2ecc71;

    color:#fff;

    text-decoration:none;

    font-weight:700;
    letter-spacing:0.5px;

}

.btn:hover{
    background:#219548;
}

html{
    scroll-behavior:smooth;
}

.hero-scroll-cue{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:9px;
    margin-top:32px;
    color:#fff;
    text-decoration:none;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    white-space:nowrap;
}

.hero-scroll-cue i{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border:2px solid rgba(255,255,255,.8);
    border-radius:50%;
    color:#fff;
    font-size:15px;
    animation:heroScrollArrow 1.2s ease-in-out infinite;
    transition:background .25s ease, color .25s ease;
}

.hero-scroll-cue:hover{
    color:#9af5b8;
}

.hero-scroll-cue:hover i{
    background:#2ecc71;
    border-color:#2ecc71;
}

@keyframes heroScrollArrow{
    0%, 100%{ transform:translateY(0); }
    50%{ transform:translateY(7px); }
}

/* ===========================
   BOOTH MARKETING
=========================== */

.booth-marketing{
    padding:100px 20px;
    display:flex;
    justify-content:center;
}

.booth-marketing-content{
    max-width:1100px;
    width:100%;
    background:rgba(10,25,15,.85);
    border:1px solid rgba(255,255,255,.15);
    border-radius:30px;
    padding:40px;
    text-align:center;
    backdrop-filter:blur(12px);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.booth-kicker{
    display:inline-block;
    color:#63d471;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:15px;
}

.booth-marketing-content h2{
    font-size:52px;
    color:#fff;
    margin-bottom:20px;
}

.booth-marketing-content p{
    color:#f5f5f5;
    font-size:20px;
    margin-bottom:35px;
    line-height:1.6;
}

.booth-marketing-content strong{
    display:block;
    margin-top:25px;
    color:#fff;
    font-size:18px;
    letter-spacing:1px;
}

/* ===========================
   GAMBAR BOOTH
=========================== */

.booth-image{
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    height: 800px;
}

.booth-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
    transition: transform .6s ease;
}
/* Zoom gambar saat hover */

.booth-image:hover img{
    transform:scale(1.08);
}

/* ===========================
   OVERLAY
=========================== */

.booth-overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;

    padding-bottom:40px;

    text-align:center;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.70),
        rgba(0,0,0,.20),
        transparent
    );

    color:#fff;
}

.booth-overlay h3{
    font-size:52px;
    font-weight:700;
    margin-bottom:10px;
    text-shadow:0 5px 15px rgba(0,0,0,.4);
}

.booth-overlay p{
    font-size:24px;
    margin-bottom:20px;
    color:#fff;
    text-shadow:0 3px 10px rgba(0,0,0,.4);
}

/* ===========================
   TOMBOL WHATSAPP
=========================== */

.booth-image .wa-label{

    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 30px;

    border-radius:50px;

    background:#25D366;
    color:#fff;

    text-decoration:none;
    font-weight:700;
    font-size:17px;

    box-shadow:0 12px 25px rgba(0,0,0,.35);

    opacity:0;

    transform:translateY(70px);

    transition:
        opacity .4s ease,
        transform .4s ease,
        background .3s ease;

    pointer-events:none;
}

.booth-image .wa-label i{
    font-size:22px;
}

/* Tombol muncul saat hover gambar */

.booth-image:hover .wa-label{

    opacity:1;

    transform:translateY(0);

    pointer-events:auto;

}

/* Hover tombol */

.booth-image .wa-label:hover{

    background:#1EBE5D;

    transform:translateY(0) scale(1.08);

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px){

    .booth-marketing-content{
        padding:25px;
    }

    .booth-marketing-content h2{
        font-size:34px;
    }

    .booth-marketing-content p{
        font-size:17px;
    }

    .booth-overlay h3{
        font-size:34px;
    }

    .booth-overlay p{
        font-size:18px;
    }

    .booth-image .wa-label{
        padding:12px 24px;
        font-size:15px;
    }

}

.whatsapp-float{
    position:fixed !important;
    right:24px;
    bottom:24px;
    z-index:99999;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:132px;
    min-height:48px;
    padding:12px 20px;
    border-radius:28px;
    background:#25d366;
    box-shadow:0 8px 24px rgba(0,0,0,.22);
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition:transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover{
    background:#1da851;
    box-shadow:0 10px 28px rgba(0,0,0,.28);
    color:#fff;
    transform:translateY(-3px);
}

@media (max-width:600px){
    .hero-scroll-cue{
        margin-top:25px;
        font-size:9px;
        letter-spacing:1px;
    }

    .hero-scroll-cue i{
        width:34px;
        height:34px;
    }

    .booth-marketing{
        min-height:620px;
        padding:60px 16px;
    }

    .booth-marketing-content{
        padding:24px 16px;
        border-radius:18px;
    }

    .booth-marketing p{
        font-size:14px;
    }

    .booth-marketing img{
        max-height:420px;
    }

    .whatsapp-float{
        right:16px;
        bottom:16px;
        min-width:0;
        min-height:44px;
        padding:10px 16px;
        font-size:14px;
    }
}

/* ================= FITUR ================= */

.fitur-wrapper{

    position:relative;

    width:calc(100% - 40px);
    max-width:980px;

    margin:50px auto 0;

    padding:20px 22px;

    background:rgba(19,23,32,0.45);
    backdrop-filter:blur(10px);
    border-radius:30px;
    box-shadow:0 22px 60px rgba(0,0,0,.22);
    border:2px solid #009951;
    z-index:0;

}

.fitur{

    display:flex;
    flex-wrap:wrap;
    gap:24px 18px;
    justify-content:center;
    align-items:flex-start;

}

.card{

    flex:1 1 220px;
    max-width:280px;
    min-width:200px;
    background:transparent;
    border-radius:16px;
    padding:16px 14px;
    text-align:center;
    border:none;
    box-shadow:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

}

.card img{

    display:block;
    width:60px;
    height:60px;
    margin:0 auto 14px;
    padding:16px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 14px 30px rgba(0,0,0,.12);
    object-fit:contain;
    transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.card:hover img{
    transform:translateY(-6px) scale(1.08);
    box-shadow:0 20px 38px rgba(0,0,0,.2);
    background:#f5fff5;
}

.news-card img,
.fasilitas-card i,
.info-item i,
.spesifikasi div i{
    transition:transform .3s ease, color .3s ease, background .3s ease;
}

.news-card:hover img,
.fasilitas-card:hover i,
.info-item:hover i,
.spesifikasi div:hover i{
    transform:translateY(-4px) scale(1.05);
    color:#2ecc71;
}

.card h3{

    margin-bottom:12px;
    color:#fff;
    font-size:18px;

}

.card p{
    color:#f0f4ff;
    line-height:1.8;
    font-size:14px;
    margin:0 auto;
    max-width:220px;
}
/*================ PRODUK =================*/

/*==================================================
                HALAMAN PRODUK
==================================================*/

.produk-header{

    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("images/hero.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:120px 20px 70px;

}

/*==================================================
                    JUDUL
==================================================*/

.produk-title{

    text-align:center;

    color:#fff;

    margin-bottom:45px;

}

.produk-title h1{

    font-size:clamp(2.2rem,5vw,4rem);

    margin-bottom:12px;

}

.produk-title p{

    font-size:18px;

    color:#f5f5f5;

}

/*==================================================
                    CARD
==================================================*/

.produk-card{

    width:100%;

    max-width:1050px;

    margin:35px auto;

    background:#fff;

    border-radius:20px;

    display:flex;

    align-items:center;

    gap:30px;

    padding:25px;

    box-shadow:0 18px 35px rgba(0,0,0,.25);

}

/*==================================================
                    FOTO
==================================================*/

.produk-image{

    flex:1;

}

.produk-image img{

    width:100%;

    max-width:420px;

    display:block;

    border-radius:15px;

    transition:.35s;

}

.produk-image img:hover{

    transform:scale(1.04);

    box-shadow:0 15px 30px rgba(0,0,0,.25);

}

/*==================================================
                DETAIL PRODUK
==================================================*/

.produk-detail{

    flex:1;

    color:#333;

}

.status{

    display:inline-block;

    background:#16a34a;

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}

.produk-detail h2{

    margin-top:15px;

    font-size:34px;

    color:#222;

}

.produk-detail h3{

    margin:12px 0;

    font-size:28px;

    color:#16a34a;

}

.produk-detail p{

    font-size:16px;

    color:#555;

    line-height:30px;

    margin:18px 0;

}

/*==================================================
                SPESIFIKASI
==================================================*/

.spesifikasi{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:25px 0;

}

.spesifikasi div{

    display:flex;

    align-items:center;

    gap:12px;

    color:#333;

}

.spesifikasi i{

    color:#16a34a;

    font-size:22px;

}

.spesifikasi strong{

    display:block;

    font-size:22px;

    color:#222;

}

/*==================================================
                TOMBOL WHATSAPP
==================================================*/

.wa{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:15px 30px;

    background:#1ebd59;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:700;

    overflow:hidden;

    position:relative;

    transition:.35s;

    box-shadow:0 12px 25px rgba(30,189,89,.35);

}

.wa::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:120%;

    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-25deg);

    transition:.6s;

}

.wa:hover::before{

    left:130%;

}

.wa:hover{

    background:#18a84d;

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(30,189,89,.45);

}

.wa i{

    font-size:22px;

}

/*==================================================
                KEUNGGULAN
==================================================*/

.keunggulan{

    width:100%;

    max-width:1050px;

    margin:35px auto;

    background:#fff;

    border-radius:20px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    padding:30px;

    box-shadow:0 18px 35px rgba(0,0,0,.25);

    text-align:center;

}

.keunggulan div{

    padding:15px;

}

.keunggulan i{

    font-size:42px;

    color:#16a34a;

    margin-bottom:15px;

}

.keunggulan h4{

    font-size:18px;

    color:#222;

    margin-bottom:10px;

}

.keunggulan p{

    font-size:14px;

    color:#666;

    line-height:25px;

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:992px){

    .produk-card{

        flex-direction:column;

        text-align:center;

    }

    .produk-image img{

        max-width:100%;

    }

    .spesifikasi{

        grid-template-columns:repeat(2,1fr);

    }

    .keunggulan{

        grid-template-columns:repeat(2,1fr);

    }

}

/*==================================================
                HP
==================================================*/

@media(max-width:768px){

    .produk-header{

        padding:110px 20px 60px;

    }

    .produk-title h1{

        font-size:34px;

    }

    .produk-title p{

        font-size:16px;

    }

    .produk-card{

        padding:20px;

    }

    .produk-detail h2{

        font-size:28px;

    }

    .produk-detail h3{

        font-size:24px;

    }

    .spesifikasi{

        grid-template-columns:1fr;

    }

    .keunggulan{

        grid-template-columns:1fr;

    }

    .wa{

        width:100%;

        justify-content:center;

    }

}
/* ================= HALAMAN BERITA ================= */

.berita-header{

min-height:100vh;

background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url("images/hero.png");

background-size:cover;
background-position:center;

padding-bottom:60px;

}

.active{

color:#33d06f;

}

.judul{

    margin-top:30px;
    text-align:center;
    color:#fff;
}

.judul h1{

font-size:clamp(28px, 6vw, 55px);

margin-bottom:10px;

}

.judul p{

font-size:18px;

}
.berita-container{
    width:90%;
    max-width:1200px;
    margin:20px auto 40px;
    display:flex;
    gap:30px;
}

.news-section{
    width:92%;
    max-width:1200px;
    margin:50px auto 80px;
    padding:50px 48px;
    border-radius:32px;
    background:rgba(255,255,255,.98);
    box-shadow:0 28px 64px rgba(0,0,0,.10);
}

.berita-intro{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
}

.berita-intro span{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    color:#1d7c3d;
    letter-spacing:2.5px;
    text-transform:uppercase;
    margin-bottom:20px;
    padding-bottom:10px;
}

.berita-intro h2{
    font-size:44px;
    margin-bottom:18px;
    color:#111;
    font-weight:800;
    line-height:1.2;
}

.berita-intro p{
    color:#5a5a5a;
    font-size:17px;
    line-height:1.8;
    font-weight:500;
}

.news-featured{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:28px;
    align-items:stretch;
    margin-bottom:50px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 16px 40px rgba(0,0,0,.08);
}

.news-featured-image{
    position:relative;
    overflow:hidden;
    background:#f0f0f0;
    border-radius:24px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:inset 0 0 0 2px rgba(0,0,0,.05);
}

.news-featured-badge{
    position:absolute;
    top:16px;
    left:16px;
    background:#19864f;
    color:#fff;
    padding:8px 16px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    z-index:10;
    box-shadow:0 4px 12px rgba(25, 134, 79, 0.3);
}

.news-featured-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    min-height:280px;
    position:relative;
    z-index:2;
    border-radius:24px;
}

.news-featured-content{
    padding:36px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border-radius:0;
    background:#fff;
    box-shadow:none;
}

.news-meta{
    color:#7a8b6f;
    font-size:13px;
    margin-bottom:16px;
    font-weight:500;
}

.news-featured-content h3{
    font-size:28px;
    margin-bottom:16px;
    color:#0f1d14;
    font-weight:800;
    line-height:1.3;
}

.news-featured-content p{
    color:#5b5f5f;
    line-height:1.7;
    margin-bottom:22px;
    font-size:14px;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.news-card-small{
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    transition:transform .3s ease, box-shadow .3s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.news-card-small:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 40px rgba(0,0,0,.12);
}

.news-card-small img{
    width:100%;
    height:160px;
    object-fit:cover;
    background:#f0f0f0;
    flex-shrink:0;
    display:block;
    position:relative;
    z-index:3;
    border-bottom:1px solid #f0f0f0;
    border-radius:16px 16px 0 0;
}

.news-card-small-content{
    padding:18px 16px;
    display:flex;
    flex-direction:column;
    flex:1;
    gap:8px;
}

.news-date{
    display:inline-block;
    color:#8a9a7f;
    font-size:11px;
    font-weight:600;
    letter-spacing:0.5px;
}

.news-card-small h3{
    font-size:15px;
    margin:0;
    color:#111;
    font-weight:700;
    line-height:1.3;
    overflow:hidden;
    display:-webkit-box;
        line-clamp: 2;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    min-height:36px;
}

.news-card-small p{
    flex:1;
    color:#666;
    line-height:1.4;
    margin:0;
    font-size:12px;
    overflow:hidden;
    display:-webkit-box;
      line-clamp: 2;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    word-wrap:break-word;
}

.btn-news{
    display:inline-block;
    background:#19864f;
    color:#fff;
    padding:10px 20px;
    border-radius:6px;
    text-decoration:none;
    font-weight:700;
    letter-spacing:.2px;
    transition:background .3s ease;
    align-self:flex-start;
    margin-top:auto;
    font-size:13px;
}

.btn-news:hover{
    background:#14653c;
}

.btn-small{
    padding:8px 16px;
    font-size:12px;
}

@media (max-width:768px){
    .news-featured{
        grid-template-columns:1fr;
    }

    .news-featured-image img{
        min-height:210px;
        max-height:210px;
    }
}

/* Background Semua Halaman */

.page-background{
    min-height:100vh;
    width:100%;

    background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("images/hero.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    position:relative;
}

/* background-attachment:fixed sering bermasalah/tidak didukung
   dengan baik di HP (terutama iOS Safari), jadi dimatikan di layar kecil */
@media (max-width:768px){
    .page-background{
        background-attachment:scroll;
    }
}

.home-page-background{
    background:transparent;
}
/*================ HALAMAN FASILITAS =================*/

.fasilitas-header{

    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("images/hero.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:120px 20px 80px;

}

/*==================================================
                    JUDUL
==================================================*/

.judul-fasilitas{

    max-width:850px;

    margin:0 auto 50px;

    text-align:center;

    color:#fff;

}

.judul-fasilitas h1{

    font-size:clamp(2.3rem,5vw,4rem);

    margin-bottom:15px;

    font-weight:700;

}

.judul-fasilitas p{

    font-size:18px;

    line-height:30px;

    color:#f2f2f2;

}

/*==================================================
                    GRID
==================================================*/

.fasilitas-grid{

    width:100%;

    max-width:1280px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

/*==================================================
                    CARD
==================================================*/

.fasilitas-card{

    background:rgba(255,205,40,.18);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.20);

    border-radius:18px;

    padding:25px;

    text-align:center;

    color:#fff;

    transition:.35s;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    min-height:360px;

}

.fasilitas-card:hover{

    transform:translateY(-8px);

    border-color:#2ecc71;

    box-shadow:0 18px 35px rgba(0,0,0,.35);

}

/*==================================================
                    ICON
==================================================*/

.fasilitas-card i{

    font-size:48px;

    color:#00e676;

    margin-bottom:18px;

    transition:.35s;

}

.fasilitas-card:hover i{

    transform:scale(1.12);

}

/*==================================================
                    FOTO
==================================================*/

.fasilitas-img{

    width:80px;

    height:80px;

    object-fit:contain;

    margin-bottom:18px;

    transition:.35s;

}

.fasilitas-card:hover .fasilitas-img{

    transform:scale(1.08);

}

/*==================================================
                    JUDUL CARD
==================================================*/

.fasilitas-card h3{

    font-size:20px;

    font-weight:700;

    margin-bottom:15px;

    min-height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

}

/*==================================================
                    DESKRIPSI
==================================================*/

.fasilitas-card p{

    font-size:15px;

    line-height:28px;

    color:#f5f5f5;

}

/*==================================================
                    TABLET
==================================================*/

@media(max-width:992px){

    .fasilitas-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/*==================================================
                    HP
==================================================*/

@media(max-width:768px){

    .fasilitas-header{

        padding:110px 20px 60px;

    }

    .judul-fasilitas h1{

        font-size:34px;

    }

    .judul-fasilitas p{

        font-size:16px;

        line-height:28px;

    }

    .fasilitas-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .fasilitas-card{

        min-height:auto;

        padding:25px;

    }

    .fasilitas-img{

        width:70px;

        height:70px;

    }

    .fasilitas-card i{

        font-size:42px;

    }

}
/*================ KONTAK =================*/

.kontak-header{

min-height:100vh;

background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url(images/hero.png);

background-size:cover;
background-position:center;

padding-bottom:60px;

}

.judul-kontak{
    margin-top:30px;
    text-align:center;
    color:#fff;
}

.judul-kontak h1{

font-size:clamp(28px, 6vw, 55px);

margin-bottom:10px;

}

.kontak-container{
    width:90%;
    max-width:1200px;
    margin:20px auto 40px;
    display:flex;
    gap:30px;
}

.kontak-info{

width:38%;

background:white;

padding:30px;

border-radius:20px;

}

.kontak-info h2{

color:#0f8f3b;

margin-bottom:15px;

}

.kontak-info p,
.kontak-info .info-item div p,
.kontak-info .info-item p,
.maps-btn p{
    color:#42524c !important;
    font-size:15px;
    line-height:1.8;
    opacity:1 !important;
    visibility:visible !important;
    overflow-wrap:break-word;
    word-break:break-word;
}

.kontak-info h3,
.kontak-info .info-item h3{
    color:#0f8f3b !important;
    opacity:1 !important;
    visibility:visible !important;
}

/* Pengaman tambahan: pastikan seluruh baris info kontak
   (ikon, judul, teks) selalu tampil sepenuhnya, tidak
   tersembunyi oleh efek opacity/visibility dari animasi lain */
.kontak-info .info-item{
    opacity:1 !important;
    visibility:visible !important;
}

.info-item{

display:flex;
align-items:flex-start;
gap:18px;

background:#fff;
padding:20px 24px;
border-radius:15px;
margin-bottom:20px;

width:100%;
min-height:95px;

}

.info-item > div{
    min-width:0;
    flex:1;
}
.info-item:last-child{
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}

.info-item i{

width:55px;

height:55px;

min-width:55px;

background:#dff5e7;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

line-height:1;

color:#0f8f3b;

flex-shrink:0;

}

.social{

display:flex;

gap:20px;

margin-top:20px;

}

.social a{

width:55px;

height:55px;

border-radius:50%;

background:#eee;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:#0f8f3b;

text-decoration:none;

transition:.3s;

}

.social a:hover{

background:#0f8f3b;

color:white;

}
/* =========================
   LOKASI
========================= */

.lokasi-box{
    flex:1;
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

/* Maps + Foto */
.lokasi-wrapper{
    display:flex;
    gap:20px;
    align-items:stretch;
}

/* MAPS */
.maps-box{
    flex:2;
    min-width:0;
    height:420px;
    overflow:hidden;
    border-radius:15px;
}

.maps-box iframe{
    width:100%;
    height:100%;
    display:block;
    border:none;
}

/* FOTO TENDA */
.tenda-box{
    flex:1;
    min-width:0;
    height:420px;
    overflow:hidden;
    border-radius:15px;
}

.tenda-box img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:.4s;
}

.tenda-box:hover img{
    transform:scale(1.05);
}

/* Tombol bawah maps */
.maps-btn{
    margin-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#eef9f1;
    padding:20px;
    border-radius:15px;
}

.maps-btn h3{
    color:#0f8f3b;
    margin-bottom:5px;
}

.maps-btn p{
    color:#666;
    margin:0;
}

.maps-btn a{
    background:#0f8f3b;
    color:#fff;
    text-decoration:none;
    padding:13px 24px;
    border-radius:10px;
    transition:.3s;
}

.maps-btn a:hover{
    background:#0a6b2d;
}

/* RESPONSIVE */

/* TABLET */
@media(max-width:992px){

    .lokasi-wrapper{
        flex-direction:column;
        gap:16px;
    }

    .maps-box,
    .tenda-box{
        flex:none;
        width:100%;
        height:300px;
    }

    .maps-btn{
        flex-direction:column;
        gap:15px;
        align-items:flex-start;
    }

    .maps-btn a{
        width:100%;
        text-align:center;
    }

}

/* HP */
@media(max-width:600px){

    .maps-box,
    .tenda-box{
        height:240px;
    }

}

/* HP KECIL */
@media(max-width:400px){

    .maps-box,
    .tenda-box{
        height:200px;
    }

}


/*==============================
   FLOATING WHATSAPP PREMIUM
===============================*/

.wa-floating{
    position:fixed !important;
    right:20px;
    bottom:25px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:99999;
    text-decoration:none;
}

.wa-floating img{
    width:95px;          /* lebih besar */
    height:95px;
    filter:drop-shadow(0 12px 25px rgba(0,0,0,.35));
    animation:waFloat 2s ease-in-out infinite;
    transition:.3s;
}

.wa-floating:hover img{
    transform:scale(1.12) rotate(-8deg);
}

.wa-label{
    background:#25D366;
    color:#fff;
    padding:12px 18px;
    border-radius:30px;
    font-size:16px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
    white-space:nowrap;
}

.wa-floating:hover .wa-label{
    background:#128C7E;
    transform:translateX(-5px);
}

@keyframes waFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}

/* HP */
@media(max-width:768px){

    .wa-floating img{
        width:75px;
        height:75px;
    }

    .wa-label{
        font-size:14px;
        padding:10px 15px;
    }

}
/*======================================
     PREMIUM BERITA MENU
=======================================*/

.news-nav{

    position:relative;

}

.news-nav a{

    position:relative;

    display:inline-block;

    color:white;

    transition:.35s;

}

.news-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    border-radius:20px;

    background:#00d26a;

    transition:.4s;

}

.news-nav:hover a::after{

    width:100%;

}

.news-dot{

    position:absolute;

    top:-4px;

    right:-8px;

    width:10px;

    height:10px;

    border-radius:50%;

    background:#00ff73;

    animation:blink 1.5s infinite;

}

.news-badge{

    position:absolute;

    top:-24px;

    right:-18px;

    background:#ff2e2e;

    color:white;

    font-size:10px;

    font-weight:700;

    padding:3px 7px;

    border-radius:30px;

    letter-spacing:1px;

    box-shadow:0 5px 15px rgba(255,0,0,.35);

}

.news-tooltip{

    position:absolute;

    top:42px;

    left:50%;

    transform:translateX(-50%) translateY(10px);

    background:white;

    color:#222;

    font-size:13px;

    padding:10px 16px;

    border-radius:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    white-space:nowrap;

}

.news-tooltip::before{

    content:"";

    position:absolute;

    top:-8px;

    left:50%;

    transform:translateX(-50%);

    border-left:8px solid transparent;

    border-right:8px solid transparent;

    border-bottom:8px solid white;

}

.news-nav:hover .news-tooltip{

    opacity:1;

    visibility:visible;

    transform:translateX(-50%) translateY(0);

}

@keyframes blink{

    0%,100%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(0,255,115,.6);

    }

    50%{

        transform:scale(1.3);

        box-shadow:0 0 0 10px rgba(0,255,115,0);

    }

}
/*==========================
     VIDEO BACKGROUND
==========================*/

.video-background{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    overflow:hidden;

    z-index:-2;

}
.video-background video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.45);

}

/* Semua isi website di atas video */

#website{

    position:relative;

    z-index:2;

}
/*=========================================
        RESPONSIVE HP & TABLET
=========================================*/

@media screen and (max-width:1024px){

    nav{
        padding:15px 25px;
        flex-wrap:wrap;
    }

    nav ul{
        gap:18px;
    }

    .hero p{
        width:90%;
    }

    .produk-card,
    .keunggulan,
    .kontak-container{
        width:95%;
    }

    .booth-image{
        height:500px;
    }

    .news-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .fasilitas-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}
@media screen and (max-width:768px){

    header{

        height:auto;

        min-height:100vh;

        padding:30px 20px 40px;

        display:flex;

        flex-direction:column;

    }

    nav{

        position:relative;

        flex-direction:column;

        padding:20px;

    }

    .logo img{

        width:110px;

    }

    nav ul{

        margin-top:20px;

        flex-wrap:wrap;

        justify-content:center;

        gap:15px;

    }

    .hero{

        position:relative;

        top:auto;
        left:auto;
        transform:none;

        width:90%;

        margin:30px auto 0;

    }

    .hero p{

        width:100%;

        font-size:15px;

        line-height:28px;

    }

    .btn{

        padding:14px 28px;

    }

    .fitur-wrapper{

        position:relative;

        bottom:auto;
        left:auto;
        transform:none;

        margin:50px auto 0;

        width:95%;

    }

    .fitur{

        flex-direction:column;

    }

    .card{

        width:100%;

    }

    .produk-card{

        flex-direction:column;

        width:95%;

    }

    .produk-image img{

        width:100%;

    }

    .spesifikasi{

        grid-template-columns:1fr;

    }

    .keunggulan{

        grid-template-columns:repeat(2,1fr);

        width:95%;

    }

    .news-grid{

        grid-template-columns:1fr;

    }

    .news-featured{

        grid-template-columns:1fr;

    }

    .fasilitas-grid{

        grid-template-columns:1fr;

    }

    .kontak-container{

        flex-direction:column;

    }

    .kontak-info{

        width:100%;

    }

    .lokasi-box{

        width:100%;

    }

    .maps-btn{

        flex-direction:column;

        gap:20px;

        text-align:center;

    }

    .booth-image{

        height:350px;

    }

    .booth-overlay h3{

        font-size:30px;

    }

    .booth-overlay p{

        font-size:17px;

    }

}
@media screen and (max-width:480px){

    .hero p{

        font-size:14px;

    }

    .keunggulan{

        grid-template-columns:1fr;

    }

}
/* ============================================================
   ADMIN DASHBOARD - GREEN UBUD CIKARANG
   File terpisah khusus untuk admin.php
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', Arial, Helvetica, sans-serif;
}

body{
    background:#0b1c0f;
    color:#fff;
    min-width:320px;
}

a{
    color:inherit;
}

/* ================= LAYOUT DASAR ================= */

.admin-page{
    min-height:100vh;
    padding:40px 20px;
}

.admin-container{
    max-width:1180px;
    margin:0 auto;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;
    padding:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

/* ================= HEADER ================= */

.admin-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:30px;
    padding-bottom:24px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.admin-header h1{
    font-size:clamp(24px, 4vw, 36px);
    margin-bottom:8px;
    color:#fff;
}

.admin-header p{
    color:#d4e8d0;
    font-size:14px;
}

/* ================= PESAN NOTIFIKASI ================= */

.admin-message{
    background:#1a3a1f;
    border:1px solid #2d7b45;
    color:#e8f8e6;
    padding:16px 20px;
    border-radius:16px;
    margin-bottom:30px;
    font-size:14px;
}

/* ================= FORM TAMBAH DATA ================= */

.admin-form{
    display:grid;
    gap:18px;
    margin-bottom:30px;
    padding:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
}

.admin-form h2{
    color:#fff;
    font-size:20px;
    margin-bottom:4px;
}

.admin-form label{
    font-weight:700;
    color:#cbe7c7;
    font-size:14px;
    margin-bottom:-8px;
}

.admin-form input[type="text"],
.admin-form input[type="file"],
.admin-form textarea{
    width:100%;
    padding:14px 16px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:14px;
    font-family:inherit;
}

.admin-form input[type="text"]:focus,
.admin-form input[type="file"]:focus,
.admin-form textarea:focus{
    outline:none;
    border-color:#2ecc71;
    background:rgba(255,255,255,.09);
}

.admin-form textarea{
    resize:vertical;
    min-height:120px;
    line-height:1.6;
}

.admin-form input[type="text"]::placeholder,
.admin-form textarea::placeholder{
    color:rgba(255,255,255,.5);
}

/* tombol submit di form ditempatkan di kiri, tidak melebar penuh */
.admin-form button[type="submit"]{
    justify-self:start;
}

/* ================= TOMBOL ================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 28px;
    border:none;
    border-radius:12px;
    background:#2ecc71;
    color:#fff;
    font-weight:700;
    font-size:14px;
    text-decoration:none;
    cursor:pointer;
    transition:transform .2s ease, background .2s ease, opacity .2s ease;
}

.btn:hover{
    background:#219548;
    transform:translateY(-2px);
}

.btn-secondary{
    background:#1f7b35;
}

.btn-secondary:hover{
    background:#186228;
}

.btn-small{
    padding:9px 16px;
    font-size:13px;
    border-radius:10px;
}

.btn-danger{
    background:#dc3545;
}

.btn-danger:hover{
    background:#b3212c;
}

.btn:active,
.btn-secondary:active,
.btn-small:active,
.btn-danger:active{
    transform:translateY(0);
    opacity:.9;
}

/* ================= TABEL DATA ================= */

.admin-table-wrap{
    overflow-x:auto;
    margin-bottom:36px;
    -webkit-overflow-scrolling:touch;
}

.admin-table-wrap h2{
    font-size:20px;
    margin-bottom:14px;
    color:#fff;
}

.admin-table{
    width:100%;
    min-width:640px;
    border-collapse:collapse;
    background:rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
}

.admin-table th,
.admin-table td{
    padding:16px;
    text-align:left;
    vertical-align:top;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:14px;
}

.admin-table th{
    color:#cde5c6;
    background:rgba(255,255,255,.05);
    font-size:12px;
    letter-spacing:.5px;
    text-transform:uppercase;
    white-space:nowrap;
}

.admin-table td{
    color:#ebf5eb;
}

.admin-table tbody tr:hover{
    background:rgba(255,255,255,.04);
}

.admin-table img{
    width:90px;
    height:70px;
    border-radius:12px;
    object-fit:cover;
    display:block;
}

.admin-table .no-image{
    display:inline-block;
    color:rgba(255,255,255,.45);
    font-size:12px;
    font-style:italic;
}

/* form update di dalam sel tabel */
.inline-form{
    display:grid;
    gap:10px;
}

.inline-form input[type="text"]{
    width:100%;
    max-width:220px;
    padding:10px 12px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:13px;
    font-family:inherit;
}

.admin-table textarea{
    width:100%;
    min-width:180px;
    max-width:260px;
    padding:10px 12px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:13px;
    font-family:inherit;
    resize:vertical;
}

.admin-table input[type="file"]{
    margin-top:8px;
    font-size:12px;
    color:#cbe7c7;
    max-width:200px;
}

.action-buttons{
    display:flex;
    flex-direction:column;
    gap:8px;
    align-items:flex-start;
}

.action-buttons form{
    margin:0;
}

/* ================= RESPONSIVE - TABLET ================= */

@media screen and (max-width:1024px){
    .admin-container{
        padding:24px;
    }
}

/* ================= RESPONSIVE - HP ================= */

@media screen and (max-width:768px){

    .admin-page{
        padding:20px 12px;
    }

    .admin-container{
        padding:18px;
        border-radius:18px;
    }

    .admin-header{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

    .admin-header .btn{
        width:100%;
        text-align:center;
    }

    .admin-form{
        padding:18px;
    }

    .admin-table{
        min-width:560px;
    }
}

@media screen and (max-width:480px){

    .admin-form input[type="text"],
    .admin-form input[type="file"],
    .admin-form textarea{
        font-size:13px;
        padding:12px 14px;
    }

    .btn{
        padding:11px 20px;
        font-size:13px;
    }

    .admin-table th,
    .admin-table td{
        padding:12px;
        font-size:13px;
    }
}
/* ===========================
   RESPONSIVE MOBILE
=========================== */

@media (max-width:768px){

    body{
        overflow-x:hidden;
    }

    .container{
        width:92%;
        margin:auto;
    }

    section{
        padding:60px 20px;
    }

    h1{
        font-size:30px;
    }

    h2{
        font-size:24px;
    }

    p{
        font-size:15px;
        line-height:1.7;
    }

}
/* ===========================
   FLOATING DEVELOPER
=========================== */

.developer-floating{
    position: fixed;
    right: 25px;
    bottom: 145px; /* Naik sekitar 25px */
    width: 65px;
    height: 65px;
    background: #0f8f3b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    transition: .3s;
    z-index: 9999;
}

.developer-floating:hover{
    transform:scale(1.1);
    background:#0b7730;
}

@media (max-width:768px){

    .developer-floating{
        width:58px;
        height:58px;
        right:20px;
        bottom:125px; /* Naik dari sebelumnya */
        font-size:24px;
    }

}