.mobile-menu>ul>li:nth-child(4) {
    border-radius: 50%;
    margin-top: -30px;
    box-shadow: 0 10px 2px black;
    z-index: 9999;
    background-color: var(--accent1);
    transition: all .2s ease-in-out;
}

.mobile-menu>ul>li:hover {
    border-radius: 0;
    margin-top: 0;
}

.mobile-menu>ul>li:nth-child(4)>a {
    color: var(--white-s);
}




.service-card ul {
    margin: 25px 0;
    padding-right: 25px;
}

.service-card li {
    margin-bottom: 15px;
    font-size: 1.15rem;
    line-height: 1.7;
    position: relative;
    padding-right: 30px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
}

.service-card strong {
    color: var(--black);
    font-weight: 700;
}

/* استایل برای FAQ با Schema */
.service-card [itemscope] {
    margin-top: 40px;
}

.service-card [itemtype="https://schema.org/Question"] {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 25px;
    border-right: 4px solid var(--accent);
    transition: var(--transition);
}

.service-card [itemtype="https://schema.org/Question"]:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(8px);
}

.service-card [itemtype="https://schema.org/Question"] h3 {
    color: var(--black);
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.service-card [itemtype="https://schema.org/Answer"] p {
    margin: 0;
    color: var(--black-hover);
}


/* .final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover fixed;
    opacity: 0.5;
    z-index: 0;
} */

.cta-content {
    position: relative;
    z-index: 1;
}

/* استایل برای هایلایت کلمات کلیدی */
.keyword-highlight {
    background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(37, 99, 235, 0.1) 50%, rgba(37, 99, 235, 0.1) 100%);
    background-size: 220% 100%;
    background-position: 100% 0;
    transition: all 0.5s ease;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.keyword-highlight:hover {
    background-position: 0 0;
}