/* ========================================
   CHATBOT FAQ STYLES
   ======================================== */

/* ===================================================
   DISABLED - Sekarang menggunakan .chat-float dari social-float.css
   =================================================== */

/* Floating Button - Posisi paling bawah (scroll button removed) */
/* DISABLED - Menyebabkan double button dengan .chat-float
.chatbot-floating-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chatbot-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6);
    animation: none;
}

.chatbot-floating-btn i {
    font-size: 28px;
    color: #000;
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f44336;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 193, 7, 0.7);
    }
}
*/

/* Chatbot Backdrop/Overlay */
.chatbot-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chatbot-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Chatbot Modal */
.chatbot-modal {
    position: fixed;
    bottom: 20px;
    right: 110px;
    width: 380px;
    max-width: calc(100vw - 140px);
    max-height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
}

.chatbot-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 600px;
}

/* Header */
.chatbot-header {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-header-content i {
    font-size: 32px;
    color: #000;
}

.chatbot-header-content h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.chatbot-header-content p {
    margin: 0;
    font-size: 12px;
    color: #333;
}

.chatbot-close {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.chatbot-close i {
    font-size: 16px;
    color: #000;
}

/* Body */
.chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background: #f8f9fa;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.category-tab {
    background: white;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.category-tab:hover {
    border-color: #FFC107;
    background: #fff9e6;
}

.category-tab.active {
    background: #FFC107;
    border-color: #FFC107;
    font-weight: 600;
}

.category-tab i {
    font-size: 14px;
}

/* FAQ Container */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.faq-item:hover {
    border-color: #FFC107;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.faq-question i {
    color: #FFC107;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.faq-answer i {
    color: #4CAF50;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item.active .faq-answer {
    display: flex;
}

.faq-item.active {
    background: #fff9e6;
    border-color: #FFC107;
}

/* Loading & Error States */
.loading-spinner {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.loading-spinner i {
    font-size: 32px;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.error-message, .no-faq {
    text-align: center;
    padding: 30px;
    color: #999;
    font-size: 14px;
}

/* Footer */
.chatbot-footer {
    padding: 20px;
    background: linear-gradient(to top, #f8f9fa, white);
    border-radius: 0 0 20px 20px;
    border-top: 2px solid #FFC107;
    text-align: center;
}

.chatbot-footer p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chatbot-footer p i {
    color: #FFC107;
    font-size: 18px;
}

/* WhatsApp Link Button */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.whatsapp-link i {
    font-size: 22px;
    color: white;
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-link:active {
    transform: translateY(-1px);
}

.btn-contact-admin {
    background: #FFC107;
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-contact-admin:hover {
    background: #FFB300;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* ========================================
   CONVECTION REQUEST FORM STYLES
   ======================================== */

/* Form section title styling */
.form-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #FFC107;
    margin: 25px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 193, 7, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-section-title i {
    color: #FFC107;
    font-size: 18px;
}

/* Helper text untuk ukuran */
.ukuran-helper-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-weight: 500;
}

/* Placeholder styling for better visibility on blue background */
.contact .form-control::placeholder,
.contact .form-select::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.contact .form-control,
.contact .form-select,
.contact textarea.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #fff;
}

.contact .form-control:focus,
.contact .form-select:focus,
.contact textarea.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFC107;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.file-upload-area {
    border: 2px dashed rgba(255, 193, 7, 0.6);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    background: rgba(255, 193, 7, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-area:hover {
    background: rgba(255, 193, 7, 0.15);
    border-color: #FFC107;
    transform: translateY(-2px);
}

.file-upload-area i {
    font-size: 48px;
    color: #FFC107;
    margin-bottom: 12px;
    display: block;
}

.file-upload-area p {
    margin: 0 0 8px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.file-upload-area small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.file-list {
    margin-top: 15px;
}

.file-item {
    background: rgba(255, 193, 7, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.file-item-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

.file-item-name i {
    color: #FFC107;
    font-size: 18px;
}

.file-item-remove {
    background: transparent;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: all 0.3s ease;
}

.file-item-remove:hover {
    color: #bd2130;
    transform: scale(1.1);
}

.ukuran-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.ukuran-item label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #FFC107;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ukuran-item input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 6px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.ukuran-item input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.ukuran-item input:focus {
    border-color: #FFC107;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

/* Ukuran Format Selector */
.ukuran-format-selector {
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.ukuran-format-selector .format-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ukuran-format-selector .form-check-inline {
    margin-right: 0;
}

.ukuran-format-selector .form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border: 2px solid #FFC107;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.ukuran-format-selector .form-check-input:checked {
    background-color: #FFC107;
    border-color: #FFC107;
}

.ukuran-format-selector .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.ukuran-format-selector .form-check-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ukuran-format-selector .form-check-label:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-2px);
}

.ukuran-format-selector .form-check-input:checked + .form-check-label {
    background: rgba(255, 193, 7, 0.3);
    font-weight: 600;
}

.ukuran-format-selector .form-check-label i {
    font-size: 16px;
}

#ukuran_angka_section {
    margin-top: 20px;
}

/* Menggunakan style btn-submit yang sudah ada dari contact form */
.btn-submit-convection {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color) 90%, black) 100%);
    color: var(--contrast-color);
    border: 0;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-submit-convection:hover {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 90%, black) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-submit-convection:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Button Container */
.button-container {
    padding: 0 20px;
    margin-top: 24px;
    margin-bottom: 20px;
}

/* WhatsApp Submit Button - Premium Style */
.btn-submit-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 320px;
}

.btn-submit-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-submit-whatsapp:hover::before {
    left: 100%;
}

.btn-submit-whatsapp i {
    font-size: 24px;
    animation: pulse 2s infinite;
}

.btn-submit-whatsapp span {
    letter-spacing: 0.5px;
}

.btn-submit-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.btn-submit-whatsapp:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-submit-whatsapp:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Button Loading Spinner */
.spinner {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .btn-submit-whatsapp {
        min-width: 280px;
        padding: 16px 40px;
        font-size: 17px;
    }

    .btn-submit-whatsapp i {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .btn-submit-whatsapp {
        min-width: 260px;
        padding: 15px 35px;
        font-size: 16px;
    }

    .btn-submit-whatsapp i {
        font-size: 21px;
    }
}

@media (max-width: 768px) {
    .btn-submit-whatsapp {
        width: 100%;
        min-width: unset;
        padding: 16px 30px;
        font-size: 16px;
        gap: 10px;
    }

    .btn-submit-whatsapp i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .btn-submit-whatsapp {
        width: 100%;
        padding: 14px 25px;
        font-size: 15px;
        gap: 8px;
        border-radius: 40px;
    }

    .btn-submit-whatsapp i {
        font-size: 18px;
    }

    .btn-submit-whatsapp span {
        letter-spacing: 0.3px;
    }
}

@media (max-width: 400px) {
    .btn-submit-whatsapp {
        padding: 12px 20px;
        font-size: 14px;
        gap: 6px;
    }

    .btn-submit-whatsapp i {
        font-size: 16px;
    }
}

.convection-alert {
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    border-left: 3px solid;
}

.convection-alert-success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border-color: #4caf50;
}

.convection-alert-error {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border-color: #f44336;
}

.alert i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    /* DISABLED - .chatbot-floating-btn sekarang menggunakan .chat-float
    .chatbot-floating-btn {
        width: 55px;
        height: 55px;
        bottom: 60px;
        right: 20px;
    }

    .chatbot-floating-btn i {
        font-size: 24px;
    }
    */

    .chatbot-modal {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 80vh;
    }

    .ukuran-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .convection-form-container {
        padding: 20px;
    }

    .ukuran-format-selector .format-options {
        flex-direction: column;
        gap: 10px;
    }

    .ukuran-format-selector .form-check-label {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .category-tab {
        font-size: 11px;
        padding: 6px 10px;
    }

    .category-tab i {
        font-size: 12px;
    }
}

/* ========================================
   PRODUCTION PROCESS TIMELINE & TRUST BADGES
   ======================================== */

/* Production Process Timeline */
.process-timeline {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 16px;
    padding: 30px;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 193, 7, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFC107 0%, #FFB300 100%);
}

.process-timeline h5 {
    color: #FFC107;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.process-timeline h5 i {
    color: #FFC107;
    font-size: 24px;
    animation: rotate 3s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.timeline-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 400;
}

.timeline-container {
    position: relative;
    padding: 10px 0;
}

.timeline-step {
    position: relative;
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-step:last-child .step-line {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5), 0 0 20px rgba(255, 193, 7, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.7), 0 0 30px rgba(255, 193, 7, 0.5);
}

.step-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 179, 0, 0.08) 100%);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.step-content:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3), 0 0 30px rgba(255, 193, 7, 0.1);
    border-color: #FFC107;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 179, 0, 0.12) 100%);
}

.step-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 179, 0, 0.2) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
}

