/* Submit Button Loader Styles */
.submitBtn .loader-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    animation: loader-spin 0.6s linear infinite;
    margin: 0 auto;
}

.submitBtn.loading .loader-spinner {
    display: inline-block;
}

.submitBtn .btn-label {
    display: inline-block;
}

.submitBtn.loading .btn-label {
    display: none;
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Language Modal Styles */
.hide {
    display: none !important;
}

[data-language-overlay="true"] {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(15, 23, 42, 0.45) !important;
    z-index: 9998 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

[data-language-overlay="true"].is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block !important;
}

[data-language-modal="true"] {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.96) !important;
    width: min(480px, calc(100% - 32px)) !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18) !important;
    z-index: 9999 !important;
    padding: 24px !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none !important;
    max-height: 85vh !important;
    overflow: hidden !important;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

[data-language-modal="true"].is-visible {
    transform: translate(-50%, -50%) scale(1) !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block !important;
}

[data-language-modal="true"] .style_languageAndCurrencySideModalH__wM9hs {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin-bottom: 16px !important;
}

[data-language-modal="true"] [data-language-close="true"] {
    cursor: pointer !important;
}

[data-language-modal="true"] .style_languagePopContent__atte3 {
    max-height: calc(85vh - 120px) !important;
    overflow-y: auto !important;
}

[data-language-modal="true"] .styles_tabsContainer__C0ffa,
[data-language-modal="true"] .style_popListContent__uhgY4 {
    width: 100% !important;
}

[data-language-modal="true"] .style_popListContent__uhgY4::-webkit-scrollbar {
    width: 6px;
}

[data-language-modal="true"] .style_popListContent__uhgY4::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.7);
    border-radius: 999px;
}

.language-modal__option {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    color: inherit !important;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.language-modal__option:hover {
    background: rgba(148, 163, 184, 0.12);
}

.language-modal__option.style_active__6Hltk {
    background: rgba(126, 194, 90, 0.14);
    color: #0f172a !important;
}

body.language-modal-open {
    overflow: hidden;
}

/* SEO Section Styles */
.seo-section {
    background: #ffffff;
    padding: 60px 20px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.seo-container {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-article {
    margin-bottom: 50px;
}

.seo-header {
    margin-bottom: 30px;
}

.seo-h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-h2 {
    font-size: 2em;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.seo-h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.seo-intro {
    font-size: 1.2em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.seo-content-wrapper {
    margin-top: 30px;
}

.seo-paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.seo-image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.seo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.seo-features {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.seo-feature-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.seo-faq {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
}

.seo-faq-list {
    margin-top: 30px;
}

.seo-faq-item {
    background: #fafafa;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.seo-faq-item .seo-h3 {
    color: #28a745;
    margin-top: 0;
}

.seo-reviews {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
}

.seo-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.seo-review-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #ffc107;
}

.seo-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.seo-review-rating {
    color: #ffc107;
    font-size: 1.2em;
}

.seo-review-name {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
    display: block;
}

.seo-additional {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
}

.seo-social {
    margin: 50px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.seo-social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.seo-social-btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.seo-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.seo-social-facebook {
    background: #1877f2;
}

.seo-social-twitter {
    background: #1da1f2;
}

.seo-social-linkedin {
    background: #0077b5;
}

.seo-social-whatsapp {
    background: #25d366;
}

.seo-social-telegram {
    background: #0088cc;
}

.seo-links {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.seo-links-category {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

.seo-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-links-list li {
    margin-bottom: 12px;
}

.seo-link {
    color: #007bff;
    text-decoration: none;
    font-size: 1.05em;
    transition: color 0.3s ease;
}

.seo-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.seo-links-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #34495e;
    display: block;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .seo-h1 {
        font-size: 2em;
    }
    
    .seo-h2 {
        font-size: 1.6em;
    }
    
    .seo-h3 {
        font-size: 1.3em;
    }
    
    .seo-features-grid,
    .seo-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-social-buttons {
        flex-direction: column;
    }
    
        .seo-social-btn {
            width: 100%;
            text-align: center;
        }
    }

/* Fix third party login section scroll on mobile */
@media (max-width: 768px) {
    .page_btmBox__taoih {
        position: relative;
        -webkit-overflow-scrolling: touch;
        overflow: visible !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
    
    .auth_thirdPartyLogin__o_4uE {
        position: relative;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
        overflow: visible !important;
    }
    
    .auth_thirdList__tJevR {
        position: relative;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        overflow: visible !important;
    }
    
    .auth_thirdList__tJevR li {
        position: relative;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .auth_thirdList__tJevR li > div {
        position: relative !important;
        overflow: visible !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
    }
    
    .auth_thirdList__tJevR li > div > button {
        position: relative;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        touch-action: manipulation;
    }
}

