.sprt-contact-section {
    padding: 80px 0;
}

.sprt-support-label {
    color: #f4a261;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sprt-main-heading {
    color: #2c3e50;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
}

.sprt-form-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.sprt-form-label {
    color: #3E3E59;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.sprt-form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 25px;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.sprt-form-input:focus {
    outline: none;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.sprt-form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 30px;
    min-height: 120px;
    resize: vertical;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.sprt-form-textarea:focus {
    outline: none;
    border-color: #f4a261;
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.sprt-submit-btn {
    background-color: var(--bs-primary);
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sprt-submit-btn:hover {
    background-color: #f4af01;
}

.sprt-contact-info {
    padding-left: 40px;
}

.sprt-contact-item {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 35px;
}

.sprt-contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bs-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sprt-contact-icon i {
    color: white;
    font-size: 20px;
}

.sprt-contact-details {
    flex: 1;
}

.sprt-contact-label {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 5px;
}

.sprt-contact-value {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.sprt-address-text {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .sprt-contact-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .sprt-main-heading {
        font-size: 36px;
        text-align: center;
    }
    
    .sprt-support-label {
        text-align: center;
    }
}

   .user-type-toggle {
        display: flex;
        background-color: #e9ecef;
        border-radius: 8px;
        padding: 5px;
        margin-bottom: 2rem;
        width: 100%;
    }
    .frontend-toggle-btn {
        flex: 1;
        padding: 12px 15px;
        border: none;
        background-color: transparent;
        color: #6c757d;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        border-radius: 6px;
        transition: background-color 0.3s ease, color 0.3s ease;
        text-align: center;
    }
    .frontend-toggle-btn.active {
        background-color: #fff;
        color: #212529;
        font-weight: 700;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }


    .sprt-form-label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
    .sprt-form-input, .sprt-form-textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #ced4da;
        border-radius: 0.375rem;
    }
    
    
    .sprt-submit-btn {
        background-color: #fbba16; 
        color: #212529; 
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 0.375rem;
        font-weight: 700;
        cursor: pointer;
        width: 100%;
        margin-top: 1rem;
        transition: background-color 0.3s ease; 
    }
    .sprt-submit-btn:hover {
        background-color: #fcc63a; 
    }
    
    .mb-3 { margin-bottom: 1rem; }