main {
    overflow-x: hidden;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.full-width-banner {
    width: 100%;
    height: 350px;
    position: relative;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.full-width-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.full-width-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

.full-width-banner .banner-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.full-width-banner .banner-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.full-width-banner .banner-text p {
    font-size: 15px;
    font-weight: 400;
    color: #e5e7eb;
    margin: 0;
}

.terhubung-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cards-section {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: #d4af37;
}

.service-card h3 {
    color: #8e2113;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
}

.service-card p {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-card {
    background: #f59e0b;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    width: 100%;
    transition: 0.3s;
    font-size: 14px;
}

.form-section {
    display: none;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    animation: fadeIn 0.4s ease-in-out;
}

/* Modifikasi Flex Header */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.form-header h2 {
    color: #8e2113;
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.btn-back {
    background: #f3f4f6;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    color: #4b5563;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: 0.2s;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label.title-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
    text-transform: uppercase;
}

.input-style {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    box-sizing: border-box;
    background: #fdfdfd;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.input-style:focus {
    border-color: #8e2113;
    outline: none;
    box-shadow: 0 0 0 4px rgba(142, 33, 19, 0.1);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dynamic-section {
    display: none;
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    color: #d4af37;
    margin: 35px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.modern-radio-group {
    display: flex;
    gap: 15px;
}

.modern-radio-group input[type="radio"] {
    display: none;
}

.modern-radio-label {
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    font-size: 14px;
    color: #4b5563;
    background: #fff;
}

.modern-radio-group input[type="radio"]:checked+.modern-radio-label {
    background: #8e2113;
    color: #fff;
    border-color: #8e2113;
}

.modern-checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.modern-checkbox-label {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
    font-weight: 500;
    font-size: 14px;
    gap: 15px;
}

.custom-box {
    width: 22px;
    height: 22px;
    border: 2px solid #9ca3af;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-checkbox-wrapper input[type="checkbox"]:checked+.modern-checkbox-label {
    border-color: #8e2113;
}

.modern-checkbox-wrapper input[type="checkbox"]:checked+.modern-checkbox-label .custom-box {
    background: #8e2113;
    border-color: #8e2113;
}

.modern-checkbox-wrapper input[type="checkbox"]:checked+.modern-checkbox-label .custom-box::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    font-size: 12px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #8e2113;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 2px;
    font-size: 16px;
    margin-top: 5px;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(142, 33, 19, 0.15);
}

.btn-submit:hover {
    background: #6b180e;
    box-shadow: 0 6px 12px rgba(142, 33, 19, 0.25);
    transform: translateY(-2px);
}

.captcha-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.captcha-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 12px;
}

.captcha-title {
    color: #8e2113;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.captcha-timer {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    color: #16a34a;
}

.captcha-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.captcha-input {
    width: 150px !important;
    font-size: 20px !important;
    text-align: center;
    font-weight: 700;
    height: 55px;
    border: 2px solid #e2e8f0;
    letter-spacing: 2px;
}

.captcha-actions {
    display: flex;
    gap: 10px;
}

.btn-refresh-captcha {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4b5563;
    transition: 0.3s;
}

.btn-refresh-captcha:hover {
    background: #e2e8f0;
}

.btn-help-captcha {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    background: #fde047;
    color: #a16207;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-help-captcha:hover {
    background: #facc15;
}

.captcha-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #16a34a;
    width: 100%;
    transition: 1s linear;
}

.captcha-help-box {
    display: none;
    background: #fffdf5;
    border: 1px dashed #fcd34d;
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

.captcha-help-box h4 {
    margin: 0 0 10px 0;
    color: #92400e;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.captcha-help-box ul {
    margin: 0;
    padding-left: 20px;
    color: #92400e;
    font-size: 13px;
    line-height: 1.8;
    font-weight: 500;
}

.contact-reminder {
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-reminder i {
    color: #0284c7;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-reminder p {
    margin: 0;
    color: #0369a1;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.privacy-notice {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.privacy-notice i {
    color: #16a34a;
    font-size: 20px;
    margin-top: 2px;
}

.privacy-notice-text h4 {
    margin: 0 0 5px 0;
    color: #166534;
    font-size: 14px;
    font-weight: 700;
}

.privacy-notice-text p {
    margin: 0;
    color: #15803d;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
    }
}

/* RESPONSIVE KHUSUS MOBILE */
@media (max-width: 768px) {
    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .form-header h2 {
        font-size: 18px;
    }

    .btn-back {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        /* Kolom sejajar jadi turun ke bawah */
        gap: 15px;
    }

    .form-section,
    .dynamic-section {
        padding: 20px;
    }

    .captcha-body {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-body>div:first-child {
        display: flex;
        justify-content: center;
    }

    .captcha-input {
        width: 100% !important;
    }

    .captcha-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .btn-refresh-captcha,
    .btn-help-captcha {
        width: 100%;
    }
}