/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 16 2026 | 11:06:03 */
/* Kontak Bootstrap - Slim Button */
.custom-submit {
  background-color: #f58420;
  color: #ffffff;
  font-size: 14px;              /* lebih kecil */
  padding: 5px 18px;            /* lebih ramping */
  border: none;
  border-radius: 7px;          /* tidak terlalu bulat */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
  cursor: pointer;
  display: inline-flex;         /* lebih rapi */
  align-items: center;
  gap: 6px;                     /* kalau pakai icon */
}

.custom-submit:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-1px);  /* efek halus */
}

.custom-submit:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
}

.grecaptcha-badge { 
  visibility: hidden;
}


/* Kontak form design */
#contact-compact .wpcf7 input[type="text"],
#contact-compact .wpcf7 input[type="email"],
#contact-compact .wpcf7 textarea {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 6px;
}

/* radio horizontal */
#contact-compact .wpcf7-radio {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* button */
#contact-compact .custom-submit {
    margin-top: 10px;
}
#contact-compact .form-note {
    font-size: 11px;
    line-height: 1.4;
    color: #ffff;
    margin-top: 4px;
}
/* ===== RADIO WRAPPER ===== */
#contact-compact .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 6px;
}

/* ===== ITEM RADIO ===== */
#contact-compact .wpcf7-list-item {
    margin: 0;
}

/* ===== LABEL RADIO ===== */
#contact-compact .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    background: #fff;
    transition: all 0.2s ease;
}

/* ===== RADIO ASLI ===== */
#contact-compact .wpcf7-list-item input[type="radio"] {
    margin: 0;
}

/* ===== HOVER ===== */
#contact-compact .wpcf7-list-item label:hover {
    border-color: #007bff;
}

/* ===== CHECKED STATE ===== */
#contact-compact .wpcf7-list-item input[type="radio"]:checked + span,
#contact-compact .wpcf7-list-item input[type="radio"]:checked {
    accent-color: #007bff;
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
    #contact-compact .wpcf7-radio {
        gap: 8px;
    }

    #contact-compact .wpcf7-list-item label {
        padding: 5px 10px;
        font-size: 12px;
    }
}

