.support-grid {
    display: grid;
    grid-template-columns: 1.35fr .9fr;
    gap: 28px
}

@media screen and (max-width: 992px) {
    .support-grid {
        grid-template-columns: 1fr
    }
}

/* Modern Card Design */
.card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    font-weight: 700;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    position: relative;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(180deg, #078ea2, #057c8e);
}

.card-body {
    padding: 24px;
    position: relative;
}

.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.card:hover .card-hover-overlay {
    opacity: 1;
}

.muted {
    color: #6b7280
}

/* Modern Form Elements */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-grid .full {
    grid-column: 1 / -1
}

@media screen and (max-width:768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-control,
.form-select,
textarea {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
    outline: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1), 0 4px 12px rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
}

.form-control:hover,
.form-select:hover,
textarea:hover {
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.form-select {
    cursor: pointer;
}

textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Modern Buttons */
.btn-primary-lab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: linear-gradient(180deg, #078ea2, #057c8e);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-lab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.btn-primary-lab:hover {
    background: linear-gradient(135deg, #078ea2, #057c8e);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.4);
}

.btn-primary-lab:hover::before {
    left: 100%;
}

.btn-primary-lab:active {
    transform: translateY(-1px) scale(0.98);
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: .72rem;
    border-radius: 10px;
    background: #f1f5f9;
    color: #0f172a
}

/* Button Ripple Effect */
.btn-primary-lab::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn-primary-lab:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary-lab span {
    position: relative;
    z-index: 1;
}

.toast {
    position: fixed;
    top: 100px;
    right: 60px;
    z-index: 999;
}

/* Mobile Optimizations */
@media screen and (max-width: 768px) {
    .toast {
        top: 80px;
        right: 10px;
    }

    .form-control,
    .form-select,
    textarea {
        padding: 12px 14px;
    }

    .btn-primary-lab {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}