/**
 * Wepido Wix-Style Minimal Header & Start-Free Modal
 * Designed with modern UI/UX principles, glassmorphism, and responsive RTL support.
 */

:root {
    --wix-blue: #116dff;
    --wix-blue-hover: #0854c7;
    --wix-blue-active: #0043a6;
    --wix-blue-light: #eff6ff;
    --wix-blue-glow: rgba(17, 109, 255, 0.28);
    --wix-emerald: #059669;
    --wix-emerald-light: #ecfdf5;
    --wix-emerald-glow: rgba(5, 150, 105, 0.25);
    --wix-border: rgba(226, 232, 240, 0.85);
    --wix-radius-pill: 9999px;
    --wix-radius-card: 20px;
    --wix-radius-modal: 24px;
    --wix-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   1. WIX-INSPIRED MINIMAL HEADER
   ========================================================================== */

.header-section.wix-header {
    position: sticky !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10100 !important;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--wix-border);
    transition: var(--wix-transition);
}

[data-bs-theme="dark"] .header-section.wix-header {
    background: rgba(15, 23, 42, 0.94);
    border-bottom: 1px solid rgba(51, 65, 85, 0.6);
}

.wix-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding-inline: 1rem;
}

@media (max-width: 991.98px) {
    .wix-header-inner {
        height: 58px;
        padding-inline: 0.75rem;
    }
}

/* Brand Logo */
.wix-header-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.wix-header-brand .logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

@media (max-width: 767.98px) {
    .wix-header-brand .logo {
        height: 32px;
    }
}

.wix-header-brand:hover .logo {
    transform: scale(1.02);
}

/* Desktop Nav Container */
.wix-desktop-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-inline: 1.5rem;
}

#menu-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu-container > li > a {
    font-size: 0.925rem;
    font-weight: 500;
    color: #334155;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: var(--wix-transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

[data-bs-theme="dark"] #menu-container > li > a {
    color: #cbd5e1;
}

#menu-container > li > a:hover {
    color: var(--wix-blue);
    background: rgba(17, 109, 255, 0.06);
}

[data-bs-theme="dark"] #menu-container > li > a:hover {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.12);
}

/* Header Actions / CTA Area */
.wix-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Minimal Sign-in link */
.wix-btn-signin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--wix-radius-pill);
    text-decoration: none;
    transition: var(--wix-transition);
}

[data-bs-theme="dark"] .wix-btn-signin {
    color: #94a3b8;
}

.wix-btn-signin:hover {
    color: var(--wix-blue);
    background: rgba(17, 109, 255, 0.08);
    border-color: rgba(17, 109, 255, 0.2);
}

[data-bs-theme="dark"] .wix-btn-signin:hover {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Centerpiece CTA: "Start for free" / "شروع رایگان" */
.btn-start-free {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 9px 22px;
    font-size: 0.925rem;
    font-weight: 700;
    color: #ffffff !important;
    background: var(--wix-blue);
    border: 1px solid transparent;
    border-radius: var(--wix-radius-pill);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 3px 12px var(--wix-blue-glow);
    transition: var(--wix-transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-start-free::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.btn-start-free:hover {
    background: var(--wix-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--wix-blue-glow);
    color: #ffffff !important;
}

.btn-start-free:hover::after {
    opacity: 1;
}

.btn-start-free:active {
    transform: translateY(0);
    background: var(--wix-blue-active);
    box-shadow: 0 2px 6px var(--wix-blue-glow);
}

/* Compact version for Mobile header */
.btn-start-free.btn-start-free-sm {
    padding: 6px 14px;
    font-size: 0.825rem;
    font-weight: 700;
    border-radius: var(--wix-radius-pill);
}

/* Minimalist Hamburger button for mobile (matching Wix) */
.wix-hamburger-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 10px;
    color: #1e293b;
    cursor: pointer;
    transition: var(--wix-transition);
    font-size: 1.15rem;
    padding: 0;
}

[data-bs-theme="dark"] .wix-hamburger-btn {
    border-color: rgba(51, 65, 85, 0.8);
    color: #f1f5f9;
}

.wix-hamburger-btn:hover,
.wix-hamburger-btn.is-open {
    background: rgba(17, 109, 255, 0.08);
    border-color: rgba(17, 109, 255, 0.3);
    color: var(--wix-blue);
}

/* Profile Dropdown Layering & Mobile Positioning */
.wix-header-actions .dropdown {
    position: relative;
    z-index: 10150;
}

.profile-dropdown,
.wix-header .dropdown-menu {
    z-index: 10200 !important;
    min-width: 250px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.2), 0 8px 16px -4px rgba(15, 23, 42, 0.1) !important;
    background: #ffffff;
    margin-top: 4px !important;
}

[data-bs-theme="dark"] .profile-dropdown,
[data-bs-theme="dark"] .wix-header .dropdown-menu {
    background: #1e293b;
    border-color: rgba(51, 65, 85, 0.9);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6) !important;
}

