/**
 * Playfield Verification Plans Styles
 */

/* Plan Grid */
.verification-plans-wrapper {
    max-width: 900px;
}

.verification-plans-intro {
    text-align: center;
    padding: 10px 0 20px;
}

.verification-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .verification-plans-grid {
        grid-template-columns: 1fr;
    }
}

/* Plan Card */
.verification-plan-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.verification-plan-card:hover {
    border-color: #5BBB7B;
    box-shadow: 0 8px 25px rgba(91, 187, 123, 0.15);
    transform: translateY(-4px);
}

/* Plan Header */
.plan-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #1d2327;
    margin: 0 0 10px;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: #5BBB7B;
    line-height: 1;
}

.plan-price-note {
    font-size: 13px;
    color: #6c757d;
    margin-top: 5px;
}

/* Badge Preview */
.plan-badge-preview {
    text-align: center;
    margin-bottom: 20px;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verification-badge.id-verified {
    background: #28a745;
    color: #fff;
}

.verification-badge.fully-verified {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: #fff;
}

.verification-badge i {
    font-size: 14px;
}

/* Plan Features */
.plan-features {
    flex-grow: 1;
    margin-bottom: 20px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #495057;
}

.plan-features li i {
    color: #5BBB7B;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Plan Documents */
.plan-documents {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 13px;
}

.doc-group {
    margin-bottom: 15px;
}

.doc-group:last-child {
    margin-bottom: 0;
}

.doc-group h5 {
    font-size: 13px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 8px;
}

.doc-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-group li {
    color: #6c757d;
    padding: 3px 0;
    padding-left: 15px;
    position: relative;
}

.doc-group li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #5BBB7B;
}

/* Plan Action */
.plan-action {
    margin-top: auto;
}

.plan-action .btn {
    width: 100%;
    justify-content: center;
}

.select-verification-plan {
    display: flex;
    align-items: center;
    gap: 8px;
}

.select-verification-plan:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert i {
    font-size: 18px;
    margin-top: 2px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #1e7e34;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-info {
    background: rgba(23, 162, 184, 0.1);
    color: #117a8b;
    border: 1px solid rgba(23, 162, 184, 0.2);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #bd2130;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Form Styles */
.form-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
    margin: 25px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.form-section-title:first-of-type {
    margin-top: 0;
}

.form-group label .required {
    color: #dc3545;
}

/* Document Section Styles */
.document-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.document-section h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 15px;
}

.document-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.document-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dee2e6;
}

.document-divider span {
    background: #fff;
    padding: 0 20px;
    position: relative;
    font-weight: 600;
    color: #6c757d;
    font-size: 14px;
}

.secondary-doc-group {
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
}

.secondary-doc-group:last-child {
    margin-bottom: 0;
}

/* Form Submit */
.form-submit {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Loading State */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Verification Status */
.verification-status-message {
    margin-bottom: 20px;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .verification-plan-card {
        padding: 20px;
    }

    .plan-price {
        font-size: 28px;
    }

    .document-section {
        padding: 15px;
    }
}

/* Upgrade Plan Box */
.upgrade-plan-box {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(102, 16, 242, 0.05));
    border: 2px solid rgba(0, 123, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.upgrade-plan-box:hover {
    border-color: rgba(0, 123, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.upgrade-plan-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.upgrade-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #6610f2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upgrade-icon i {
    color: #fff;
    font-size: 20px;
}

.upgrade-info {
    flex-grow: 1;
}

.upgrade-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 8px;
}

.upgrade-info p {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 12px;
}

.upgrade-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.upgrade-features li {
    font-size: 13px;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 6px;
}

.upgrade-features li i {
    color: #007bff;
    font-size: 12px;
}

.upgrade-action {
    flex-shrink: 0;
    text-align: center;
}

.upgrade-price {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.upgrade-btn {
    background: linear-gradient(135deg, #007bff, #6610f2) !important;
    border: none !important;
    white-space: nowrap;
}

.upgrade-btn:hover {
    background: linear-gradient(135deg, #0056b3, #520dc2) !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .upgrade-plan-content {
        flex-direction: column;
    }

    .upgrade-action {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .upgrade-price {
        margin-bottom: 0;
    }

    .upgrade-btn {
        flex-grow: 1;
    }
}