.step-content:hover .step-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.4) 0%, rgba(255, 179, 0, 0.3) 100%);
    transform: scale(1.05);
}

.step-icon i {
    font-size: 22px;
    color: #FFC107;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.step-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: #FFC107;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.step-line {
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 193, 7, 0.6) 0%, rgba(255, 193, 7, 0.2) 100%);
    z-index: 1;
}

.process-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 193, 7, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
    padding: 15px;
    border-radius: 8px;
}

.process-footer i {
    color: #FFC107;
    font-size: 18px;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

/* Trust Badges Section */
.trust-badges {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 16px;
    padding: 30px;
    margin-top: 25px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.trust-badges h5 {
    color: #FFC107;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-badges h5 i {
    color: #4CAF50;
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.5));
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.badge-item {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12) 0%, rgba(255, 179, 0, 0.06) 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3), 0 0 30px rgba(255, 193, 7, 0.15);
    border-color: #FFC107;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.18) 0%, rgba(255, 179, 0, 0.1) 100%);
}

.badge-item i {
    font-size: 40px;
    color: #FFC107;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.4));
    transition: all 0.3s ease;
}

.badge-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(255, 193, 7, 0.6));
}

.badge-text {
    flex: 1;
    text-align: left;
}

.badge-text h6 {
    font-size: 15px;
    font-weight: 700;
    color: #FFC107;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.badge-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .process-timeline,
    .trust-badges {
        padding: 20px;
    }

    .process-timeline h5,
    .trust-badges h5 {
        font-size: 18px;
    }

    .timeline-subtitle {
        font-size: 13px;
    }

    .timeline-step {
        gap: 12px;
        padding-bottom: 20px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .step-line {
        left: 17px;
        top: 35px;
    }

    .step-content {
        padding: 15px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon i {
        font-size: 20px;
    }

    .step-content h6 {
        font-size: 15px;
    }

    .step-content p {
        font-size: 12px;
    }

    .process-footer {
        font-size: 13px;
        padding: 12px;
    }

    .process-footer i {
        font-size: 16px;
    }

    .badges-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .badge-item {
        padding: 15px;
        gap: 12px;
    }

    .badge-item i {
        font-size: 35px;
    }

    .badge-text h6 {
        font-size: 14px;
    }

    .badge-text p {
        font-size: 11px;
    }
}

/* ========================================
   FORM LOADING & SUCCESS MESSAGES
   ======================================== */

/* Loading Message - Console Style */
.loading {
    display: none;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #60a5fa;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #3b82f6;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.loading::before {
    content: '>';
    color: #3b82f6;
    margin-right: 8px;
    font-weight: bold;
    animation: blink 1s infinite;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
    animation: scan 2s linear infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Success Message - Console Style */
.sent-message {
    display: none;
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    color: #6ee7b7;
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #10b981;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.4);
    animation: slideIn 0.5s ease-out;
}

.sent-message::before {
    content: '✓';
    color: #10b981;
    margin-right: 10px;
    font-weight: bold;
    font-size: 18px;
    animation: checkmark 0.6s ease-in-out;
}

.sent-message::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(16, 185, 129, 0.2);
    animation: fillSuccess 1s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.3) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes fillSuccess {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Error Message - Console Style */
.error-message {
    display: none;
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
    color: #fca5a5;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #ef4444;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    box-shadow: 0 4px 15px rgba(127, 29, 29, 0.4);
}

.error-message::before {
    content: '✗';
    color: #ef4444;
    margin-right: 10px;
    font-weight: bold;
    font-size: 18px;
}

/* Show states */
.loading.show,
.sent-message.show,
.error-message.show {
    display: block;
}

/* Responsive for Messages */
@media (max-width: 992px) {
    .loading,
    .sent-message,
    .error-message {
        padding: 16px 22px;
        font-size: 14px;
        border-radius: 11px;
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .loading,
    .sent-message,
    .error-message {
        padding: 14px 18px;
        font-size: 13px;
        border-radius: 10px;
        margin-left: 0;
        margin-right: 0;
    }

    .loading::before,
    .sent-message::before,
    .error-message::before {
        font-size: 16px;
        margin-right: 8px;
    }

    .button-container {
        padding: 0 10px;
        margin-top: 20px;
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) {
    .loading,
    .sent-message,
    .error-message {
        padding: 12px 16px;
        font-size: 12px;
        border-radius: 8px;
        border-left-width: 3px;
    }

    .loading::before,
    .sent-message::before,
    .error-message::before {
        font-size: 14px;
        margin-right: 6px;
    }

    .button-container {
        padding: 0 5px;
        margin-top: 16px;
        margin-bottom: 12px;
    }
}

@media (max-width: 400px) {
    .loading,
    .sent-message,
    .error-message {
        padding: 10px 14px;
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .button-container {
        padding: 0;
        margin-top: 12px;
        margin-bottom: 8px;
    }
}

/* ===================================
   CHATBOT MODAL RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .chatbot-modal {
        right: 10px;
        bottom: 10px;
        width: calc(100vw - 20px);
        max-width: 380px;
        max-height: 500px;
    }
}

@media (max-width: 576px) {
    .chatbot-modal {
        right: 10px;
        bottom: 10px;
        width: calc(100vw - 20px);
        max-width: none;
        max-height: calc(100vh - 20px);
    }

    .chatbot-container {
        max-height: calc(100vh - 20px);
    }

    .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .category-tab {
        flex-shrink: 0;
    }
}
