.mobile-menu>ul>li:nth-child(2) {
    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(2)>a {
    color: var(--white-s);
}






/* گرید مزایا */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    background: var(--bg-banafsh);
    padding: 30px 25px;
    border-radius: 20px;
    border-right: 4px solid var(--accent);
    transition: var(--transition);
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.benefit-item h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: var(--white-s);
}

/* گرید فرصت‌های شغلی */
.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.opportunity-card {
    background: var(--bg-khak);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.opportunity-card:hover {
    transform: translateY(0px);
}

.opportunity-card.featured {
    border: 3px solid var(--accent);
    transform: scale(1.05);
}

.opportunity-card.featured::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
}

.opportunity-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--accent);
}

.opportunity-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 700;
}

.opportunity-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: right;
}

.opportunity-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.opportunity-features li:last-child {
    border-bottom: none;
}

/* آمار و ارقام */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    text-align: center;
}

.stat-item {
    background: var(--bg-banafsh);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.2rem;
    color: var(--white-s);
    font-weight: 600;
}

/* فرآیند کاری */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    background: var(--bg-khak);
    padding: 30px 25px;
    border-radius: 20px;
    border-right: 4px solid var(--accent);
    transition: var(--transition);
    text-align: center;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step h3 {
    color: var(--success-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

#jobApplicationForm {
    padding: 50px 0;
}

/* استایل‌های پایه */
.form-section {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--black-hover);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

form .section-title {
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--black);
    font-size: 1.5rem;
}

form .section-title i {
    margin-left: 10px;
    color: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--black-hover);
    font-size: 0.95rem;
}

.form-label i {
    margin-left: 8px;
    color: var(--accent);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--black-hover);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-khak);
    color: var(--black-hover);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(77, 105, 255, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.textarea-counter {
    text-align: left;
    font-size: 0.85rem;
    color: var(--black-hover);
    margin-top: 8px;
}

/* موقعیت‌های شغلی */
.position-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.position-category {
    background: var(--bg-khak);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--black-hover);
}

.category-title {
    color: var(--black);
    margin-bottom: 12px;
    font-size: 1rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--black-hover);
}

/* مهارت‌ها */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.skills-category {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--black);
    color: var(--black);
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

/* چک‌باکس‌ها و رادیوها */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-khak2);
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid var(--black-hover);
    padding-right: 10px;
}

.checkbox-group:hover {
    background: var(--white);
    border-color: var(--accent);
}

.checkbox-group input[type="checkbox"],
.checkbox-group input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

.checkbox-group label {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--black-hover);
    flex: 1;
    user-select: none;
    padding: 8px 0;
}

/* روش‌های تماس */
.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

/* دکمه ارسال */
.submit-button {
    padding: 16px;
    background: var(--accent);
    color: var(--white-s);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0;
    margin-top: 20px;
}

.submit-button:hover {
    box-shadow: 0 10px 25px rgba(77, 105, 255, 0.2);
}

/* موافقت‌نامه */
.form-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-khak);
    border-radius: 8px;
}

.form-agreement input[type="checkbox"] {
    margin-top: 3px;
}

.form-agreement label {
    font-size: 0.9rem;
    color: var(--black);
    line-height: 1.5;
}

.form-agreement a {
    color: var(--accent);
    text-decoration: none;
}

.form-agreement a:hover {
    text-decoration: underline;
}

.form-note {
    display: block;
    margin-top: 15px;
    text-align: center;
    color: var(--black-hover);
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-note i {
    margin-left: 5px;
}

/* پیام‌ها */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background: #d1ffd4;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #ffd1d1;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* اسکرول‌بار سفارشی */
.form-textarea::-webkit-scrollbar {
    width: 8px;
}

.form-textarea::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.form-textarea::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.form-textarea::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* رسپانسیو */
@media (max-width: 1024px) {

    .position-grid,
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .form-section {
        padding: 20px;
    }

    .position-grid,
    .skills-grid {
        grid-template-columns: 1fr;
    }

    .skills-list {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 15px;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .submit-button {
        padding: 14px;
        font-size: 1rem;
    }
}

/* بخش CTA پایانی */
.final-cta {
    background: var(--bg-banafsh);
    color: var(--white-s);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.final-cta .section-title {
    border-color: var(--white-s);
}

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

.guarantee-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* رسپانسیو */
@media (max-width: 768px) {
    .opportunity-grid {
        grid-template-columns: 1fr;
    }

    .opportunity-card.featured {
        transform: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .application-form {
        padding: 25px 20px;
    }

}

@media (max-width: 480px) {
    .team-stats {
        grid-template-columns: 1fr;
    }
}