@media (max-width: 991.98px) {
    .profile-dropdown,
    .wix-header .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        margin-top: 2px !important;
        left: 0 !important;
        right: auto !important;
        min-width: 250px !important;
        max-width: calc(100vw - 20px) !important;
        transform: none !important;
    }
}

/* ==========================================================================
   2. "شروع رایگان" INTERACTIVE SELECTION MODAL
   ========================================================================== */

.start-free-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.start-free-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.start-free-modal-card {
    background: #ffffff;
    border-radius: var(--wix-radius-modal);
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(226, 232, 240, 0.8);
    width: 100%;
    max-width: 820px;
    max-height: 92vh;
    overflow-y: auto;
    transform: scale(0.94) translateY(12px);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    direction: rtl;
    text-align: right;
    position: relative;
}

[data-bs-theme="dark"] .start-free-modal-card {
    background: #0f172a;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(51, 65, 85, 0.6);
}

.start-free-modal-overlay.is-active .start-free-modal-card {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.start-free-modal-header {
    padding: 1.75rem 2rem 1.25rem;
    border-bottom: 1px solid rgba(241, 245, 249, 0.9);
    position: relative;
}

[data-bs-theme="dark"] .start-free-modal-header {
    border-bottom: 1px solid rgba(30, 41, 59, 0.9);
}

.start-free-modal-close {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--wix-transition);
}

[data-bs-theme="dark"] .start-free-modal-close {
    background: #1e293b;
    color: #94a3b8;
}

.start-free-modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.start-free-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.4rem 0;
    line-height: 1.4;
}

[data-bs-theme="dark"] .start-free-modal-title {
    color: #f8fafc;
}

.start-free-modal-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

[data-bs-theme="dark"] .start-free-modal-subtitle {
    color: #94a3b8;
}

/* Modal Body / Choice Cards */
.start-free-modal-body {
    padding: 1.75rem 2rem;
}

@media (max-width: 639.98px) {
    .start-free-modal-header,
    .start-free-modal-body {
        padding: 1.25rem 1rem;
    }
    .start-free-modal-title {
        font-size: 1.25rem;
    }
}

.start-free-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 767.98px) {
    .start-free-options-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Option Card Item */
.start-free-option-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: var(--wix-radius-card);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--wix-transition);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

[data-bs-theme="dark"] .start-free-option-card {
    background: #1e293b;
    border-color: #334155;
}

.start-free-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.12);
}

/* Corporate Plan Card Style */
.start-free-option-card.card-company:hover {
    border-color: var(--wix-blue);
    box-shadow: 0 16px 32px -8px var(--wix-blue-glow);
}

/* Shop Plan Card Style */
.start-free-option-card.card-shop:hover {
    border-color: var(--wix-emerald);
    box-shadow: 0 16px 32px -8px var(--wix-emerald-glow);
}

.start-free-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.start-free-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--wix-transition);
}

.card-company .start-free-card-icon {
    background: var(--wix-blue-light);
    color: var(--wix-blue);
}

[data-bs-theme="dark"] .card-company .start-free-card-icon {
    background: rgba(17, 109, 255, 0.15);
    color: #60a5fa;
}

.card-shop .start-free-card-icon {
    background: var(--wix-emerald-light);
    color: var(--wix-emerald);
}

[data-bs-theme="dark"] .card-shop .start-free-card-icon {
    background: rgba(5, 150, 105, 0.15);
    color: #34d399;
}

.start-free-option-card:hover .start-free-card-icon {
    transform: scale(1.1);
}

.start-free-card-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 9999px;
    margin-bottom: 0.25rem;
}

.card-company .start-free-card-badge {
    background: #dbeafe;
    color: #1d4ed8;
}

[data-bs-theme="dark"] .card-company .start-free-card-badge {
    background: rgba(30, 64, 175, 0.4);
    color: #93c5fd;
}

.card-shop .start-free-card-badge {
    background: #d1fae5;
    color: #065f46;
}

[data-bs-theme="dark"] .card-shop .start-free-card-badge {
    background: rgba(6, 95, 70, 0.4);
    color: #6ee7b7;
}

.start-free-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

[data-bs-theme="dark"] .start-free-card-title {
    color: #f8fafc;
}

/* User-requested exact descriptions */
.start-free-card-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    min-height: 52px;
}

