.elementor-842 .elementor-element.elementor-element-d26e006{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-64f9dc1 *//* =========================================
   NDIS REFERRAL FORM - PREMIUM UI/UX
   ========================================= */

/* 1. Reset & Wrapper */
.ndis-referral-form {
    width: 100%;
    font-family: inherit;
    color: #2d3748;
}

/* 2. Judul Section (1, 2, 3) */
.form-section-title {
    color: #5B9BA5 !important;
    font-size: 20px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #edf2f7;
    position: relative;
}

/* Garis aksen kecil di bawah judul */
.form-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #5B9BA5;
}

/* 3. Grid System (2 Kolom untuk Desktop) */
.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px; /* Jarak antar kolom */
}

/* 4. Styling Label */
.ndis-referral-form label {
    display: block;
    font-weight: 600 !important;
    color: #334155 !important;
    margin-bottom: 8px !important;
    font-size: 14px;
}

/* 5. Styling Kotak Input & Textarea */
.ndis-referral-form input[type="text"],
.ndis-referral-form input[type="email"],
.ndis-referral-form input[type="tel"],
.ndis-referral-form input[type="date"],
.ndis-referral-form textarea {
    width: 100% !important;
    background-color: #f8fafc !important; /* Abu-abu super terang */
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    color: #1e293b !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; 
    margin-bottom: 20px !important;
}

/* 6. Efek Pas Diklik (Focus State) */
.ndis-referral-form input:focus,
.ndis-referral-form textarea:focus {
    background-color: #ffffff !important;
    border-color: #5B9BA5 !important;
    box-shadow: 0 0 0 3px rgba(91, 155, 165, 0.15) !important; /* Glow teal halus */
    outline: none !important;
}

/* Khusus tinggi Textarea biar pas */
.ndis-referral-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* 7. Consent Box (Kotak Persetujuan) */
.consent-box {
    background-color: rgba(91, 155, 165, 0.05); /* Teal transparan */
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid rgba(91, 155, 165, 0.2);
    margin-bottom: 25px;
    margin-top: 10px;
}

/* Rapihin Checkbox bawaan CF7 */
.consent-box span.wpcf7-list-item {
    margin-left: 0;
    margin-top: 5px;
    display: block;
}

.consent-box input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #5B9BA5; /* Ubah warna centang jadi teal (browser support) */
    transform: scale(1.2);
}

.consent-box .wpcf7-list-item-label {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

/* 8. Tombol Submit Premium */
.cf7-submit-btn {
    background-color: #5B9BA5 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important; /* Atau ubah ke 50px kalau mau bentuk kapsul */
    padding: 16px 30px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer;
    width: 100%; /* Tombol full width */
    transition: all 0.3s ease !important; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Efek Tombol saat di-Hover */
.cf7-submit-btn:hover {
    background-color: #4a828a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(91, 155, 165, 0.25) !important;
}

/* 9. Responsive Tablet & Mobile */
@media (max-width: 768px) {
    .form-grid-2 {
        grid-template-columns: 1fr; /* Jadi 1 kolom bersusun di HP */
        gap: 0;
    }
    
    .form-section-title {
        font-size: 18px;
        margin-top: 25px;
    }
    
    .consent-box {
        padding: 15px;
    }
}/* End custom CSS */