/* ===== GOOGLE FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ===== ROOT VARIABLES ===== */
:root{
    --primary:#059669;
    --primary-dark:#047857;
    --accent:#f59e0b;
    --bg:#f8fafc;
    --danger:#ef4444;
    --text:#0f172a;
}

/* ===== BASE ===== */
*{
    box-sizing:border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin:0;
}

/* ===== COLOR UTILITIES ===== */
.text-primary { color: var(--primary); }
.bg-primary { background-color: var(--primary); }
.bg-primary-dark { background-color: var(--primary-dark); }

/* hover fix (TANPA ESCAPE) */
.hover-bg-primary-dark:hover {
    background-color: var(--primary-dark);
}

/* ===== CARD ===== */
.service-card {
    transition: transform .25s ease, box-shadow .25s ease;
    border-radius: 14px;
    background:white;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.08), 
                0 4px 6px -2px rgba(0,0,0,.04);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 30px -8px rgba(0,0,0,.18),
                0 12px 12px -8px rgba(0,0,0,.10);
}

/* ===== FACILITY LIST ===== */
.facility-list {
    list-style:none;
    padding:0;
    margin-top:1rem;
}

.facility-item {
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:.45rem;
    font-size:.95rem;
}

.icon-check {
    color:var(--primary);
    font-weight:900;
}

.icon-x {
    color:var(--danger);
    font-weight:900;
}

/* ===== PREMIUM RING ===== */
.premium-ring {
    border:3px solid var(--primary);
    border-radius:16px;
}

/* ===== HERO ===== */
.hero-bg-gradient {
    position:relative;
    overflow:hidden;
    background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
}

/* overlay diperbaiki: ga nutup klik */
.hero-bg-gradient::before {
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.12);
    pointer-events:none;   /* PENTING! */
}

.hero-content {
    position:relative;
    z-index:2;
}

/* ===== CTA BUTTON ANIMATION ===== */
@keyframes pulse-once {
    0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
    70%  { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(255,255,255,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* jangan infinite, bikin berat server */
.cta-pulse {
    animation: pulse-once 2s ease-out 2;
}

/* ===== BUTTON ===== */
.btn {
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    transition:.2s;
}

.btn-primary {
    background:var(--primary);
    color:white;
}

.btn-primary:hover{
    background:var(--primary-dark);
    transform:translateY(-1px);
}


/* ===== QUILL ARTICLE STYLE ===== */

.article-content{
    font-size:17px;
    line-height:1.8;
    color:#222;
}

/* heading */
.article-content h1{font-size:34px;font-weight:700;margin-top:30px;margin-bottom:10px;}
.article-content h2{font-size:28px;font-weight:700;margin-top:26px;margin-bottom:8px;}
.article-content h3{font-size:23px;font-weight:700;margin-top:22px;margin-bottom:6px;}

/* paragraph */
.article-content p{
    margin:14px 0;
}

/* list */
.article-content ul{
    list-style:disc;
    padding-left:24px;
    margin:14px 0;
}
.article-content ol{
    list-style:decimal;
    padding-left:24px;
    margin:14px 0;
}
.article-content li{
    margin:6px 0;
}

/* image */
.article-content img{
    max-width:100%;
    margin:22px auto;
    border-radius:14px;
    display:block;
}

/* table */
.table-wrapper{
    overflow-x:auto;
    margin:24px 0;
}
.article-content table{
    border-collapse:collapse;
    width:100%;
}
.article-content table td,
.article-content table th{
    border:1px solid #ddd;
    padding:10px;
}
.article-content table th{
    background:#f3f4f6;
    font-weight:600;
}