[data-bs-theme="dark"] .start-free-card-desc {
    color: #cbd5e1;
}

/* Feature Checkpoints list */
.start-free-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.start-free-features-list li {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-bs-theme="dark"] .start-free-features-list li {
    color: #94a3b8;
}

.card-company .start-free-features-list i {
    color: var(--wix-blue);
    font-size: 0.85rem;
}

.card-shop .start-free-features-list i {
    color: var(--wix-emerald);
    font-size: 0.85rem;
}

/* Card Action Button */
.start-free-card-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--wix-transition);
}

.card-company .start-free-card-btn {
    background: var(--wix-blue-light);
    color: var(--wix-blue);
}

[data-bs-theme="dark"] .card-company .start-free-card-btn {
    background: rgba(17, 109, 255, 0.15);
    color: #93c5fd;
}

.start-free-option-card.card-company:hover .start-free-card-btn {
    background: var(--wix-blue);
    color: #ffffff;
}

.card-shop .start-free-card-btn {
    background: var(--wix-emerald-light);
    color: var(--wix-emerald);
}

[data-bs-theme="dark"] .card-shop .start-free-card-btn {
    background: rgba(5, 150, 105, 0.15);
    color: #6ee7b7;
}

.start-free-option-card.card-shop:hover .start-free-card-btn {
    background: var(--wix-emerald);
    color: #ffffff;
}

/* Modal Footer Micro-copy */
.start-free-modal-footer {
    padding: 1rem 2rem 1.5rem;
    background: #f8fafc;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom-left-radius: var(--wix-radius-modal);
    border-bottom-right-radius: var(--wix-radius-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

[data-bs-theme="dark"] .start-free-modal-footer {
    background: #0b1120;
    border-top: 1px solid rgba(30, 41, 59, 0.9);
}

.start-free-footer-item {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

[data-bs-theme="dark"] .start-free-footer-item {
    color: #94a3b8;
}

.start-free-footer-item i {
    color: #10b981;
}

/* ==========================================================================
   3. MOBILE ULTRA-COMPACT VIEW (Above-the-Fold without scrolling)
   ========================================================================== */
@media (max-width: 639.98px) {
    .start-free-modal-card {
        max-width: 95%;
        border-radius: 20px;
        margin: auto;
    }

    .start-free-modal-header {
        padding: 1rem 1rem 0.5rem;
    }

    .start-free-modal-close {
        top: 0.75rem;
        left: 0.75rem;
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .start-free-modal-title {
        font-size: 1.125rem;
        line-height: 1.35;
        margin-bottom: 0.2rem;
    }

    .start-free-modal-subtitle {
        font-size: 0.785rem;
        line-height: 1.45;
    }

    .start-free-modal-body {
        padding: 0.65rem 0.85rem;
    }

    .start-free-options-grid {
        gap: 0.6rem;
    }

    .start-free-option-card {
        padding: 0.75rem 0.85rem;
        border-radius: 14px;
    }

    .start-free-card-header {
        gap: 0.65rem;
        margin-bottom: 0.35rem;
    }

    .start-free-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .start-free-card-badge {
        font-size: 0.7rem;
        padding: 2px 7px;
        margin-bottom: 0.15rem;
    }

    .start-free-card-title {
        font-size: 1rem;
    }

    .start-free-card-desc {
        font-size: 0.785rem;
        line-height: 1.5;
        margin-bottom: 0.55rem;
        min-height: auto;
    }

    /* پنهان‌سازی بولت‌های طولانی در موبایل جهت دیده‌شدن ۱۰۰٪ بدون اسکرول */
    .start-free-features-list {
        display: none !important;
    }

    .start-free-card-btn {
        padding: 8px 12px;
        font-size: 0.825rem;
        border-radius: 9px;
    }

    .start-free-modal-footer {
        padding: 0.5rem 0.85rem 0.75rem;
        gap: 0.65rem;
    }

    .start-free-footer-item {
        font-size: 0.7rem;
    }
}

/* Body lock when modal open */
body.start-free-modal-open {
    overflow: hidden !important;
}

/* ==========================================================================
   3. WIX-STYLE ULTRA-MINIMAL MOBILE MENU REFINEMENTS
   ========================================================================== */

#mobile-menu-container {
    position: fixed !important;
    top: 58px !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100% !important;
    height: calc(100dvh - 58px) !important;
    background: #ffffff !important;
    z-index: 10100 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

[data-bs-theme="dark"] #mobile-menu-container,
.dark #mobile-menu-container {
    background: #0f172a !important;
}

/* متن و لینک‌های اصلی منو */
#mobile-menu-container .mobile-menu-item,
#mobile-menu-container nav a {
    color: #0f172a !important;
    font-size: 0.95rem;
    transition: var(--wix-transition);
    text-decoration: none !important;
}

[data-bs-theme="dark"] #mobile-menu-container .mobile-menu-item,
[data-bs-theme="dark"] #mobile-menu-container nav a,
.dark #mobile-menu-container .mobile-menu-item,
.dark #mobile-menu-container nav a {
    color: #f8fafc !important;
}

#mobile-menu-container .mobile-menu-item:hover,
#mobile-menu-container nav a:hover {
    color: var(--wix-blue) !important;
}

