/* daftar-style.css */

/* Hero Daftar */
.daftar-hero {
    background: linear-gradient(135deg, #ff6c10 0%, #feae58 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.daftar-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.daftar-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #ff6c10;
    margin-bottom: 10px;
    font-size: 20px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Registration Section */
.registration-section {
    padding: 60px 20px;
    background: white;
}

.registration-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 32px;
    color: #ff6c10;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.section-heading {
    color: #333;
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6c10;
    display: inline-block;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6c10;
    box-shadow: 0 0 0 3px rgba(255, 108, 16, 0.15);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #999;
    font-size: 12px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: normal;
}

.checkbox-label:hover {
    border-color: #ff6c10;
    background: rgba(255, 108, 16, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.checkbox-label.agreement {
    background: #f8f9fa;
    padding: 15px;
    border: 2px solid #ff6c10;
}

.checkbox-label.agreement span {
    line-height: 1.6;
    font-size: 14px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff6c10 0%, #feae58 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 108, 16, 0.35);
}

.submit-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Next Process Section */
.next-process {
    padding: 60px 20px;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff6c10 0%, #feae58 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

.process-step h3 {
    color: #ff6c10;
    margin-bottom: 10px;
    font-size: 18px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Active nav link */
nav a.active {
    color: #ff6c10;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .daftar-hero h1 {
        font-size: 28px;
    }

    .registration-card {
        padding: 25px 20px;
    }

    .form-title {
        font-size: 24px;
    }

    .section-heading {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}
