#absvisa-form {
    max-width: 820px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    padding: 10px 0;
}

/* STEP */
.step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* TYPO */
#absvisa-form h2 {
    margin-bottom: 10px;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    color: #1f2a44;
}

#absvisa-form p {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

/* CATEGORY BUTTON */
.category-wrap {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.category-btn {
    flex: 1;
    padding: 14px;
    background: #eef2ff;
    color: #3f51b5;
    border: 1px solid #e0e7ff;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
    text-align: center;
}

.category-btn:hover {
    background: #5c6bc0;
    color: #ffffff;
}

/* SELECT */
#service-select {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
}

/* CARD */
.service-card {
    text-align: left;
}

.service-card h3 {
    margin-bottom: 10px;
    text-align: center;
    margin-top: 20px;
}

/* DESCRIPTION */
.service-card p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* GRID 2 KOLOM */
.service-card .service-section {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

.service-card .service-section:first-child {
    margin-right: 4%;
}

/* SECTION */
.service-section {
    margin-top: 15px;
}

.service-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #5c6bc0;
}

/* LIST */
.service-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-section li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.service-section li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #5c6bc0;
    font-size: 13px;
}

/* FORM GRID */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* INPUTS */
.form-grid input,
.form-grid select,
#message {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    transition: all 0.25s ease;
}

/* TEXTAREA */
#message {
    height: 110px;
    padding: 12px;
    resize: none;
}

/* FOCUS */
.form-grid input:focus,
.form-grid select:focus,
#message:focus {
    border-color: #5c6bc0 !important;
    box-shadow: 0 0 0 3px rgba(92,107,192,0.12);
    outline: none;
}

/* BUTTON */
.nav-btn {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

button {
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

button.next {
    background: #5c6bc0;
    color: #fff;
    box-shadow: 0 6px 16px rgba(92,107,192,0.25);
}

button.prev {
    background: #eef2ff;
    color: #1a237e;
    border: 1px solid #c5cae9;
}

#send-wa {
    background: #25D366;
    color: #fff;
}

button:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

/* SUMMARY */
#summary {
    text-align: left;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

#summary h3 {
    text-align: left !important;
    margin-bottom: 15px;
    font-size: 18px;
}

#summary p {
    text-align: left !important;
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #111827;
}

#summary p strong {
    display: inline-block;
    min-width: 100px;
    color: #374151;
}

/* NAME GROUP */
.name-group {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    align-items: stretch;
}

.name-group select,
.name-group input {
    height: 48px;
}

/* INPUT WRAP */
.input-wrap {
    display: flex;
    flex-direction: column;
    min-height: 70px;
}

/* ERROR */
.error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 6px;
    display: block;
    opacity: 0.9;
    font-weight: 500;
}

.input-error {
    border: 1px solid #ef4444 !important;
    box-shadow: 0 0 0 2px rgba(239,68,68,0.08);
}

/* OPTIONAL MESSAGE */
.optional-message {
    text-align: center;
    margin-top: 20px;
}

#add-message-btn {
    background: #eef2ff;
    color: #5c6bc0;
    border: 1px solid #c5cae9;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

#add-message-btn:hover {
    background: #5c6bc0;
    color: #fff;
}

#message-wrap {
    margin-top: 15px;
}

.note {
    font-size: 12px;
    color: #6b7280;
    display: block;
    margin-top: 6px;
}

/* STEP CARD */
.step-3,
.step-4,
.step-5 {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .category-wrap {
        flex-direction: column;
    }

    #absvisa-form {
        padding: 0 15px;
    }

    .service-card .service-section {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .service-card p {
        text-align: left;
    }

    .step-3,
    .step-4,
    .step-5 {
        padding: 20px;
    }
}


.service-card .service-section p {
    text-align: left !important;
}




















