/* Modern Business Numerology Calculator Styles */

/* Main Wrapper */
.bns-wrapper {
    max-width: 520px;
    margin: 60px auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Decorative Top Gradient Line */
.bns-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
}

/* Title */
.bns-title {
    text-align: center;
    color: #111;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Form Groups */
.bns-form-group {
    margin-bottom: 24px;
}

.bns-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.bns-form-group input[type="text"],
.bns-form-group input[type="tel"],
.bns-form-group input[type="date"],
.bns-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: #f8fafc;
    color: #1e293b;
    box-sizing: border-box;
    /* Fix padding issues */
}

.bns-form-group input:focus,
.bns-form-group select:focus {
    border-color: #2575fc;
    box-shadow: 0 0 0 4px rgba(37, 117, 252, 0.1);
    outline: none;
    background: #fff;
}

/* Checkbox */
.bns-checkbox label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
}

.bns-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2575fc;
}

/* Button Group */
.bns-button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Buttons */
#bns-submit-btn,
#bns-reset-btn {
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

#bns-submit-btn {
    flex: 2;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 20px -5px rgba(37, 117, 252, 0.4);
}

#bns-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(37, 117, 252, 0.5);
}

#bns-submit-btn:active {
    transform: translateY(0);
}

#bns-reset-btn {
    flex: 1;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid transparent;
}

#bns-reset-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* Required Asterisk */
.required {
    color: #ef4444;
}

/* Messages */
.bns-error {
    color: #dc2626;
    background: #fef2f2;
    padding: 14px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #fee2e2;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Results Card */
.bns-result-card {
    text-align: center;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
}

.bns-result-card h3 {
    color: #1e293b;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
}

.bns-result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.bns-result-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.bns-result-item:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
}

.bns-result-item span {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.bns-result-item strong {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bns-compatibility {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bns-compatibility span:first-child {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.bns-badge {
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.bns-badge-favorable {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    box-shadow: 0 4px 12px rgba(22, 101, 52, 0.1);
}

.bns-badge-balanced {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    color: #9a3412;
    box-shadow: 0 4px 12px rgba(154, 52, 18, 0.1);
}

.bns-badge-needs-adjustment {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    box-shadow: 0 4px 12px rgba(153, 27, 27, 0.1);
}

/* CTA */
.bns-soft-cta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px dashed #e2e8f0;
}

.bns-soft-cta p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 20px;
}

.bns-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 30px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.bns-whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.bns-check-again-btn {
    display: block;
    margin: 15px auto 0;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s;
}

.bns-check-again-btn:hover {
    color: #2575fc;
}