/* ========================================
   SEO-critical styles extracted from meta-tag.php
   Moved to external file for better crawl efficiency
   ======================================== */

.error {
    font-size: 12px;
    color: red;
    font-weight: 100;
    margin: 0;
}

.captcha-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.captcha-box .captchacodebox {
    height: 45px;
    width: 45px;
    font-size: 25px;
    text-align: center;
    border: 1px solid rgb(204, 204, 204);
    margin-right: 5px;
}

.captcha-box .captcha {
    background-color: #4A6983;
    color: #FFF;
    padding: 12px !important;
    line-height: 21px;
    font-size: 15px;
}

button#submitbtn {
    padding: 7px;
    margin-top: 5px;
    font-size: 15px;
}

span.msg {
    font-size: 15px;
}

.captchacodebox {
    height: 45px !important;
    width: 45px !important;
}

span.captcha {
    right: auto !important;
}

.textbox2 {
    width: 100%;
    height: 38px;
    border: 1px solid #c5d3e3;
    background: #fff;
    padding: 0 15px 0 5px;
    font-size: 13px;
    line-height: 18px;
    font-family: open sans, sans-serif;
    color: #000;
    font-weight: 300;
    border-radius: 2px;
    position: relative;
}

.conversion-cta {
    padding: 18px 0;
    background: #fff;
}

.conversion-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
    border: 1px solid #e6deef;
    border-left: 4px solid #6C3BAA;
    background: #fffaf4;
}

.conversion-cta__eyebrow {
    margin: 0 0 4px;
    color: #6C3BAA;
    font-size: 13px;
    font-weight: 700;
}

.conversion-cta h2 {
    margin: 0 0 6px;
    color: #222;
    font-size: 22px;
    line-height: 1.25;
}

.conversion-cta p {
    margin: 0;
    color: #444;
}

.conversion-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    min-width: 360px;
}

.conversion-cta__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.conversion-cta__primary {
    background: #6C3BAA;
    color: #fff !important;
}

.conversion-cta__secondary {
    background: #ff971e;
    color: #fff !important;
}

.conversion-cta__whatsapp {
    background: #25D366;
    color: #fff !important;
}

.service-sales {
    padding: 44px 0;
    background: #f8f9fb;
}

.service-sales__header {
    max-width: 760px;
    margin: 0 auto 28px;
}

.service-sales__eyebrow {
    margin: 0 0 6px;
    color: #6C3BAA;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-sales__header h2 {
    margin: 0 0 10px;
    color: #222;
    font-size: 28px;
    line-height: 1.25;
}

.service-sales__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-sales__card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 3px 14px rgba(35, 35, 35, 0.05);
}

.service-sales__card h3 {
    margin: 0 0 12px;
    color: #2d2350;
    font-size: 18px;
    font-weight: 700;
}

.service-sales__card ul,
.service-sales__card ol {
    margin: 0;
    padding-left: 18px;
}

.service-sales__card li {
    margin-bottom: 8px;
    color: #333;
    line-height: 1.45;
}

.service-sales__highlight {
    border-color: #6C3BAA;
    background: #fffaf4;
}

.service-sales__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.service-sales__actions a {
    display: block;
    padding: 10px 12px;
    border-radius: 4px;
    background: #6C3BAA;
    color: #fff !important;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.service-sales__actions a + a {
    background: #ff971e;
}

.service-sales__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
}

.service-sales__proof span {
    padding: 8px 12px;
    border: 1px solid #e3d8ef;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 768px) {

    .celebrating_year img {
        height: auto;
    }

    .conversion-cta__inner {
        align-items: stretch;
        flex-direction: column;
    }

    .conversion-cta__actions {
        min-width: 0;
        justify-content: stretch;
    }

    .conversion-cta__actions a {
        flex: 1 1 100%;
    }

    .service-sales__grid {
        grid-template-columns: 1fr;
    }
}

/* Exit-Intent Popup Styles */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 24, 0.42);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    z-index: 10000;
    animation: fadeIn 0.18s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.exit-popup-content {
    background: #fff;
    border: 1px solid #ece8f2;
    border-radius: 8px;
    padding: 28px;
    max-width: 430px;
    width: 90%;
    box-shadow: 0 18px 48px rgba(24, 18, 34, 0.18);
    animation: slideUp 0.22s ease;
    position: relative;
}

@keyframes slideUp {
    from { 
        transform: translateY(14px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f7f5fa;
    border: 1px solid #eee8f5;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #6a6174;
    transition: background 0.2s, color 0.2s;
}

.exit-popup-close:hover {
    background: #eee7f6;
    color: #2b2038;
}

.popup-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #f3edf9;
    color: #6C3BAA;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.exit-popup-content h2 {
    margin: 0 34px 10px 0;
    color: #21162d;
    font-size: 24px;
    line-height: 1.22;
}

.exit-popup-content p {
    margin: 0 0 18px;
    color: #5a5264;
    line-height: 1.55;
}

.popup-subtext {
    margin-bottom: 18px !important;
    color: #6b6174 !important;
    font-size: 14px;
}

.popup-cta-primary {
    display: block;
    background: #6C3BAA;
    color: white !important;
    padding: 12px 18px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    margin: 0 0 10px;
    transition: background 0.3s;
}

.popup-cta-primary:hover {
    background: #56308a;
    text-decoration: none;
    color: white;
}

.popup-cta-secondary {
    display: block;
    background: #fff;
    border: 1px solid #ded6e8;
    color: #2b2038 !important;
    padding: 11px 18px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.popup-cta-secondary:hover {
    background: #f7f3fb;
    text-decoration: none;
    color: #2b2038;
}

.popup-footer {
    margin: 14px 0 0 !important;
    color: #7b7382 !important;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 600px) {
    .exit-popup-content {
        padding: 24px 18px;
    }
    
    .exit-popup-content h2 {
        font-size: 21px;
    }
}
