body {
    margin: 0;
    font-family: 'Instrument Sans', sans-serif;
    background: #f8f8f8;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 32px;
}

.subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 40px;
    font-size: 15px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.card p {
    margin: 8px 0;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* ================= JAM OPERASIONAL ================= */
.opening-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(199, 70, 44, 0.08);
    border-left: 4px solid #c7462c;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #7a2e22;
    text-align: center;
}

.opening-hours .label,
.opening-hours .time { font-weight: 600; }

.opening-hours .divider {
    margin: 0 6px;
    color: #c7462c;
}

/* ================= FORM ================= */
.form-group { margin-bottom: 14px; }

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

input,
textarea {
    width: 100%;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    font-family: 'Instrument Sans', sans-serif;
    background: #fff;
    box-sizing: border-box;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

button {
    width: 100%;
    margin-top: 6px;
    height: 46px;
    background: #1f2937;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

button:hover { background: #111827; }

.contact-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    font-size: 15px;   /* ← tambah ini */
    color: #555;
    line-height: 1.6;
}

.map-wrapper iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 12px;
    margin-top: 16px;
}

/* ================= SUCCESS POPUP ================= */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: fadeIn .3s ease;
}

.popup-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    animation: popUp .4s ease;
}

.popup-icon {
    width: 60px;
    height: 60px;
    background: #2e7d32;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-link {
    display: inline-block;
    margin-top: 25px;
    color: #C8361D;
    font-weight: 600;
    text-decoration: none;
}
.popup-link:hover { text-decoration: underline; }

@keyframes popUp {
    from { transform: scale(.8); opacity: 0; }
    to   { transform: scale(1);  opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .container { padding: 35px 18px; }
    h1 { font-size: 28px; }
    .contact-wrapper { gap: 32px; }
    .card { padding: 25px; }
    .map-wrapper iframe { height: 240px; }
}

@media (max-width: 768px) {
    .container { padding: 24px 16px; }

    h1 { font-size: 22px; margin-bottom: 6px; }
    .subtitle { font-size: 14px; margin-bottom: 20px; }

    .contact-wrapper { grid-template-columns: 1fr; gap: 16px; }

    .card { padding: 18px; border-radius: 12px; }

    /* SEMUA teks termasuk .contact-row */
    .card p,
    .card a,
    .card span,
    .contact-row {
        font-size: 16px;
        margin: 6px 0;
    }

    .opening-hours { font-size: 16px; padding: 10px 14px; }

    .map-wrapper iframe { height: 220px; border-radius: 10px; margin-top: 12px; }

    label { font-size: 16px; margin-bottom: 5px; }

    input, textarea { font-size: 16px; padding: 10px 12px; }
    textarea { min-height: 100px; }

    button { height: 48px; font-size: 16px; border-radius: 10px; }

    .form-group { margin-bottom: 12px; }
    .contact-row { gap: 6px; }
}

@media (max-width: 480px) {
    .container { padding: 20px 14px; }
    h1 { font-size: 20px; }
    .subtitle { font-size: 16px; }
    .card { padding: 16px; }

    .card p,
    .card a,
    .card span,
    .contact-row { font-size: 16px; }

    .opening-hours { font-size: 16px; padding: 10px 12px; }
    label { font-size: 16px; }
    input, textarea { font-size: 16px; padding: 10px 12px; }
    textarea { min-height: 90px; }
    button { height: 48px; font-size: 16px; }
    .form-group { margin-bottom: 10px; }
    .map-wrapper iframe { height: 200px; }
}

@media (max-width: 360px) {
    .container { padding: 16px 12px; }
    h1 { font-size: 18px; }
    .subtitle { font-size: 16px; }

    .card p,
    .card a,
    .card span,
    .contact-row { font-size: 16px; }

    .opening-hours { font-size: 16px; }
    label { font-size: 16px; }
    input, textarea { font-size: 16px; }
    button { height: 48px; font-size: 16px; }
    .map-wrapper iframe { height: 180px; }
}