/* ==========================================
   SEO AUDIT POPUP STYLES (३ सेकेन्डमा देखिने)
========================================== */

/* Popup Overlay */
#seo-audit-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Popup Box */
.audit-popup-box {
    background : #1a1a2e;
    border: 1px solid rgba(83, 74, 183, 0.5);
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    padding: 36px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Close Button */
#close-audit-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: #534AB7;
    font-size: 20px;
    cursor: pointer;
}

/* Accent Line */
.audit-accent-line {
    height: 3px;
    background: linear-gradient(90deg, #534AB7, #1D9E75, #378ADD);
    border-radius: 2px;
    margin-bottom: 24px;
}

/* Header */
.audit-header {
    text-align: center;
    margin-bottom: 20px;
}

.audit-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.audit-header h2 {
    color: #ffffff;   /* सेतो */
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.audit-header p {
    color: #cccccc;   /* हल्का खैरो */
    font-size: 14px;
    line-height: 1.5;
}

/* Input Fields */
.audit-input {
    width: 100%;
    padding: 11px 14px;
    margin-bottom: 12px;
    background: #13132b;
    border: 1px solid rgba(83, 74, 183, 0.3);
    border-radius: 8px;
    color: #e6e2f8;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.audit-phone {
    margin-bottom: 20px;
}

/* Submit Button */
.audit-submit-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #534AB7, #1D9E75);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.audit-submit-btn:hover {
    opacity: 0.9;
}

/* Message Box */
#audit-msg {
    display: none;
    margin-top: 14px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

.audit-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    font-size: 12px;
    color: #e6e2f8;   /* हल्का सेतो/बैजनी */
}

/* Floating Button (Right side) */
#audit-float-btn {
    position: fixed;
    right: -52px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: linear-gradient(135deg, #534AB7, #1D9E75);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    z-index: 999;
    transition: right 0.3s ease-in-out;
    white-space: nowrap;
}
#audit-float-btn:hover {
    right: -40px;
}