/* =================== SURVEY PAGE STYLES =================== */

/* Umum */
body {
    background-color: #eef2f6;
    /* Latar belakang terang yang lembut */
    font-family: 'Poppins', sans-serif;
}

.survey-page-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.survey-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-light, #eee);
    margin-bottom: 30px;
}

.survey-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.main-title {
    color: var(--color-primary, #1c3d5a);
    font-size: 2em;
    font-weight: 700;
    margin: 0 0 10px;
}

.subtitle {
    color: #666;
    font-size: 1.1em;
}

/* Form Styling */
.survey-form {
    padding: 0 20px;
}

.form-section {
    background-color: #f8faff;
    border: 1px solid #e1e9f1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.section-title-form {
    color: var(--color-secondary, #ffb300);
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffb30033;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-accent, #ff8c00);
    box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    outline: none;
}

/* Radio Button Group */
.radio-group label {
    display: inline-flex;
    /* Agar sejajar dengan radio button */
    align-items: center;
    margin-right: 25px;
    cursor: pointer;
    font-weight: 400;
}

.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

/* Tombol Submit */
.submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--color-accent, #2ecc71);
    /* Warna hijau/accent untuk CTA */
    color: white;
    font-size: 1.2em;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.contact-note {
    text-align: center;
    margin-top: 15px;
    color: #777;
    font-size: 0.9em;
}

/* Responsif */
@media (max-width: 600px) {
    .survey-page-wrapper {
        margin: 20px 10px;
        padding: 15px;
    }

    .main-title {
        font-size: 1.5em;
    }

    .survey-form {
        padding: 0;
    }
}