[data-bs-theme="dark"] #mobile-menu-container .mobile-menu-item:hover,
[data-bs-theme="dark"] #mobile-menu-container nav a:hover,
.dark #mobile-menu-container .mobile-menu-item:hover,
.dark #mobile-menu-container nav a:hover {
    color: #38bdf8 !important;
}

/* خطوط تفکیک در لایت و دارک */
#mobile-menu-container .border-b,
#mobile-menu-container .border-t {
    border-color: #f1f5f9 !important;
}

[data-bs-theme="dark"] #mobile-menu-container .border-b,
[data-bs-theme="dark"] #mobile-menu-container .border-t,
.dark #mobile-menu-container .border-b,
.dark #mobile-menu-container .border-t {
    border-color: #1e293b !important;
}

/* زیرمنوها در لایت و دارک */
#mobile-menu-container .mobile-submenu {
    background: #f8fafc !important;
    border-radius: 12px;
    animation: wixMenuFadeIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-bs-theme="dark"] #mobile-menu-container .mobile-submenu,
.dark #mobile-menu-container .mobile-submenu {
    background: #1e293b !important;
}

#mobile-menu-container .mobile-submenu a {
    color: #475569 !important;
    font-size: 0.88rem;
}

[data-bs-theme="dark"] #mobile-menu-container .mobile-submenu a,
.dark #mobile-menu-container .mobile-submenu a {
    color: #cbd5e1 !important;
}

#mobile-menu-container .mobile-menu-item.is-open svg {
    transform: rotate(180deg);
    color: var(--wix-blue) !important;
}

[data-bs-theme="dark"] #mobile-menu-container .mobile-menu-item.is-open svg,
.dark #mobile-menu-container .mobile-menu-item.is-open svg {
    color: #38bdf8 !important;
}

/* آیکون‌های SVG فلش */
#mobile-menu-container svg {
    color: #94a3b8 !important;
    flex-shrink: 0;
}

[data-bs-theme="dark"] #mobile-menu-container svg,
.dark #mobile-menu-container svg {
    color: #64748b !important;
}

/* دکمه‌های ورود و عضویت موبایل */
.mob-btn-signin {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #334155 !important;
    text-decoration: none !important;
}

.mob-btn-signin:hover {
    background: #eff6ff !important;
    color: var(--wix-blue) !important;
    border-color: #bfdbfe !important;
}

[data-bs-theme="dark"] .mob-btn-signin,
.dark .mob-btn-signin {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #e2e8f0 !important;
}

[data-bs-theme="dark"] .mob-btn-signin:hover,
.dark .mob-btn-signin:hover {
    background: #334155 !important;
    color: #ffffff !important;
}

.mob-btn-signup {
    background: #0f172a !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border: none !important;
}

.mob-btn-signup:hover {
    background: #1e293b !important;
}

[data-bs-theme="dark"] .mob-btn-signup,
.dark .mob-btn-signup {
    background: #2563eb !important;
    color: #ffffff !important;
}

[data-bs-theme="dark"] .mob-btn-signup:hover,
.dark .mob-btn-signup:hover {
    background: #1d4ed8 !important;
}

/* متن و لینک‌های اطلاعات تماس */
.mob-contact-text,
.mob-contact-text a,
.mob-contact-text span {
    color: #64748b !important;
    text-decoration: none !important;
}

[data-bs-theme="dark"] .mob-contact-text,
[data-bs-theme="dark"] .mob-contact-text a,
[data-bs-theme="dark"] .mob-contact-text span,
.dark .mob-contact-text,
.dark .mob-contact-text a,
.dark .mob-contact-text span {
    color: #94a3b8 !important;
}

.mob-contact-text a:hover {
    color: var(--wix-blue) !important;
}

/* آیکون‌های شبکه‌های اجتماعی */
.mob-social-link {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #64748b !important;
    text-decoration: none !important;
}

[data-bs-theme="dark"] .mob-social-link,
.dark .mob-social-link {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #94a3b8 !important;
}

@keyframes wixMenuFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}


