/* Qualification Form Shortcode */
.vt-qform-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: var(--font-inter, 'Inter', sans-serif);
    color: #0f172a;
}

.vt-qform-step {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.vt-qform-step-label {
    color: #2b7af0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.vt-qform-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #0f172a;
}

.vt-qform-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* Cards */
.vt-qform-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.vt-qform-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s ease-in-out;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.vt-qform-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.vt-qform-card.active,
.vt-qform-card:has(input:checked) {
    border-color: #2b7af0;
    background-color: #f0f7ff;
}

.vt-qform-radio {
    margin-top: 0.25rem;
    margin-right: 1rem;
    accent-color: #2b7af0;
}

.vt-qform-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vt-qform-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eff6ff;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.vt-qform-card-content h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 700;
}

.vt-qform-card-desc {
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    flex-grow: 1;
}

.vt-qform-card-meta {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}

/* Columns */
.vt-qform-columns {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.vt-qform-col {
    flex: 1;
}

.vt-qform-col-right {
    flex: 0 0 40%;
}

/* Form Fields */
.vt-qform {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vt-form-row {
    display: flex;
    gap: 1rem;
}

.vt-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 1rem 0;
}

.vt-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #334155;
}

.vt-input,
.vt-select,
.vt-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #0f172a;
    transition: border-color 0.2s;
}

.vt-input:focus,
.vt-select:focus,
.vt-textarea:focus {
    outline: none;
    border-color: #2b7af0;
    box-shadow: 0 0 0 3px rgba(43, 122, 240, 0.1);
}

.vt-textarea {
    resize: vertical;
}

.vt-input-group {
    display: flex;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
}

.vt-input-group:focus-within {
    border-color: #2b7af0;
    box-shadow: 0 0 0 3px rgba(43, 122, 240, 0.1);
}

.vt-input-prefix {
    background: #f1f5f9;
    padding: 0.75rem;
    color: #64748b;
    font-size: 0.95rem;
    border-right: 1px solid #cbd5e1;
}

.vt-input-group .vt-input {
    border: none;
    border-radius: 0;
}

.vt-input-group .vt-input:focus {
    box-shadow: none;
}

.vt-form-submit-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-direction: column;
}

.vt-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.vt-btn-primary {
    background-color: #2b7af0;
    color: #ffffff !important;
    width: 100%;
}

.vt-btn-primary:hover {
    background-color: #1d4ed8;
}

.vt-form-submit-note {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

/* Scheduler */
.vt-scheduler {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.vt-scheduler-timezone {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.vt-scheduler-timezone a {
    color: #2b7af0;
    text-decoration: none;
}

.vt-scheduler-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.vt-scheduler-btn-nav {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    color: #334155;
}

.vt-scheduler-btn-nav:hover {
    background: #f8fafc;
}

.vt-scheduler-date-range {
    font-weight: 600;
    font-size: 0.95rem;
}

.vt-scheduler-days {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vt-scheduler-day {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vt-scheduler-day-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #334155;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.vt-scheduler-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.vt-scheduler-slot {
    background: #ffffff;
    border: 1px solid #2b7af0;
    color: #2b7af0;
    border-radius: 999px;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.vt-scheduler-slot:hover,
.vt-scheduler-slot.selected {
    background: #2b7af0;
    color: #ffffff;
}

@media (max-width: 992px) {
    .vt-qform-columns {
        flex-direction: column;
    }

    .vt-qform-col-right {
        flex: 1 1 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .vt-qform-cards {
        grid-template-columns: 1fr;
    }

    .vt-form-row {
        flex-direction: column;
    }

    .vt-form-submit-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .vt-scheduler-slot {
        flex: 1 1 calc(33.33% - 0.5rem);
    }

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

}