/*==================================================
                LOVE METER (statis - dari aku)
==================================================*/

.meter{
    padding:110px 0;
}

.meter-list{
    max-width:680px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:26px;
}

.meter-label{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    margin-bottom:9px;
    color:var(--ink-soft);
    font-weight:500;
}

.meter-bar{
    width:100%;
    height:10px;
    border-radius:20px;
    background:var(--border);
    overflow:hidden;
}

.meter-fill{
    height:100%;
    width:var(--val);
    border-radius:20px;
    background:var(--primary);
    animation:fillBar 1.6s ease forwards;
    transform-origin:left;
}

@keyframes fillBar{
    from{ transform:scaleX(0); }
    to{ transform:scaleX(1); }
}

/*==================================================
        LOVE METER — GILIRAN DIA (interaktif)
==================================================*/

.meter-you{
    padding:0 0 110px;
}

.meter-you-box{
    max-width:680px;
    margin:auto;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:24px;
    padding:40px;
    box-shadow:var(--shadow-sm);
}

.meter-you-intro{
    text-align:center;
    margin-bottom:36px;
}

.meter-you-intro h3{
    font-family:var(--font-display);
    font-size:26px;
    color:var(--ink);
    margin-bottom:10px;
}

.meter-you-intro p{
    color:var(--ink-soft);
    font-size:14.5px;
    line-height:1.7;
    font-weight:300;
}

.meter-you-item{
    margin-bottom:26px;
}

.meter-you-item label{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    color:var(--ink);
    font-weight:500;
    margin-bottom:10px;
}

.meter-you-item label .val{
    color:var(--primary);
    font-weight:700;
}

.meter-you-item input[type="range"]{
    -webkit-appearance:none;
    width:100%;
    height:8px;
    border-radius:20px;
    background:var(--border);
    outline:none;
}

.meter-you-item input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:22px;
    height:22px;
    border-radius:50%;
    background:var(--primary);
    cursor:pointer;
    box-shadow:0 4px 12px rgba(181,73,91,.35);
    border:3px solid #fff;
}

.meter-you-item input[type="range"]::-moz-range-thumb{
    width:22px;
    height:22px;
    border-radius:50%;
    background:var(--primary);
    cursor:pointer;
    border:3px solid #fff;
    box-shadow:0 4px 12px rgba(181,73,91,.35);
}

.meter-you-name{
    width:100%;
    font-family:inherit;
    font-size:14.5px;
    padding:14px 18px;
    border-radius:12px;
    border:1px solid var(--border);
    background:var(--bg);
    color:var(--ink);
    margin-bottom:30px;
}

.meter-you-actions{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.meter-you-save{
    font-family:inherit;
    font-size:14.5px;
    font-weight:600;
    padding:14px 34px;
    border-radius:50px;
    background:var(--primary);
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.meter-you-save:hover{
    transform:translateY(-3px);
}

.meter-you-status{
    text-align:center;
    margin-top:18px;
    font-size:13px;
    color:var(--primary);
    min-height:16px;
}

.meter-you-result{
    margin-top:28px;
    padding-top:28px;
    border-top:1px dashed var(--border);
    display:none;
}

.meter-you-result.show{
    display:block;
}

.meter-you-result p{
    text-align:center;
    font-size:14px;
    color:var(--ink-soft);
    line-height:1.7;
}

/*==================================================
                DATE PLANNER
==================================================*/

.dateplan{
    padding:110px 0;
}

.dateplan-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.plan-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:18px;
    padding:32px 20px;
    text-align:center;
    box-shadow:var(--shadow-sm);
    transition:.35s;
}

.plan-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

.plan-card .icon{
    font-size:34px;
    margin-bottom:14px;
}

.plan-card h3{
    font-family:var(--font-display);
    font-size:18px;
    margin-bottom:10px;
    color:var(--ink);
}

.plan-card p{
    font-size:13.5px;
    color:var(--ink-soft);
    line-height:1.6;
    font-weight:300;
}
