/* ======================================= */
/* SURVEY LOKASI FORM */
/* ======================================= */

.survey-section {
    padding: 80px 0 60px 0;
    background-color: var(--color-background);
}

.survey-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.survey-header {
    text-align: center;
    margin-bottom: 40px;
}

.survey-header .section-title {
    color: var(--color-secondary);
    font-size: 2.2em;
    margin-bottom: 10px;
}

.survey-header .tagline {
    color: var(--color-primary);
    font-size: 1.1em;
    opacity: 0.8;
}

/* --- FORM STYLING --- */
.survey-form {
    background-color: var(--color-light-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--color-primary);
}

.form-group-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-background);
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.survey-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary);
}

.survey-form input[type="text"],
.survey-form input[type="date"],
.survey-form input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.survey-form input:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.2);
    outline: none;
}

/* --- RADIO BUTTONS (Waktu) --- */
.time-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.time-options input[type="radio"] {
    display: none;
}

.time-options label {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.time-options input[type="radio"]:checked+label {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(230, 126, 34, 0.3);
}

/* --- SUBMIT BUTTON --- */
.cta-submit-button {
    width: 100%;
    background-color: var(--color-secondary);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-submit-button:hover {
    background-color: #e67e22;
    /* Warna orange gelap */
    transform: translateY(-2px);
}

.cta-submit-button i {
    margin-left: 10px;
    font-size: 1.2em;
}

/* Responsif */
@media (max-width: 500px) {
    .survey-form {
        padding: 20px;
    }

    .time-options label {
        flex: 1 1 100%;
        text-align: center;
    }
}

:root {
    --color-primary: #333333;
    --color-secondary: #ff8c00;
    --color-background: #f7f7f7;
    --color-light-bg: #ffffff;
}

/* Styling dasar untuk form */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--color-background);
    color: var(--color-primary);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.survey-section {
    padding: 40px 0;
}

.survey-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    color: var(--color-primary);
    font-size: 28px;
    margin-bottom: 15px;
}

.tagline {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.survey-form {
    background-color: var(--color-light-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group-title {
    font-size: 18px;
    font-weight: bold;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-secondary);
    color: var(--color-primary);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"],
input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.time-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.time-options input[type="radio"] {
    margin-right: 5px;
}

.time-options label {
    font-weight: normal;
    display: flex;
    align-items: center;
}

.cta-submit-button {
    background-color: var(--color-secondary);
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-submit-button:hover {
    background-color: #e67e00;
}

.main-footer {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.main-footer a {
    color: var(--color-secondary);
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}